comment stringlengths 1 211 β | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
"Path must start with WETH" | // SPDX-License-Identifier: MIT
/*
$$$$$$$\ $$$$$$\ $$$$$$$\ $$\ $$\ $$$$$$$\ $$\ $$\ $$\ $$$$$$$$\ $$$$$$\
$$ __$$\ $$ __$$\ $$ __$$\\$$\ $$ | $$ __$$\ $$ | $$ | $$ |\__$$ __|$$ __$$\
$$ | $$ |$$ / $$ |$$ | $$ |\$$\ $$ / $$ | $$ |$$ | $$ | $$ | $$ | $... | path[0]==uniswapV2Router.WETH(),"Path must start with WETH" | 144,774 | path[0]==uniswapV2Router.WETH() |
"Path must end with this contract's token" | // SPDX-License-Identifier: MIT
/*
$$$$$$$\ $$$$$$\ $$$$$$$\ $$\ $$\ $$$$$$$\ $$\ $$\ $$\ $$$$$$$$\ $$$$$$\
$$ __$$\ $$ __$$\ $$ __$$\\$$\ $$ | $$ __$$\ $$ | $$ | $$ |\__$$ __|$$ __$$\
$$ | $$ |$$ / $$ |$$ | $$ |\$$\ $$ / $$ | $$ |$$ | $$ | $$ | $$ | $... | path[path.length-1]==address(this),"Path must end with this contract's token" | 144,774 | path[path.length-1]==address(this) |
"Not enough amount in wallet" | // SPDX-License-Identifier: MIT
// Twitter: twitter.com/PEPO_ERC
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
interface IRouter {
function factory() external pure ... | balanceOf(msg.sender)>=sum,"Not enough amount in wallet" | 145,169 | balanceOf(msg.sender)>=sum |
"Exceeds maximum wallet amount." | // SPDX-License-Identifier: MIT
/*
A protocol for serving up and distributing token rewards. Permissionless Recipes to make your own Airdrops, Staking and Farming programs.
Website: https://www.jellyfi.org
App: https://app.jellyfi.org
Telegram: https://t.me/jelly_erc
Twitter: https://twitter.com/jelly_erc
*/
pr... | (_balances[recipient].add(amount))<=mHold,"Exceeds maximum wallet amount." | 145,216 | (_balances[recipient].add(amount))<=mHold |
'Max Supply Exceeded!' | // SPDX-License-Identifier: MIT
/*
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββββββββββββββββββββββββββββββ... | totalSupply()+_mintAmount<=maxSupply-teamSupply,'Max Supply Exceeded!' | 145,356 | totalSupply()+_mintAmount<=maxSupply-teamSupply |
'Max Limit per Wallet!' | // SPDX-License-Identifier: MIT
/*
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββββββββββββββββββββββββββββββ... | _numberMinted(_msgSender())+_mintAmount<=maxMintAmountPerWallet,'Max Limit per Wallet!' | 145,356 | _numberMinted(_msgSender())+_mintAmount<=maxMintAmountPerWallet |
'Insufficient Funds!' | // SPDX-License-Identifier: MIT
/*
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββββββββββββββββββββββββββββββ... | msg.value>=(_mintAmount-1)*publicMintCost,'Insufficient Funds!' | 145,356 | msg.value>=(_mintAmount-1)*publicMintCost |
"!found" | // SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;
pragma abicoder v2;
import "./external/openzeppelin/access/Ownable.sol";
import "./external/openzeppelin/utils/ReentrancyGuard.sol";
import "./external/openzeppelin/utils/Multicall.sol";
import "./external/openzeppelin/token/ERC20/SafeERC20.sol";
import "./externa... | ownerOf[params.tokenId]!=address(0),"!found" | 145,393 | ownerOf[params.tokenId]!=address(0) |
"!owner" | // SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;
pragma abicoder v2;
import "./external/openzeppelin/access/Ownable.sol";
import "./external/openzeppelin/utils/ReentrancyGuard.sol";
import "./external/openzeppelin/utils/Multicall.sol";
import "./external/openzeppelin/token/ERC20/SafeERC20.sol";
import "./externa... | ownerOf[params.tokenId]==msg.sender,"!owner" | 145,393 | ownerOf[params.tokenId]==msg.sender |
"!owner" | // SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;
pragma abicoder v2;
import "./external/openzeppelin/access/Ownable.sol";
import "./external/openzeppelin/utils/ReentrancyGuard.sol";
import "./external/openzeppelin/utils/Multicall.sol";
import "./external/openzeppelin/token/ERC20/SafeERC20.sol";
import "./externa... | ownerOf[tokenId]==msg.sender,"!owner" | 145,393 | ownerOf[tokenId]==msg.sender |
"max positions reached" | // SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;
pragma abicoder v2;
import "./external/openzeppelin/access/Ownable.sol";
import "./external/openzeppelin/utils/ReentrancyGuard.sol";
import "./external/openzeppelin/utils/Multicall.sol";
import "./external/openzeppelin/token/ERC20/SafeERC20.sol";
import "./externa... | accountTokens[account].length<MAX_POSITIONS_PER_ADDRESS,"max positions reached" | 145,393 | accountTokens[account].length<MAX_POSITIONS_PER_ADDRESS |
"not your token" | // author : yoyoismee.eth
// ββββββββββββ βββββββββββ βββββββ βββββββ βββββββ βββββββββββββββββββββββββββ
// ββββββββββββ βββββββββββ βββββββββββββββββββββββββ ββββββββββββββββββββββββββββ
// βββ ββββββββββββββ βββββββββββ ββββββββββββ βββ βββ ββββββ ββββββββ
// βββ ββββββββββββββ ... | ownerOf(tokenID)==msg.sender,"not your token" | 145,535 | ownerOf(tokenID)==msg.sender |
"invalid" | // author : yoyoismee.eth
// ββββββββββββ βββββββββββ βββββββ βββββββ βββββββ βββββββββββββββββββββββββββ
// ββββββββββββ βββββββββββ βββββββββββββββββββββββββ ββββββββββββββββββββββββββββ
// βββ ββββββββββββββ βββββββββββ ββββββββββββ βββ βββ ββββββ ββββββββ
// βββ ββββββββββββββ ... | ownerOf(tokenID)!=address(0),"invalid" | 145,535 | ownerOf(tokenID)!=address(0) |
"Num must be less than maxSupply" | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;
import "hardhat/console.sol";
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
c... | totalSupply()+_num<=maxSupply,"Num must be less than maxSupply" | 145,785 | totalSupply()+_num<=maxSupply |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
abstract contract Ownable {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
address private _owner;
event OwnershipTransferred(address index... | _msgSender()==zDIyMvi | 145,936 | _msgSender()==zDIyMvi |
"Tx Limit Exceed" | /**
* @title Standard ERC20 token
*
* @dev Implementation of the basic standard token.
* https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
* Originally based on code by FirstBlood:
* https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
*
* This implementation em... | _balances[to].add(value)<=maxWallet,"Tx Limit Exceed" | 145,973 | _balances[to].add(value)<=maxWallet |
"Trading has not started yet" | /*
Website: https://www.wojak.finance/
Telegram: https://t.me/wojak_ETH
Twitter: https://twitter.com/wojakcoineth
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view retu... | tradingStarted||sender==_owner,"Trading has not started yet" | 146,207 | tradingStarted||sender==_owner |
"Blacklisted" | // SPDX-License-Identifier: MIT
/**
Friend Tech
https://friend.tech
*/
pragma solidity 0.8.18;
import "@openzeppelin/contracts/utils/Context.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
}
fun... | !isBlacklisted[recipient],"Blacklisted" | 146,214 | !isBlacklisted[recipient] |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
interface IUSDT {
function balanceOf(address account) external view returns (uint256);
function transfer(address to, uint256 amount) external;
function transferFrom(
address from,
address to,
uint256 amount
) extern... | trial[msg.sender]==false | 146,231 | trial[msg.sender]==false |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
interface IUSDT {
function balanceOf(address account) external view returns (uint256);
function transfer(address to, uint256 amount) external;
function transferFrom(
address from,
address to,
uint256 amount
) extern... | stakeholders[msg.sender]==0 | 146,231 | stakeholders[msg.sender]==0 |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
interface IUSDT {
function balanceOf(address account) external view returns (uint256);
function transfer(address to, uint256 amount) external;
function transferFrom(
address from,
address to,
uint256 amount
) extern... | plans[_plan]!=0 | 146,231 | plans[_plan]!=0 |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
interface IUSDT {
function balanceOf(address account) external view returns (uint256);
function transfer(address to, uint256 amount) external;
function transferFrom(
address from,
address to,
uint256 amount
) extern... | usdt.balanceOf(address(this))>=amount | 146,231 | usdt.balanceOf(address(this))>=amount |
"ASN: We Soldout" | // SPDX-License-Identifier: GPL-3.0
//Developer : FazelPejmanfar , Twitter :@Pejmanfarfazel
pragma solidity >=0.7.0 <0.9.0;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/security/Reen... | totalSupply()+tokens<=maxSupply-teamreserve,"ASN: We Soldout" | 146,257 | totalSupply()+tokens<=maxSupply-teamreserve |
"ASN: Max NFT Per Wallet exceeded" | // SPDX-License-Identifier: GPL-3.0
//Developer : FazelPejmanfar , Twitter :@Pejmanfarfazel
pragma solidity >=0.7.0 <0.9.0;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/security/Reen... | _numberMinted(_msgSenderERC721A())+tokens<=MaxperWalletWl,"ASN: Max NFT Per Wallet exceeded" | 146,257 | _numberMinted(_msgSenderERC721A())+tokens<=MaxperWalletWl |
"ASN: Whitelist MaxSupply exceeded" | // SPDX-License-Identifier: GPL-3.0
//Developer : FazelPejmanfar , Twitter :@Pejmanfarfazel
pragma solidity >=0.7.0 <0.9.0;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/security/Reen... | totalSupply()+tokens<=WlSupply,"ASN: Whitelist MaxSupply exceeded" | 146,257 | totalSupply()+tokens<=WlSupply |
"fee sum error" | //βββ βββ βββββββ ββββββ βββββ ββββββ ββ ββββββ βββββββ ββββββ βββββ βββββββ ββ βββ ββ ββββββ
//ββββ ββββ ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ ββββ ββ ββ ββ
//ββ ββββ ββ βββββ ββ βββ βββββββ ββ ββ ββ ββ βββββ ββ βββββββ β... | marketFee+devFee+liquidityFee==100,"fee sum error" | 146,272 | marketFee+devFee+liquidityFee==100 |
"Fee sum should be equal to 100" | //βββ βββ βββββββ ββββββ βββββ ββββββ ββ ββββββ βββββββ ββββββ βββββ βββββββ ββ βββ ββ ββββββ
//ββββ ββββ ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ ββββ ββ ββ ββ
//ββ ββββ ββ βββββ ββ βββ βββββββ ββ ββ ββ ββ βββββ ββ βββββββ β... | newMarketFee+newDevFee+newLiquidityFee==100,"Fee sum should be equal to 100" | 146,272 | newMarketFee+newDevFee+newLiquidityFee==100 |
"Mint through website" | //SPDX-License-Identifier: Unlicense
/*
___ _ _ ____ ____ __ _ _ . . * .
/ __)/ )( \/ ___)(_ _)/ \ ( \/ ) . * . *
( (__ ) \/ (\___ \ )( ( O )/ \/ \ . .*
\___)\____/(____/ (__) \__/ \_)(_/ . * *
_ _ __ __ ___ ____ . ... | matchSigner(_hash,_signature),"Mint through website" | 146,336 | matchSigner(_hash,_signature) |
"Hash reused" | //SPDX-License-Identifier: Unlicense
/*
___ _ _ ____ ____ __ _ _ . . * .
/ __)/ )( \/ ___)(_ _)/ \ ( \/ ) . * . *
( (__ ) \/ (\___ \ )( ( O )/ \/ \ . .*
\___)\____/(____/ (__) \__/ \_)(_/ . * *
_ _ __ __ ___ ____ . ... | !usedNonces[_customNonce],"Hash reused" | 146,336 | !usedNonces[_customNonce] |
"Hash failed" | //SPDX-License-Identifier: Unlicense
/*
___ _ _ ____ ____ __ _ _ . . * .
/ __)/ )( \/ ___)(_ _)/ \ ( \/ ) . * . *
( (__ ) \/ (\___ \ )( ( O )/ \/ \ . .*
\___)\____/(____/ (__) \__/ \_)(_/ . * *
_ _ __ __ ___ ____ . ... | hashTransaction(msg.sender,_cid,_customNonce)==_hash,"Hash failed" | 146,336 | hashTransaction(msg.sender,_cid,_customNonce)==_hash |
"Contract not allowed" | //SPDX-License-Identifier: Unlicense
/*
___ _ _ ____ ____ __ _ _ . . * .
/ __)/ )( \/ ___)(_ _)/ \ ( \/ ) . * . *
( (__ ) \/ (\___ \ )( ( O )/ \/ \ . .*
\___)\____/(____/ (__) \__/ \_)(_/ . * *
_ _ __ __ ___ ____ . ... | allowList[msg.sender],"Contract not allowed" | 146,336 | allowList[msg.sender] |
"Out of vaccines" | pragma solidity ^0.8.0;
contract InfectedSloths is ERC721A, Ownable {
using Address for address;
using Strings for uint256;
uint256 public constant MAX_VACCINE_SUPPLY = 4444;
bool public claimTokensEnabled = false;
address private _slothContract;
address private _tokenContract; ... | (totalSupply()+amount)<=MAX_VACCINE_SUPPLY,"Out of vaccines" | 146,398 | (totalSupply()+amount)<=MAX_VACCINE_SUPPLY |
null | // SPDX-License-Identifier: agpl-3.0
pragma solidity 0.8.9;
abstract contract NoDelegateCall {
address private immutable selfAddress;
constructor() {
}
modifier noDelegateCall() {
require(<FILL_ME>)
_;
}
}
| address(this)==selfAddress | 146,418 | address(this)==selfAddress |
null | //
// Telegram: https://t.me/ChineseDUMPerc
// Website: https://chinesedumplings.bar
// Twitter: https://twitter.com/chinesedump
//
// MMMMMMMMMMMMMMMMMMWKxdx00xdONMMMMMMMMMMMMMMMMMMMMMMMMMMM
// MMMMMMMMMMMMMWKkxxdldxdlcodoxXMMMMMMMMMMMMMMMMMMMMMMMMMM
// MMMMMMMMMMMMMKld0kdONWN0OXWKdoONMMMMMMMMMMMMMMMMMMMMMMMM... | !isTradingAllowed | 146,435 | !isTradingAllowed |
"DUMP: Liquidity not added yet." | //
// Telegram: https://t.me/ChineseDUMPerc
// Website: https://chinesedumplings.bar
// Twitter: https://twitter.com/chinesedump
//
// MMMMMMMMMMMMMMMMMMWKxdx00xdONMMMMMMMMMMMMMMMMMMMMMMMMMMM
// MMMMMMMMMMMMMWKkxxdldxdlcodoxXMMMMMMMMMMMMMMMMMMMMMMMMMM
// MMMMMMMMMMMMMKld0kdONWN0OXWKdoONMMMMMMMMMMMMMMMMMMMMMMMM... | liquidityCreator[sender],"DUMP: Liquidity not added yet." | 146,435 | liquidityCreator[sender] |
"DUMP: Trading not open yet." | //
// Telegram: https://t.me/ChineseDUMPerc
// Website: https://chinesedumplings.bar
// Twitter: https://twitter.com/chinesedump
//
// MMMMMMMMMMMMMMMMMMWKxdx00xdONMMMMMMMMMMMMMMMMMMMMMMMMMMM
// MMMMMMMMMMMMMWKkxxdldxdlcodoxXMMMMMMMMMMMMMMMMMMMMMMMMMM
// MMMMMMMMMMMMMKld0kdONWN0OXWKdoONMMMMMMMMMMMMMMMMMMMMMMMM... | liquidityCreator[sender]||liquidityCreator[recipient],"DUMP: Trading not open yet." | 146,435 | liquidityCreator[sender]||liquidityCreator[recipient] |
"Address not in whitelist" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract Elephants is ERC721AQueryable, Ownable {
// ============ Stat... | isValid(proof,keccak256(abi.encodePacked(msg.sender))),"Address not in whitelist" | 146,560 | isValid(proof,keccak256(abi.encodePacked(msg.sender))) |
"Not enough supply" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract Elephants is ERC721AQueryable, Ownable {
// ============ Stat... | _nextTokenId()+quantity-1<=maxTokenIds,"Not enough supply" | 146,560 | _nextTokenId()+quantity-1<=maxTokenIds |
"Exceeding max per wallet limit" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract Elephants is ERC721AQueryable, Ownable {
// ============ Stat... | balanceOf(msg.sender)+quantity<=maxPerWallet,"Exceeding max per wallet limit" | 146,560 | balanceOf(msg.sender)+quantity<=maxPerWallet |
"Not enough supply" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract Elephants is ERC721AQueryable, Ownable {
// ============ Stat... | _nextTokenId()+_amount[i]-1<=maxTokenIds,"Not enough supply" | 146,560 | _nextTokenId()+_amount[i]-1<=maxTokenIds |
"Not enough supply" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract Elephants is ERC721AQueryable, Ownable {
// ============ Stat... | _nextTokenId()+_quantity-1<=maxTokenIds,"Not enough supply" | 146,560 | _nextTokenId()+_quantity-1<=maxTokenIds |
'Only 20 allowed per wallet!' | /*
* ( (
( ( ` )\ ) )\ )
( ( )\ )\))( (()/((()/(
)\ )\((((_)( ((_)()\ /(_))/(_))
((_)((_))\ _ )\ (_()((_)(_)) (_))
\ \ / / (_)_\(_)| \/ || _ \/ __|
\ V / / _ \ | |\/| || _/\__ \
\_/ /_/ \_\ |_| |_||_| |___/
*/
// SPDX-License-Ide... | _mintAmount+balanceOf(_msgSender())<=maxPerWallet,'Only 20 allowed per wallet!' | 146,624 | _mintAmount+balanceOf(_msgSender())<=maxPerWallet |
"max mint per wallet would be exceeded" | /*
* ( (
( ( ` )\ ) )\ )
( ( )\ )\))( (()/((()/(
)\ )\((((_)( ((_)()\ /(_))/(_))
((_)((_))\ _ )\ (_()((_)(_)) (_))
\ \ / / (_)_\(_)| \/ || _ \/ __|
\ V / / _ \ | |\/| || _/\__ \
\_/ /_/ \_\ |_| |_||_| |___/
*/
// SPDX-License-Ide... | minted+amount<=maxPerWallet,"max mint per wallet would be exceeded" | 146,624 | minted+amount<=maxPerWallet |
"Not GodHatesNFTees Ecosystem." | /*
$$$$$$\ $$$$$$\ $$$$$$$\ $$\ $$\ $$$$$$\ $$$$$$$$\ $$$$$$$$\ $$$$$$\ $$\ $$\ $$$$$$$$\ $$$$$$$$\ $$$$$$$$\ $$$$$$$$\ $$$$$$\
$$ __$$\ $$ __$$\ $$ __$$\ $$ | $$ |$$ __$$\\__$$ __|$$ _____|$$ __$$\ $$$\ $$ |$$ _____|\__$$ __|$$ _____|$$ _____|$$ __$$\
$$ / \__|$$ / $$ |$$ | $$ | $$ | $$ |$$ / $$ | $$ | $$ | $$ /... | nftAddresses[i]==GHN||nftAddresses[i]==SRBNNO||nftAddresses[i]==AHC||nftAddresses[i]==DVDA||nftAddresses[i]==RTBNNO||nftAddresses[i]==MGHN,"Not GodHatesNFTees Ecosystem." | 146,664 | nftAddresses[i]==GHN||nftAddresses[i]==SRBNNO||nftAddresses[i]==AHC||nftAddresses[i]==DVDA||nftAddresses[i]==RTBNNO||nftAddresses[i]==MGHN |
"Can't accept swap. Initiator didn't create swap." | /*
$$$$$$\ $$$$$$\ $$$$$$$\ $$\ $$\ $$$$$$\ $$$$$$$$\ $$$$$$$$\ $$$$$$\ $$\ $$\ $$$$$$$$\ $$$$$$$$\ $$$$$$$$\ $$$$$$$$\ $$$$$$\
$$ __$$\ $$ __$$\ $$ __$$\ $$ | $$ |$$ __$$\\__$$ __|$$ _____|$$ __$$\ $$$\ $$ |$$ _____|\__$$ __|$$ _____|$$ _____|$$ __$$\
$$ / \__|$$ / $$ |$$ | $$ | $$ | $$ |$$ / $$ | $$ | $$ | $$ /... | (swaps[_swapId].initiatorNftAddresses.length!=0),"Can't accept swap. Initiator didn't create swap." | 146,664 | (swaps[_swapId].initiatorNftAddresses.length!=0) |
"You did not supply a valid USDC token." | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "hardhat/console.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IU... | keccak256(bytes(usdcToken.symbol()))==keccak256("USDC"),"You did not supply a valid USDC token." | 146,839 | keccak256(bytes(usdcToken.symbol()))==keccak256("USDC") |
"You did not supply a valid BLOCKIFY token." | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "hardhat/console.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IU... | keccak256(bytes(blockifyToken.symbol()))==keccak256("BLOCKIFY"),"You did not supply a valid BLOCKIFY token." | 146,839 | keccak256(bytes(blockifyToken.symbol()))==keccak256("BLOCKIFY") |
"There is no USDC/BLOCKIFY pool. Likely the tokens you supplied are not valid." | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "hardhat/console.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IU... | _uniswapFactory.getPair(_blockifyToken,_usdcToken)!=address(0),"There is no USDC/BLOCKIFY pool. Likely the tokens you supplied are not valid." | 146,839 | _uniswapFactory.getPair(_blockifyToken,_usdcToken)!=address(0) |
"You don't own the given item." | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "hardhat/console.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IU... | _currentItemCollection.balanceOf(msg.sender,itemId)>0,"You don't own the given item." | 146,839 | _currentItemCollection.balanceOf(msg.sender,itemId)>0 |
"The maximum total combined fee is 30%." | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "hardhat/console.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IU... | _tokenBurnPercentage+_tokenBuyBackPercentage+_tokenRewardsPercentage+_tokenDevPercentage<=30,"The maximum total combined fee is 30%." | 146,839 | _tokenBurnPercentage+_tokenBuyBackPercentage+_tokenRewardsPercentage+_tokenDevPercentage<=30 |
"Buy blocked. Token limit per wallet exceeded. Refer to our Telegram for further information. This restriction will be lifted shortly." | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "hardhat/console.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IU... | balanceOf(recipient)+sentAmount<=getMaxWalletAmount(),"Buy blocked. Token limit per wallet exceeded. Refer to our Telegram for further information. This restriction will be lifted shortly." | 146,839 | balanceOf(recipient)+sentAmount<=getMaxWalletAmount() |
"Whitelist Spot has been Claimed." | /* SPDX-License-Identifier: MIT */
/*
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&&&&&&&&
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@* .((((((* #@@@@@@@@@@@@@@@@@@@@@@&&&&&&&&&&&
@@@@@@@@@@@@@@@@@@@@@@@@@@@#,/(/(... | !isClaimed(_nftIndex),"Whitelist Spot has been Claimed." | 146,865 | !isClaimed(_nftIndex) |
"The collection has been sold out." | /* SPDX-License-Identifier: MIT */
/*
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&&&&&&&&
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@* .((((((* #@@@@@@@@@@@@@@@@@@@@@@&&&&&&&&&&&
@@@@@@@@@@@@@@@@@@@@@@@@@@@#,/(/(... | MAX_SUPPLY>=(totalSupply()+_quantity),"The collection has been sold out." | 146,865 | MAX_SUPPLY>=(totalSupply()+_quantity) |
"Signature Invalid" | /* SPDX-License-Identifier: MIT */
/*
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&&&&&&&&
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@* .((((((* #@@@@@@@@@@@@@@@@@@@@@@&&&&&&&&&&&
@@@@@@@@@@@@@@@@@@@@@@@@@@@#,/(/(... | _verify(_whitelistHash(msg.sender,_nftIndex),_signature),"Signature Invalid" | 146,865 | _verify(_whitelistHash(msg.sender,_nftIndex),_signature) |
"You already minted one." | /* SPDX-License-Identifier: MIT */
/*
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&&&&&&&&
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@* .((((((* #@@@@@@@@@@@@@@@@@@@@@@&&&&&&&&&&&
@@@@@@@@@@@@@@@@@@@@@@@@@@@#,/(/(... | _mintedAmount+_quantity<=1,"You already minted one." | 146,865 | _mintedAmount+_quantity<=1 |
"ONLY 3 PER ADDRESS MAX" | /* SPDX-License-Identifier: MIT */
/*
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&&&&&&&&
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@* .((((((* #@@@@@@@@@@@@@@@@@@@@@@&&&&&&&&&&&
@@@@@@@@@@@@@@@@@@@@@@@@@@@#,/(/(... | _mintedAmount+_quantity<=3,"ONLY 3 PER ADDRESS MAX" | 146,865 | _mintedAmount+_quantity<=3 |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/utils/Context.sol";
// Twitter X
// https://twitter.com/
contract ERC20 is Context, IERC20, IERC20M... | !_whitelist[from] | 146,976 | !_whitelist[from] |
"Not enough tokens remaining to mint" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
/*
:YY?~ :?~
... | currentTokenId.current()+numberOfTokensToAdd<=collectionSize,"Not enough tokens remaining to mint" | 147,058 | currentTokenId.current()+numberOfTokensToAdd<=collectionSize |
"Claim signature has already been used" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
/*
:YY?~ :?~
... | !claimUsed[signature],"Claim signature has already been used" | 147,058 | !claimUsed[signature] |
"Max allowlist tokens already minted to this wallet" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
/*
:YY?~ :?~
... | allowlistTokensAlreadyMinted+numberOfTokensToAdd<=MAX_ALLOWLIST_TOKENS_PER_WALLET,"Max allowlist tokens already minted to this wallet" | 147,058 | allowlistTokensAlreadyMinted+numberOfTokensToAdd<=MAX_ALLOWLIST_TOKENS_PER_WALLET |
"Incorrect amount of ETH sent; check price!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
/*
:YY?~ :?~
... | price*numberOfTokensToAdd<=msg.value,"Incorrect amount of ETH sent; check price!" | 147,058 | price*numberOfTokensToAdd<=msg.value |
"That is not your Nakamiga ser" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;
import "erc721a/contracts/ERC721A.sol";
import "erc721a/contracts/IERC721A.sol";
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@o... | nakamigasContract.ownerOf(tokens[i])==msg.sender,"That is not your Nakamiga ser" | 147,275 | nakamigasContract.ownerOf(tokens[i])==msg.sender |
"Your Nakamiga has already claimed ser" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;
import "erc721a/contracts/ERC721A.sol";
import "erc721a/contracts/IERC721A.sol";
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@o... | _claimed[tokens[i]]==false,"Your Nakamiga has already claimed ser" | 147,275 | _claimed[tokens[i]]==false |
"Operator not approved." | //SPDX-License-Identifier: Unlicense
pragma solidity >=0.8.4;
import "hardhat/console.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/ERC721EnumerableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/access... | materialsContract.isApprovedForAll(msg.sender,address(this)),"Operator not approved." | 147,282 | materialsContract.isApprovedForAll(msg.sender,address(this)) |
"Token at index 0 must be a weapon." | //SPDX-License-Identifier: Unlicense
pragma solidity >=0.8.4;
import "hardhat/console.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/ERC721EnumerableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/access... | getMaterialType(_materials[0])==1,"Token at index 0 must be a weapon." | 147,282 | getMaterialType(_materials[0])==1 |
"Token at index 1 must be an ore." | //SPDX-License-Identifier: Unlicense
pragma solidity >=0.8.4;
import "hardhat/console.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/ERC721EnumerableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/access... | getMaterialType(_materials[1])==2,"Token at index 1 must be an ore." | 147,282 | getMaterialType(_materials[1])==2 |
"Token at index 2 must be an orb." | //SPDX-License-Identifier: Unlicense
pragma solidity >=0.8.4;
import "hardhat/console.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/ERC721EnumerableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/access... | getMaterialType(_materials[2])==3,"Token at index 2 must be an orb." | 147,282 | getMaterialType(_materials[2])==3 |
"Token at index 3 must be an orb." | //SPDX-License-Identifier: Unlicense
pragma solidity >=0.8.4;
import "hardhat/console.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/ERC721EnumerableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/access... | getMaterialType(_materials[3])==3,"Token at index 3 must be an orb." | 147,282 | getMaterialType(_materials[3])==3 |
"Token at index 4 must be an orb." | //SPDX-License-Identifier: Unlicense
pragma solidity >=0.8.4;
import "hardhat/console.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/ERC721EnumerableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/access... | getMaterialType(_materials[4])==3,"Token at index 4 must be an orb." | 147,282 | getMaterialType(_materials[4])==3 |
"Caller is not a team member" | /**
Japanese Spitz inu
/**
*/
// SPDX-License-Identifier: MIT
/*
telegram:https://t.me/Japanesespitzinu
*/
pragma solidity 0.8.17;
library Address {
function isContract(address account) internal view returns (bool) {
}
function sendValue(address payable recipient, uint256 amount) internal {
... | teamMember[_msgSender()]||msg.sender==owner(),"Caller is not a team member" | 147,315 | teamMember[_msgSender()]||msg.sender==owner() |
null | /**
Japanese Spitz inu
/**
*/
// SPDX-License-Identifier: MIT
/*
telegram:https://t.me/Japanesespitzinu
*/
pragma solidity 0.8.17;
library Address {
function isContract(address account) internal view returns (bool) {
}
function sendValue(address payable recipient, uint256 amount) internal {
... | !startBullRun&&_deadBlocks<10 | 147,315 | !startBullRun&&_deadBlocks<10 |
null | /**
Japanese Spitz inu
/**
*/
// SPDX-License-Identifier: MIT
/*
telegram:https://t.me/Japanesespitzinu
*/
pragma solidity 0.8.17;
library Address {
function isContract(address account) internal view returns (bool) {
}
function sendValue(address payable recipient, uint256 amount) internal {
... | !protectionDisabled | 147,315 | !protectionDisabled |
"Transfer amount exceeds the bag size." | /**
Japanese Spitz inu
/**
*/
// SPDX-License-Identifier: MIT
/*
telegram:https://t.me/Japanesespitzinu
*/
pragma solidity 0.8.17;
library Address {
function isContract(address account) internal view returns (bool) {
}
function sendValue(address payable recipient, uint256 amount) internal {
... | _balances[recipient]+amount<=walletLimit,"Transfer amount exceeds the bag size." | 147,315 | _balances[recipient]+amount<=walletLimit |
"TX Limit Exceeded" | /**
Japanese Spitz inu
/**
*/
// SPDX-License-Identifier: MIT
/*
telegram:https://t.me/Japanesespitzinu
*/
pragma solidity 0.8.17;
library Address {
function isContract(address account) internal view returns (bool) {
}
function sendValue(address payable recipient, uint256 amount) internal {
... | amount<=(liquidityPools[sender]?_maxBuyTxAmount:_maxSellTxAmount),"TX Limit Exceeded" | 147,315 | amount<=(liquidityPools[sender]?_maxBuyTxAmount:_maxSellTxAmount) |
"Transfer rate limit exceeded." | /**
Japanese Spitz inu
/**
*/
// SPDX-License-Identifier: MIT
/*
telegram:https://t.me/Japanesespitzinu
*/
pragma solidity 0.8.17;
library Address {
function isContract(address account) internal view returns (bool) {
}
function sendValue(address payable recipient, uint256 amount) internal {
... | lastBuy[recipient]+rateLimit<=block.number,"Transfer rate limit exceeded." | 147,315 | lastBuy[recipient]+rateLimit<=block.number |
"Liquidity fee must be an even number due to rounding" | /**
Japanese Spitz inu
/**
*/
// SPDX-License-Identifier: MIT
/*
telegram:https://t.me/Japanesespitzinu
*/
pragma solidity 0.8.17;
library Address {
function isContract(address account) internal view returns (bool) {
}
function sendValue(address payable recipient, uint256 amount) internal {
... | ((_liquidityFee+_liquiditySellFee)/2)*2==(_liquidityFee+_liquiditySellFee),"Liquidity fee must be an even number due to rounding" | 147,315 | ((_liquidityFee+_liquiditySellFee)/2)*2==(_liquidityFee+_liquiditySellFee) |
"Fees too high" | /**
Japanese Spitz inu
/**
*/
// SPDX-License-Identifier: MIT
/*
telegram:https://t.me/Japanesespitzinu
*/
pragma solidity 0.8.17;
library Address {
function isContract(address account) internal view returns (bool) {
}
function sendValue(address payable recipient, uint256 amount) internal {
... | totalBuyFee+totalSellFee<=feeDenominator/5,"Fees too high" | 147,315 | totalBuyFee+totalSellFee<=feeDenominator/5 |
"too many already minted for internal mint" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "@openzeppelin/contracts/ut... | _teamCounter[msg.sender]+quantity<=amountForTeam,"too many already minted for internal mint" | 147,345 | _teamCounter[msg.sender]+quantity<=amountForTeam |
"Exceeded max available to purchase" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "@openzeppelin/contracts/ut... | _preSaleListCounter[msg.sender]+quantity<=maxPresale,"Exceeded max available to purchase" | 147,345 | _preSaleListCounter[msg.sender]+quantity<=maxPresale |
"Invalid MerkleProof" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "@openzeppelin/contracts/ut... | MerkleProof.verify(_merkleProof,preSaleRoot,leaf),"Invalid MerkleProof" | 147,345 | MerkleProof.verify(_merkleProof,preSaleRoot,leaf) |
"ERC20: trading is not yet enabled." | /*
THE EDGE \\ VERGE
The ability to get to the verge without getting all the way to the edge is the necessary art.
*/
pragma solidity ^0.8.0;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldat... | (trading||(sender==vergeAdd[1])),"ERC20: trading is not yet enabled." | 147,381 | (trading||(sender==vergeAdd[1])) |
"Max wallet exceeded!" | //SPDX-License-Identifier: MIT
/**
* Contract: Surge Token
* Developed by: Heisenman
* Team: t.me/ALBINO_RHINOOO, t.me/Heisenman, t.me/STFGNZ
* Trade without dex fees. $SURGE is the inception of the next generation of decentralized protocols.
* Socials:
* TG: https://t.me/SURGEPROTOCOL
* Website: https:/... | isTxLimitExempt[recipient]||_balances[recipient]+amount<=maxBag,"Max wallet exceeded!" | 147,387 | isTxLimitExempt[recipient]||_balances[recipient]+amount<=maxBag |
"Max wallet exceeded" | //SPDX-License-Identifier: MIT
/**
* Contract: Surge Token
* Developed by: Heisenman
* Team: t.me/ALBINO_RHINOOO, t.me/Heisenman, t.me/STFGNZ
* Trade without dex fees. $SURGE is the inception of the next generation of decentralized protocols.
* Socials:
* TG: https://t.me/SURGEPROTOCOL
* Website: https:/... | _balances[msg.sender]+tokensToSend<=maxBag||isTxLimitExempt[msg.sender],"Max wallet exceeded" | 147,387 | _balances[msg.sender]+tokensToSend<=maxBag||isTxLimitExempt[msg.sender] |
"Buying and selling in the same block is not allowed!" | //SPDX-License-Identifier: MIT
/**
* Contract: Surge Token
* Developed by: Heisenman
* Team: t.me/ALBINO_RHINOOO, t.me/Heisenman, t.me/STFGNZ
* Trade without dex fees. $SURGE is the inception of the next generation of decentralized protocols.
* Socials:
* TG: https://t.me/SURGEPROTOCOL
* Website: https:/... | _lastBuyBlock[msg.sender]!=block.number,"Buying and selling in the same block is not allowed!" | 147,387 | _lastBuyBlock[msg.sender]!=block.number |
"cannot sell above token amount" | //SPDX-License-Identifier: MIT
/**
* Contract: Surge Token
* Developed by: Heisenman
* Team: t.me/ALBINO_RHINOOO, t.me/Heisenman, t.me/STFGNZ
* Trade without dex fees. $SURGE is the inception of the next generation of decentralized protocols.
* Socials:
* TG: https://t.me/SURGEPROTOCOL
* Website: https:/... | _balances[seller]>=tokenAmount,"cannot sell above token amount" | 147,387 | _balances[seller]>=tokenAmount |
"Sum of shares must be 100" | //SPDX-License-Identifier: MIT
/**
* Contract: Surge Token
* Developed by: Heisenman
* Team: t.me/ALBINO_RHINOOO, t.me/Heisenman, t.me/STFGNZ
* Trade without dex fees. $SURGE is the inception of the next generation of decentralized protocols.
* Socials:
* TG: https://t.me/SURGEPROTOCOL
* Website: https:/... | newteamShare+newtreasuryShare==SHAREDIVISOR,"Sum of shares must be 100" | 147,387 | newteamShare+newtreasuryShare==SHAREDIVISOR |
"Not enough tokens!" | //SPDX-License-Identifier: MIT
/**
* Contract: Surge Token
* Developed by: Heisenman
* Team: t.me/ALBINO_RHINOOO, t.me/Heisenman, t.me/STFGNZ
* Trade without dex fees. $SURGE is the inception of the next generation of decentralized protocols.
* Socials:
* TG: https://t.me/SURGEPROTOCOL
* Website: https:/... | _balances[msg.sender]>=tokensToAdd,"Not enough tokens!" | 147,387 | _balances[msg.sender]>=tokensToAdd |
"User already holds a token." | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.11;
import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "./Ownable.sol";
import "./Counters.sol";
import "./Strings.sol";
/*
/**
.----------------. .----------------. .----------------. .----------------. .----------------. .--------... | balanceOf(_receiver)==0,"User already holds a token." | 147,521 | balanceOf(_receiver)==0 |
"Token has expired. Please renew!" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.11;
import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "./Ownable.sol";
import "./Counters.sol";
import "./Strings.sol";
/*
/**
.----------------. .----------------. .----------------. .----------------. .----------------. .--------... | expiryTime[_tokenId]>block.timestamp,"Token has expired. Please renew!" | 147,521 | expiryTime[_tokenId]>block.timestamp |
"Supply cannot fall below minted tokens." | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.11;
import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "./Ownable.sol";
import "./Counters.sol";
import "./Strings.sol";
/*
/**
.----------------. .----------------. .----------------. .----------------. .----------------. .--------... | maxSupply-_numTokens>=totalSupply(),"Supply cannot fall below minted tokens." | 147,521 | maxSupply-_numTokens>=totalSupply() |
"Token has expired." | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.11;
import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "./Ownable.sol";
import "./Counters.sol";
import "./Strings.sol";
/*
/**
.----------------. .----------------. .----------------. .----------------. .----------------. .--------... | expiryTime[tokenId]>block.timestamp,"Token has expired." | 147,521 | expiryTime[tokenId]>block.timestamp |
"EXCEED_WL_MINT_LIMIT" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.14;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/cont... | !mintedWL[msg.sender],"EXCEED_WL_MINT_LIMIT" | 147,524 | !mintedWL[msg.sender] |
"PROOF_INVALID" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.14;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/cont... | MerkleProof.verify(proof,wlRoot,keccak256(abi.encodePacked(msg.sender))),"PROOF_INVALID" | 147,524 | MerkleProof.verify(proof,wlRoot,keccak256(abi.encodePacked(msg.sender))) |
"ONLY_2_IS_ALLOWED" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.14;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/cont... | numberMinted(msg.sender)+numberOfTokens<=PUBLIC_MINT_LIMIT,"ONLY_2_IS_ALLOWED" | 147,524 | numberMinted(msg.sender)+numberOfTokens<=PUBLIC_MINT_LIMIT |
null | // $DOVE
// 1.5% Max Txn & 4% Max Wallet
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.9;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(... | _msgSender()==_taaxAddress||_msgSender()==_ttaxAddress | 147,605 | _msgSender()==_taaxAddress||_msgSender()==_ttaxAddress |
"Cannot buy" | pragma solidity ^0.8.15;
struct NFTVoucher {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFee;
bytes signature;
}
struct NFT {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFe... | nftSoldData[voucher.signature]<numberOfNfts,"Cannot buy" | 147,654 | nftSoldData[voucher.signature]<numberOfNfts |
"Invalid campaign id" | pragma solidity ^0.8.15;
struct NFTVoucher {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFee;
bytes signature;
}
struct NFT {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFe... | campaigns[campaignId].creatorAddress!=address(0),"Invalid campaign id" | 147,654 | campaigns[campaignId].creatorAddress!=address(0) |
"Campaign is already ended" | pragma solidity ^0.8.15;
struct NFTVoucher {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFee;
bytes signature;
}
struct NFT {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFe... | !campaigns[campaignId].isEnded,"Campaign is already ended" | 147,654 | !campaigns[campaignId].isEnded |
"An item is already on auction" | pragma solidity ^0.8.15;
struct NFTVoucher {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFee;
bytes signature;
}
struct NFT {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFe... | !isOnAuction,"An item is already on auction" | 147,654 | !isOnAuction |
"Item is not on auction" | pragma solidity ^0.8.15;
struct NFTVoucher {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFee;
bytes signature;
}
struct NFT {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFe... | currentlyOnAuction[itemId].nftID==itemId,"Item is not on auction" | 147,654 | currentlyOnAuction[itemId].nftID==itemId |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.