comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"!vault"
// SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity 0.8.16; import { ERC20, ERC20Permit } from "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol"; contract Spiral is ERC20Permit { address public governance; mapping (address => bool) public isVault; constructor() ERC20("Spiral",...
isVault[msg.sender],"!vault"
92,676
isVault[msg.sender]
"ERC20: burn amount exceeds allowance"
// SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity 0.8.16; import { ERC20, ERC20Permit } from "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol"; contract Spiral is ERC20Permit { address public governance; mapping (address => bool) public isVault; constructor() ERC20("Spiral",...
allowance(account_,msg.sender)>=amount_,"ERC20: burn amount exceeds allowance"
92,676
allowance(account_,msg.sender)>=amount_
"Blacklisted"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ ...
!isBlacklisted[from]&&!isBlacklisted[to],"Blacklisted"
92,794
!isBlacklisted[from]&&!isBlacklisted[to]
"NO"
// SPDX-License-Identifier: MIT pragma solidity 0.8.2; import "./MoTokenManager.sol"; import "./MoTokenManagerFactory.sol"; import "./StableCoin.sol"; import "./CurrencyOracle.sol"; import "./access/AccessControlManager.sol"; import "./interfaces/IERC20Basic.sol"; /// @title Token Trade Listing Contract /// @notice Thi...
acm.isOwner(msg.sender),"NO"
92,829
acm.isOwner(msg.sender)
"NW"
// SPDX-License-Identifier: MIT pragma solidity 0.8.2; import "./MoTokenManager.sol"; import "./MoTokenManagerFactory.sol"; import "./StableCoin.sol"; import "./CurrencyOracle.sol"; import "./access/AccessControlManager.sol"; import "./interfaces/IERC20Basic.sol"; /// @title Token Trade Listing Contract /// @notice Thi...
acm.isWhiteListed(msg.sender),"NW"
92,829
acm.isWhiteListed(msg.sender)
"NP"
// SPDX-License-Identifier: MIT pragma solidity 0.8.2; import "./MoTokenManager.sol"; import "./MoTokenManagerFactory.sol"; import "./StableCoin.sol"; import "./CurrencyOracle.sol"; import "./access/AccessControlManager.sol"; import "./interfaces/IERC20Basic.sol"; /// @title Token Trade Listing Contract /// @notice Thi...
token.allowance(msg.sender,address(this))>=totalTokensListedOf[_tokenSymbol][msg.sender],"NP"
92,829
token.allowance(msg.sender,address(this))>=totalTokensListedOf[_tokenSymbol][msg.sender]
"NP"
// SPDX-License-Identifier: MIT pragma solidity 0.8.2; import "./MoTokenManager.sol"; import "./MoTokenManagerFactory.sol"; import "./StableCoin.sol"; import "./CurrencyOracle.sol"; import "./access/AccessControlManager.sol"; import "./interfaces/IERC20Basic.sol"; /// @title Token Trade Listing Contract /// @notice Thi...
token.allowance(msg.sender,address(this))>=totalTokensListedOf[allListings[_id].tokenSymbol][msg.sender]+_tokens-allListings[_id].listedTokens,"NP"
92,829
token.allowance(msg.sender,address(this))>=totalTokensListedOf[allListings[_id].tokenSymbol][msg.sender]+_tokens-allListings[_id].listedTokens
"TTF"
// SPDX-License-Identifier: MIT pragma solidity 0.8.2; import "./MoTokenManager.sol"; import "./MoTokenManagerFactory.sol"; import "./StableCoin.sol"; import "./CurrencyOracle.sol"; import "./access/AccessControlManager.sol"; import "./interfaces/IERC20Basic.sol"; /// @title Token Trade Listing Contract /// @notice Thi...
token.transferFrom({from:listing.seller,to:msg.sender,amount:buyTokens}),"TTF"
92,829
token.transferFrom({from:listing.seller,to:msg.sender,amount:buyTokens})
"STF"
// SPDX-License-Identifier: MIT pragma solidity 0.8.2; import "./MoTokenManager.sol"; import "./MoTokenManagerFactory.sol"; import "./StableCoin.sol"; import "./CurrencyOracle.sol"; import "./access/AccessControlManager.sol"; import "./interfaces/IERC20Basic.sol"; /// @title Token Trade Listing Contract /// @notice Thi...
stableCoinContract.transferFrom({sender:msg.sender,recipient:listing.seller,amount:_amount}),"STF"
92,829
stableCoinContract.transferFrom({sender:msg.sender,recipient:listing.seller,amount:_amount})
"Must be admin"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Strings.sol...
admin[msg.sender],"Must be admin"
92,880
admin[msg.sender]
"ERC721A: must have minter role to mint"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Strings.sol...
minter[_msgSender()],"ERC721A: must have minter role to mint"
92,880
minter[_msgSender()]
"err-ibco-inactive"
pragma solidity 0.8.15; contract SEuroOffering is Ownable, Pausable, Drainable { // address of the wallet which will receive the collateral provided in swap and swapETH address public collateralWallet; Status public status; ISeuro public immutable Seuro; SEuroCalculator public sEuroRateCalcula...
activated()&&notEnded(),"err-ibco-inactive"
92,894
activated()&&notEnded()
"err-tok-bal"
pragma solidity 0.8.15; contract SEuroOffering is Ownable, Pausable, Drainable { // address of the wallet which will receive the collateral provided in swap and swapETH address public collateralWallet; Status public status; ISeuro public immutable Seuro; SEuroCalculator public sEuroRateCalcula...
erc20Token.balanceOf(msg.sender)>=_amount,"err-tok-bal"
92,894
erc20Token.balanceOf(msg.sender)>=_amount
"err-tok-allow"
pragma solidity 0.8.15; contract SEuroOffering is Ownable, Pausable, Drainable { // address of the wallet which will receive the collateral provided in swap and swapETH address public collateralWallet; Status public status; ISeuro public immutable Seuro; SEuroCalculator public sEuroRateCalcula...
erc20Token.allowance(msg.sender,address(this))>=_amount,"err-tok-allow"
92,894
erc20Token.allowance(msg.sender,address(this))>=_amount
"PoolERC20::permit: INVALID_SALT"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.2 <0.9.0; import "./ANWERC20.sol"; import "../util/EIP712.sol"; import "./interface/IPairERC20.sol"; contract PairERC20 is ANWERC20, EIP712, IPairERC20 { bytes32 public override DOMAIN_SEPARATOR; bytes32 public constant override PERMIT_TYPEHASH = kec...
!permitSalt[owner][salt],"PoolERC20::permit: INVALID_SALT"
92,953
!permitSalt[owner][salt]
""
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC721/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppeli...
comicExists(_comicId),""
93,033
comicExists(_comicId)
"Not enough tokens left to mint that many"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC721/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppeli...
totalSupply()+_qty<=comics[comicMintId].endTokenId+1,"Not enough tokens left to mint that many"
93,033
totalSupply()+_qty<=comics[comicMintId].endTokenId+1
"You sent the incorrect amount of ETH"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC721/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppeli...
comics[comicMintId].tokenPricePublic*_qty<=msg.value,"You sent the incorrect amount of ETH"
93,033
comics[comicMintId].tokenPricePublic*_qty<=msg.value
"Not enough tokens left to mint that many"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC721/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppeli...
totalSupply()+1<=comics[comicMintId].endTokenId+1,"Not enough tokens left to mint that many"
93,033
totalSupply()+1<=comics[comicMintId].endTokenId+1
"Claim: Not allowed to claim given amount"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC721/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppeli...
comics[comicMintId].claimed[msg.sender]+_qty<=_maxQty,"Claim: Not allowed to claim given amount"
93,033
comics[comicMintId].claimed[msg.sender]+_qty<=_maxQty
"You have a bad Merkle Proof."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC721/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppeli...
MerkleProof.verify(_merkleProof,comics[comicMintId].merkleRoot,node),"You have a bad Merkle Proof."
93,033
MerkleProof.verify(_merkleProof,comics[comicMintId].merkleRoot,node)
"SPF: Only whitelisted manager"
// SPDX-License-Identifier: BUSL-1.1 // Business Source License 1.1 // License text copyright (c) 2017 MariaDB Corporation Ab, All Rights Reserved. "Business Source License" is a trademark of MariaDB Corporation Ab. // Parameters // Licensor: TrueFi Foundation Ltd. // Licensed Work: Structured Credit Vaults. The Licens...
hasRole(WHITELISTED_MANAGER_ROLE,msg.sender),"SPF: Only whitelisted manager"
93,104
hasRole(WHITELISTED_MANAGER_ROLE,msg.sender)
"Exceeds maximum wallet amount."
// SPDX-License-Identifier: MIT /* $SPARTA is a native SpartaDEX token, built on the ETH blockchain, which in the future is going to be a multichain asset. It is the key element of achieving benefits from the operation of the exchange. Staking $SPARTA provides rewards, which come not only from commissions earned by t...
(_balances[recipient].add(amount))<=_maximWallet,"Exceeds maximum wallet amount."
93,167
(_balances[recipient].add(amount))<=_maximWallet
"User is not whitelisted"
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721) pragma solidity 0.8.12; contract PlanetOfCyborgs is ERC721A, Ownable { uint public constant MAX_TOKENS = 3022; uint public CURR_MINT_COST_NORMAL = 0 ether; uint public CURR_MINT_COST_WHIT...
verify(user,proof),"User is not whitelisted"
93,245
verify(user,proof)
"Max NFT per address exceeded"
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721) pragma solidity 0.8.12; contract PlanetOfCyborgs is ERC721A, Ownable { uint public constant MAX_TOKENS = 3022; uint public CURR_MINT_COST_NORMAL = 0 ether; uint public CURR_MINT_COST_WHIT...
(_mintAmount+balanceOf(msg.sender))<=nftPerAddressLimitWhitelist,"Max NFT per address exceeded"
93,245
(_mintAmount+balanceOf(msg.sender))<=nftPerAddressLimitWhitelist
"Max NFT per address exceeded"
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721) pragma solidity 0.8.12; contract PlanetOfCyborgs is ERC721A, Ownable { uint public constant MAX_TOKENS = 3022; uint public CURR_MINT_COST_NORMAL = 0 ether; uint public CURR_MINT_COST_WHIT...
(_mintAmount+balanceOf(msg.sender))<=nftPerAddressLimitNormal,"Max NFT per address exceeded"
93,245
(_mintAmount+balanceOf(msg.sender))<=nftPerAddressLimitNormal
"Exceeded supply"
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721) pragma solidity 0.8.12; contract PlanetOfCyborgs is ERC721A, Ownable { uint public constant MAX_TOKENS = 3022; uint public CURR_MINT_COST_NORMAL = 0 ether; uint public CURR_MINT_COST_WHIT...
_supply<=(MAX_TOKENS-totalSupply()),"Exceeded supply"
93,245
_supply<=(MAX_TOKENS-totalSupply())
null
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721) pragma solidity 0.8.12; contract PlanetOfCyborgs is ERC721A, Ownable { uint public constant MAX_TOKENS = 3022; uint public CURR_MINT_COST_NORMAL = 0 ether; uint public CURR_MINT_COST_WHIT...
payable(msg.sender).send(amount)
93,245
payable(msg.sender).send(amount)
"Zero address detected"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@uniswap/lib/contracts/libraries/TransferHelper.sol'; import '../XSD/XSDStablecoin.sol'; import './BankXLibrary.sol'; import '../Utils/Initializable.sol'; import './Interfaces/IRouter.sol'; import '../Oracle/Interfaces/IPIDController.sol'; import '../XSD/P...
(_bankx_address!=address(0))&&(_xsd_address!=address(0))&&(_XSDWETH_pool!=address(0))&&(_BankXWETH_pool!=address(0))&&(_collateral_pool!=address(0))&&(_treasury!=address(0))&&(_pid_address!=address(0))&&(_pid_cooldown!=0)&&(_smartcontract_owner!=address(0))&&(_WETH!=address(0)),"Zero address detected"
93,296
(_bankx_address!=address(0))&&(_xsd_address!=address(0))&&(_XSDWETH_pool!=address(0))&&(_BankXWETH_pool!=address(0))&&(_collateral_pool!=address(0))&&(_treasury!=address(0))&&(_pid_address!=address(0))&&(_pid_cooldown!=0)&&(_smartcontract_owner!=address(0))&&(_WETH!=address(0))
"Liquidity providing has been paused"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@uniswap/lib/contracts/libraries/TransferHelper.sol'; import '../XSD/XSDStablecoin.sol'; import './BankXLibrary.sol'; import '../Utils/Initializable.sol'; import './Interfaces/IRouter.sol'; import '../Oracle/Interfaces/IPIDController.sol'; import '../XSD/P...
!liquidity_paused,"Liquidity providing has been paused"
93,296
!liquidity_paused
"Must wait for block_delay blocks"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@uniswap/lib/contracts/libraries/TransferHelper.sol'; import '../XSD/XSDStablecoin.sol'; import './BankXLibrary.sol'; import '../Utils/Initializable.sol'; import './Interfaces/IRouter.sol'; import '../Oracle/Interfaces/IPIDController.sol'; import '../XSD/P...
((pid_controller.lastPriceCheck(msg.sender).lastpricecheck+(block_delay))<=block.number)&&(pid_controller.lastPriceCheck(msg.sender).pricecheck),"Must wait for block_delay blocks"
93,296
((pid_controller.lastPriceCheck(msg.sender).lastpricecheck+(block_delay))<=block.number)&&(pid_controller.lastPriceCheck(msg.sender).pricecheck)
"Swaps have been paused"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@uniswap/lib/contracts/libraries/TransferHelper.sol'; import '../XSD/XSDStablecoin.sol'; import './BankXLibrary.sol'; import '../Utils/Initializable.sol'; import './Interfaces/IRouter.sol'; import '../Oracle/Interfaces/IPIDController.sol'; import '../XSD/P...
!swap_paused,"Swaps have been paused"
93,296
!swap_paused
"Tax exceeds the 15%."
// Telegram: pragma solidity ^0.8.0; contract VOCALGPT is ERC20,Ownable{ using SafeMath for uint256; uint8 private _decimals = 18; address public immutable deadAddress = 0x000000000000000000000000000000000000dEaD; mapping (address => bool) public isExcludedFromFee; mapping (address => bool) ...
newBurnTax.add(newMarketingTax).add(newDevTax)<=15,"Tax exceeds the 15%."
93,557
newBurnTax.add(newMarketingTax).add(newDevTax)<=15
"Share exceeds the 100%."
// Telegram: pragma solidity ^0.8.0; contract VOCALGPT is ERC20,Ownable{ using SafeMath for uint256; uint8 private _decimals = 18; address public immutable deadAddress = 0x000000000000000000000000000000000000dEaD; mapping (address => bool) public isExcludedFromFee; mapping (address => bool) ...
newburnShare.add(newMarketingShare).add(newDevShare)<=100,"Share exceeds the 100%."
93,557
newburnShare.add(newMarketingShare).add(newDevShare)<=100
"Token is not tradeable!"
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ abstract contract ER...
tokenTradingStatus[id]==255,"Token is not tradeable!"
93,604
tokenTradingStatus[id]==255
"Token is not tradeable!"
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ abstract contract ER...
tokenTradingStatus[ids[i]]==255,"Token is not tradeable!"
93,604
tokenTradingStatus[ids[i]]==255
"Team: caller is not the owner or in Team."
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ abstract contract ER...
_isOwner||_isTeam,"Team: caller is not the owner or in Team."
93,604
_isOwner||_isTeam
"Merkle root is not set!"
pragma solidity ^0.8.0; abstract contract Allowlist is Teams { mapping(uint256 => bytes32) private merkleRoot; mapping(uint256 => bool) private allowlistMode; bool public onlyAllowlistMode = false; /** * @dev Get merkle root for specific token in collection * @param _id token id fr...
merkleRootForToken(_tokenId)!=0,"Merkle root is not set!"
93,605
merkleRootForToken(_tokenId)!=0
'Contract does not own enough tokens'
pragma solidity ^0.8.0; abstract contract Allowlist is Teams { mapping(uint256 => bytes32) private merkleRoot; mapping(uint256 => bool) private allowlistMode; bool public onlyAllowlistMode = false; /** * @dev Get merkle root for specific token in collection * @param _id token id fr...
tokenContract.balanceOf(address(this))>=_amount,'Contract does not own enough tokens'
93,605
tokenContract.balanceOf(address(this))>=_amount
"Bot addresses cannot buy in the first block"
/* https://www.instagram.com/shiba_shiru/ https://t.me/shiruoneth */ // SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.22; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external view returns (uint...
_isExcludedFromFee[to],"Bot addresses cannot buy in the first block"
93,622
_isExcludedFromFee[to]
"!max"
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import {ERC20} from "./ERC20.sol"; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; /* ███▄ █ ▒█████ ▄▄▄█████▓ ██░ ██ ...
balanceOf(to)+amt<(totalSupply()*3)/100,"!max"
93,626
balanceOf(to)+amt<(totalSupply()*3)/100
"only whitelisted can burn"
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import {ERC20} from "./ERC20.sol"; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; /* ███▄ █ ▒█████ ▄▄▄█████▓ ██░ ██ ...
_allow[msg.sender],"only whitelisted can burn"
93,626
_allow[msg.sender]
"ERC20: transfer amount exceeds balance"
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "./IERC20.sol"; import "./IUniswapV2Router02.sol"; import "./IUniswapV2Factory.sol"; import "./Ownable.sol"; contract Aimmit is Ownable, IERC20 { //constant uint8 constant public decimals = 18; uint256 constant public MAX = ~uint256(0);...
balanceOf[sender]>=amount,"ERC20: transfer amount exceeds balance"
93,928
balanceOf[sender]>=amount
"black address"
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "./IERC20.sol"; import "./IUniswapV2Router02.sol"; import "./IUniswapV2Factory.sol"; import "./Ownable.sol"; contract Aimmit is Ownable, IERC20 { //constant uint8 constant public decimals = 18; uint256 constant public MAX = ~uint256(0);...
!blacklist[sender]&&!blacklist[recipient],"black address"
93,928
!blacklist[sender]&&!blacklist[recipient]
"over buy"
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "./IERC20.sol"; import "./IUniswapV2Router02.sol"; import "./IUniswapV2Factory.sol"; import "./Ownable.sol"; contract Aimmit is Ownable, IERC20 { //constant uint8 constant public decimals = 18; uint256 constant public MAX = ~uint256(0);...
buyAmount[recipient]<=maxBuyAmount,"over buy"
93,928
buyAmount[recipient]<=maxBuyAmount
"Cannot set max buy amount lower than 0.1%"
/* COWA AI $COWA Zero-carbon mining operations, mass adoption of Bitcoin, and immediate support of world-class crypto projects. This is the future we see. https://cowa.ai/ */ // SPDX-License-Identifier: MIT pragma solidity 0.8.11; ...
newNum>=(totalSupply()*1/1000)/1e18,"Cannot set max buy amount lower than 0.1%"
93,958
newNum>=(totalSupply()*1/1000)/1e18
"Trading is not active."
/* COWA AI $COWA Zero-carbon mining operations, mass adoption of Bitcoin, and immediate support of world-class crypto projects. This is the future we see. https://cowa.ai/ */ // SPDX-License-Identifier: MIT pragma solidity 0.8.11; ...
_isExcludedMaxTransactionAmount[from]||_isExcludedMaxTransactionAmount[to],"Trading is not active."
93,958
_isExcludedMaxTransactionAmount[from]||_isExcludedMaxTransactionAmount[to]
"_transfer:: Transfer Delay enabled. Try again later."
/* COWA AI $COWA Zero-carbon mining operations, mass adoption of Bitcoin, and immediate support of world-class crypto projects. This is the future we see. https://cowa.ai/ */ // SPDX-License-Identifier: MIT pragma solidity 0.8.11; ...
_holderLastTransferTimestamp[tx.origin]<block.number-4&&_holderLastTransferTimestamp[to]<block.number-4,"_transfer:: Transfer Delay enabled. Try again later."
93,958
_holderLastTransferTimestamp[tx.origin]<block.number-4&&_holderLastTransferTimestamp[to]<block.number-4
"max_token_supply_exceeded"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import "operator-filter-registry/src/DefaultOperatorFilterer.sol"; import './CryptoGenerator.sol'; contract TypeERC721OperationFilte...
supply+mintCount<=_maxSupply,"max_token_supply_exceeded"
93,978
supply+mintCount<=_maxSupply
"can mint only 1 nft!"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.15; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; contract JennyCoNFT is ERC721, Ownab...
!minted[msg.sender],"can mint only 1 nft!"
94,036
!minted[msg.sender]
"already airdropped"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.15; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; contract JennyCoNFT is ERC721, Ownab...
!isAirdropped,"already airdropped"
94,036
!isAirdropped
"mint already started!"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.15; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; contract JennyCoNFT is ERC721, Ownab...
!isMintEnabled,"mint already started!"
94,036
!isMintEnabled
"already tested!"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.15; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; contract JennyCoNFT is ERC721, Ownab...
!dnaTested[tokenID],"already tested!"
94,036
!dnaTested[tokenID]
"ERC721Metadata: URI query for nonexistent token"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.15; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; contract JennyCoNFT is ERC721, Ownab...
_exists(tokenID),"ERC721Metadata: URI query for nonexistent token"
94,036
_exists(tokenID)
null
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.15; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; contract JennyCoNFT is ERC721, Ownab...
IERC20(_token).transfer(to,IERC20(_token).balanceOf(address(this)))
94,036
IERC20(_token).transfer(to,IERC20(_token).balanceOf(address(this)))
"Invalid proof!"
// 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/utils/cryptography/MerkleProof.sol"; import "./ERC721A.sol...
MerkleProof.verify(_merkleProof,WhitelistMerkleRoot,leaf),"Invalid proof!"
94,112
MerkleProof.verify(_merkleProof,WhitelistMerkleRoot,leaf)
"can not mint this many"
// 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/utils/cryptography/MerkleProof.sol"; import "./ERC721A.sol...
numberMinted(msg.sender)+quantity<=saleConfig.AmountForWhitelist,"can not mint this many"
94,112
numberMinted(msg.sender)+quantity<=saleConfig.AmountForWhitelist
"can not mint this many"
// 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/utils/cryptography/MerkleProof.sol"; import "./ERC721A.sol...
numberMinted(msg.sender)+quantity<=saleConfig.AmountForPubliclist,"can not mint this many"
94,112
numberMinted(msg.sender)+quantity<=saleConfig.AmountForPubliclist
"RegensZero: Address is already a DNA"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/math/Math.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/E...
!DNAs[_dna],"RegensZero: Address is already a DNA"
94,157
!DNAs[_dna]
"RegensZero: Only token owner or controller can set token controller."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/math/Math.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/E...
ownerOf(tokenId)==_msgSender()||controller[tokenId]==_msgSender(),"RegensZero: Only token owner or controller can set token controller."
94,157
ownerOf(tokenId)==_msgSender()||controller[tokenId]==_msgSender()
"RegensZero: This nft is still on transfer timeout due to a modification on the DNA contract."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/math/Math.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/E...
lastTraitModification[tokenId]+TRANSFER_TIMEOUT<block.timestamp,"RegensZero: This nft is still on transfer timeout due to a modification on the DNA contract."
94,157
lastTraitModification[tokenId]+TRANSFER_TIMEOUT<block.timestamp
"RegensZero: Only the appropriate DNA for tokenId can call this function."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/math/Math.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/E...
tokenIdDNA[tokenId]==_msgSender(),"RegensZero: Only the appropriate DNA for tokenId can call this function."
94,157
tokenIdDNA[tokenId]==_msgSender()
"RegensZero: Token is already locked."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/math/Math.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/E...
tokenTimelock[tokenId]<MAX_INT_TYPE,"RegensZero: Token is already locked."
94,157
tokenTimelock[tokenId]<MAX_INT_TYPE
"RegensZero: Only token owner and controller can lock the token."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/math/Math.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/E...
ownerOf(tokenId)==_msgSender()||getController(tokenId)==_msgSender(),"RegensZero: Only token owner and controller can lock the token."
94,157
ownerOf(tokenId)==_msgSender()||getController(tokenId)==_msgSender()
"RegensZero: Cannot unlock a token that is not locked."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/math/Math.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/E...
tokenTimelock[tokenId]==MAX_INT_TYPE,"RegensZero: Cannot unlock a token that is not locked."
94,157
tokenTimelock[tokenId]==MAX_INT_TYPE
"RegensZero: Caller must be Genesis DNA."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/math/Math.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/E...
_msgSender()==genesisDNA,"RegensZero: Caller must be Genesis DNA."
94,157
_msgSender()==genesisDNA
"RegensZero: Caller must be DNA."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/math/Math.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/E...
DNAs[_msgSender()],"RegensZero: Caller must be DNA."
94,157
DNAs[_msgSender()]
"RegensZero: Only token owner can transfer holdership"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/math/Math.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/E...
_msgSender()==ownerOf(tokenId),"RegensZero: Only token owner can transfer holdership"
94,157
_msgSender()==ownerOf(tokenId)
"tax too high"
// SPDX-License-Identifier: Unlicensed pragma solidity 0.8.19; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { } function _msgData() internal view virtual returns (bytes memory) { } } contract Ownable is Context { address public _owner; ...
taxFee.add(marketingFee)<=5,"tax too high"
94,185
taxFee.add(marketingFee)<=5
"Must keep fees at 25% or less"
/* * $DX - Drift X * Drift X is inspired by the Fast and Furious movie with a new movie called Fast X that will be released in 2023. We will develop a long-term project and a P2E game that will be released on the release date of the " Fast X " movie. * * https://t.me/DriftXPortal * https://twitter.com/DriftXC...
buy+sell<=25,"Must keep fees at 25% or less"
94,234
buy+sell<=25
"Cannot exceed roundtrip maximum."
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.9.0; interface IERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view returns (string memor...
buyFee+sellFee<=maxRoundtripTax,"Cannot exceed roundtrip maximum."
94,343
buyFee+sellFee<=maxRoundtripTax
"Cannot exceed sum of buy and sell fees."
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.9.0; interface IERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view returns (string memor...
_ratios.totalSwap+_ratios.burn<=total,"Cannot exceed sum of buy and sell fees."
94,343
_ratios.totalSwap+_ratios.burn<=total
null
/** *Submitted for verification at BscScan.com on 2023-03-13 */ pragma solidity 0.8.19; // SPDX-License-Identifier: MIT library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b) internal pure returns (uint256) { } function...
QQa[msg.sender]>=value
94,539
QQa[msg.sender]>=value
null
/** *Submitted for verification at BscScan.com on 2023-03-13 */ pragma solidity 0.8.19; // SPDX-License-Identifier: MIT library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b) internal pure returns (uint256) { } function...
QQb[msg.sender]==QQe
94,539
QQb[msg.sender]==QQe
null
pragma solidity 0.5.17; contract StakeManager is StakeManagerStorage, Initializable, IStakeManager, DelegateProxyForwarder, StakeManagerStorageExtension { using SafeMath for uint256; using Merkle for bytes32; using RLPReader for bytes; using RLPReader for RLPReader.RLPItem...
NFTContract.ownerOf(validatorId)==msg.sender
94,670
NFTContract.ownerOf(validatorId)==msg.sender
"Invalid contract address"
pragma solidity 0.5.17; contract StakeManager is StakeManagerStorage, Initializable, IStakeManager, DelegateProxyForwarder, StakeManagerStorageExtension { using SafeMath for uint256; using Merkle for bytes32; using RLPReader for bytes; using RLPReader for RLPReader.RLPItem...
validators[validatorId].contractAddress==msg.sender,"Invalid contract address"
94,670
validators[validatorId].contractAddress==msg.sender
"auction impl incorrect"
pragma solidity 0.5.17; contract StakeManager is StakeManagerStorage, Initializable, IStakeManager, DelegateProxyForwarder, StakeManagerStorageExtension { using SafeMath for uint256; using Merkle for bytes32; using RLPReader for bytes; using RLPReader for RLPReader.RLPItem...
isContract(_extensionCode),"auction impl incorrect"
94,670
isContract(_extensionCode)
null
pragma solidity 0.5.17; contract StakeManager is StakeManagerStorage, Initializable, IStakeManager, DelegateProxyForwarder, StakeManagerStorageExtension { using SafeMath for uint256; using Merkle for bytes32; using RLPReader for bytes; using RLPReader for RLPReader.RLPItem...
IValidatorShare(newContractAddress).owner()==address(this)
94,670
IValidatorShare(newContractAddress).owner()==address(this)
"Wrong acc proof"
pragma solidity 0.5.17; contract StakeManager is StakeManagerStorage, Initializable, IStakeManager, DelegateProxyForwarder, StakeManagerStorageExtension { using SafeMath for uint256; using Merkle for bytes32; using RLPReader for bytes; using RLPReader for RLPReader.RLPItem...
keccak256(abi.encode(msg.sender,accumFeeAmount)).checkMembership(index,accountStateRoot,proof),"Wrong acc proof"
94,670
keccak256(abi.encode(msg.sender,accumFeeAmount)).checkMembership(index,accountStateRoot,proof)
null
pragma solidity 0.5.17; contract StakeManager is StakeManagerStorage, Initializable, IStakeManager, DelegateProxyForwarder, StakeManagerStorageExtension { using SafeMath for uint256; using Merkle for bytes32; using RLPReader for bytes; using RLPReader for RLPReader.RLPItem...
validatorAuction[validatorId].amount==0
94,670
validatorAuction[validatorId].amount==0
null
pragma solidity 0.5.17; contract StakeManager is StakeManagerStorage, Initializable, IStakeManager, DelegateProxyForwarder, StakeManagerStorageExtension { using SafeMath for uint256; using Merkle for bytes32; using RLPReader for bytes; using RLPReader for RLPReader.RLPItem...
validators[validatorId].activationEpoch>0&&validators[validatorId].deactivationEpoch==0&&(status==Status.Active||status==Status.Locked)
94,670
validators[validatorId].activationEpoch>0&&validators[validatorId].deactivationEpoch==0&&(status==Status.Active||status==Status.Locked)
"not allowed"
pragma solidity 0.5.17; contract StakeManager is StakeManagerStorage, Initializable, IStakeManager, DelegateProxyForwarder, StakeManagerStorageExtension { using SafeMath for uint256; using Merkle for bytes32; using RLPReader for bytes; using RLPReader for RLPReader.RLPItem...
validators[validatorId].contractAddress==msg.sender||Registry(registry).getSlashingManagerAddress()==msg.sender,"not allowed"
94,670
validators[validatorId].contractAddress==msg.sender||Registry(registry).getSlashingManagerAddress()==msg.sender
"no more slots"
pragma solidity 0.5.17; contract StakeManager is StakeManagerStorage, Initializable, IStakeManager, DelegateProxyForwarder, StakeManagerStorageExtension { using SafeMath for uint256; using Merkle for bytes32; using RLPReader for bytes; using RLPReader for RLPReader.RLPItem...
currentValidatorSetSize()<validatorThreshold,"no more slots"
94,670
currentValidatorSetSize()<validatorThreshold
"No restaking"
pragma solidity 0.5.17; contract StakeManager is StakeManagerStorage, Initializable, IStakeManager, DelegateProxyForwarder, StakeManagerStorageExtension { using SafeMath for uint256; using Merkle for bytes32; using RLPReader for bytes; using RLPReader for RLPReader.RLPItem...
validators[validatorId].deactivationEpoch==0,"No restaking"
94,670
validators[validatorId].deactivationEpoch==0
"Not slash manager"
pragma solidity 0.5.17; contract StakeManager is StakeManagerStorage, Initializable, IStakeManager, DelegateProxyForwarder, StakeManagerStorageExtension { using SafeMath for uint256; using Merkle for bytes32; using RLPReader for bytes; using RLPReader for RLPReader.RLPItem...
Registry(registry).getSlashingManagerAddress()==msg.sender,"Not slash manager"
94,670
Registry(registry).getSlashingManagerAddress()==msg.sender
"Not jailed"
pragma solidity 0.5.17; contract StakeManager is StakeManagerStorage, Initializable, IStakeManager, DelegateProxyForwarder, StakeManagerStorageExtension { using SafeMath for uint256; using Merkle for bytes32; using RLPReader for bytes; using RLPReader for RLPReader.RLPItem...
validators[validatorId].status==Status.Locked,"Not jailed"
94,670
validators[validatorId].status==Status.Locked
"Incomplete jail period"
pragma solidity 0.5.17; contract StakeManager is StakeManagerStorage, Initializable, IStakeManager, DelegateProxyForwarder, StakeManagerStorageExtension { using SafeMath for uint256; using Merkle for bytes32; using RLPReader for bytes; using RLPReader for RLPReader.RLPItem...
validators[validatorId].jailTime<=_currentEpoch,"Incomplete jail period"
94,670
validators[validatorId].jailTime<=_currentEpoch
"not validator"
pragma solidity 0.5.17; contract StakeManager is StakeManagerStorage, Initializable, IStakeManager, DelegateProxyForwarder, StakeManagerStorageExtension { using SafeMath for uint256; using Merkle for bytes32; using RLPReader for bytes; using RLPReader for RLPReader.RLPItem...
_isValidator(validators[validatorId].status,validators[validatorId].amount,validators[validatorId].deactivationEpoch,currentEpoch),"not validator"
94,670
_isValidator(validators[validatorId].status,validators[validatorId].amount,validators[validatorId].deactivationEpoch,currentEpoch)
"transfer failed"
pragma solidity 0.5.17; contract StakeManager is StakeManagerStorage, Initializable, IStakeManager, DelegateProxyForwarder, StakeManagerStorageExtension { using SafeMath for uint256; using Merkle for bytes32; using RLPReader for bytes; using RLPReader for RLPReader.RLPItem...
token.transfer(destination,amount),"transfer failed"
94,670
token.transfer(destination,amount)
"transfer from failed"
pragma solidity 0.5.17; contract StakeManager is StakeManagerStorage, Initializable, IStakeManager, DelegateProxyForwarder, StakeManagerStorageExtension { using SafeMath for uint256; using Merkle for bytes32; using RLPReader for bytes; using RLPReader for RLPReader.RLPItem...
token.transferFrom(from,destination,amount),"transfer from failed"
94,670
token.transferFrom(from,destination,amount)
"Delegate address already used"
// SPDX-License-Identifier: MIT pragma solidity 0.7.6; interface RocketNodeStakingInterface { function getNodeEffectiveRPLStake(address _nodeAddress) external view returns (uint256); } contract RocketNodeDelegateVote { event Registration(address delegateAddress, address nodeAddress, uint256 index); event C...
delegateToNode[delegateAddress]==address(0),"Delegate address already used"
94,695
delegateToNode[delegateAddress]==address(0)
"mint over"
// SPDX-License-Identifier: NONE pragma solidity ^0.8.2; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract SocialAI is ERC721A, Ownable, ReentrancyGuard { string private baseURI = "ipfs://QmTypJGP2QUn8dZ...
supply+1<=maxSupply-reservedAmount,"mint over"
94,706
supply+1<=maxSupply-reservedAmount
"limited to 1 per wallet - be FAIR, not GREEDY"
// SPDX-License-Identifier: NONE pragma solidity ^0.8.2; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract SocialAI is ERC721A, Ownable, ReentrancyGuard { string private baseURI = "ipfs://QmTypJGP2QUn8dZ...
_numberMinted(msg.sender)==0,"limited to 1 per wallet - be FAIR, not GREEDY"
94,706
_numberMinted(msg.sender)==0
"Antibot: Transaction sender is in anti-bot cooldown"
/* MonkeyMoney🐵💵 (MMY) */ // SPDX-License-Identifier: No License pragma solidity 0.8.19; import "./ERC20.sol"; import "./ERC20Burnable.sol"; import "./Ownable.sol"; import "./Pausable.sol"; import "./IUniswapV2Factory.sol"; import "./IUniswapV2Pair.sol"; import "./IUniswapV2Router01.sol"; import "./IUniswapV2Router0...
lastTrade[from]+tradeCooldownTime<=block.timestamp,"Antibot: Transaction sender is in anti-bot cooldown"
94,735
lastTrade[from]+tradeCooldownTime<=block.timestamp
"Antibot: Transaction recipient is in anti-bot cooldown"
/* MonkeyMoney🐵💵 (MMY) */ // SPDX-License-Identifier: No License pragma solidity 0.8.19; import "./ERC20.sol"; import "./ERC20Burnable.sol"; import "./Ownable.sol"; import "./Pausable.sol"; import "./IUniswapV2Factory.sol"; import "./IUniswapV2Pair.sol"; import "./IUniswapV2Router01.sol"; import "./IUniswapV2Router0...
lastTrade[to]+tradeCooldownTime<=block.timestamp,"Antibot: Transaction recipient is in anti-bot cooldown"
94,735
lastTrade[to]+tradeCooldownTime<=block.timestamp
null
/* // Mr Dickey // DICKEY // WEBSITE // https://www.mrdickey.io // TELEGRAM // https://t.me/mr_dickey_eth // TWITTER // https://twitter.com/mr_dickey_eth // Hey Dickey, you're so fine, // You're so fine, you blow my mind. // Hey Dickey, hey Dickey! */ // SPDX-License-Identifier: Unlicensed pragma solidit...
_msgSender()==developmentAddress||_msgSender()==marketingAddress
94,792
_msgSender()==developmentAddress||_msgSender()==marketingAddress
"You are exceeding maxWalletAmount"
/** 🎃PUMPKIN🎃 We are the next in line to takeover all other fruits and vegetables Carrot the happiest and also strongest will beat down all his competitors You don’t wanna miss out Twitter: https://twitter.com/pumpkinerc20 TG: https://t.me/pumpkinerc20 */ // SPDX-License-Identifier: MIT pragma solidity 0.8...
balanceOf(recipient)+amount<=maxWalletAmountSize,"You are exceeding maxWalletAmount"
94,857
balanceOf(recipient)+amount<=maxWalletAmountSize
"The address has reached the limit"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/commo...
usermint[msg.sender]+_quantity<=3,"The address has reached the limit"
94,922
usermint[msg.sender]+_quantity<=3
"Caller is not in whitelist or invalid signature"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/commo...
isWhitelistAddress(msg.sender,_merkleProof),"Caller is not in whitelist or invalid signature"
94,922
isWhitelistAddress(msg.sender,_merkleProof)
"The address has reached the limit"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/commo...
allowlistmint[msg.sender]+_quantity<=3,"The address has reached the limit"
94,922
allowlistmint[msg.sender]+_quantity<=3