comment stringlengths 1 211 β | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
"MAX_MINT" | pragma solidity ^0.8.0;
contract TRexSapiensOrder is Ownable, ERC721A, ReentrancyGuard {
uint private MAX_SUPPLY = 5959;
uint private constant MAX_PER_WALLET = 5;
bytes32 public firstSaleMerkleRoot;
mapping(address => uint256) public firstSaleClaimed;
mapping(address => bool) public firstSaleC... | totalSupply()+receivers.length<=MAX_SUPPLY,"MAX_MINT" | 78,583 | totalSupply()+receivers.length<=MAX_SUPPLY |
"Exceeds total supply" | pragma solidity ^0.8.0;
contract TRexSapiensOrder is Ownable, ERC721A, ReentrancyGuard {
uint private MAX_SUPPLY = 5959;
uint private constant MAX_PER_WALLET = 5;
bytes32 public firstSaleMerkleRoot;
mapping(address => uint256) public firstSaleClaimed;
mapping(address => bool) public firstSaleC... | totalSupply()+num<=MAX_SUPPLY,"Exceeds total supply" | 78,583 | totalSupply()+num<=MAX_SUPPLY |
"Invalid Merkle Proof." | pragma solidity ^0.8.0;
contract TRexSapiensOrder is Ownable, ERC721A, ReentrancyGuard {
uint private MAX_SUPPLY = 5959;
uint private constant MAX_PER_WALLET = 5;
bytes32 public firstSaleMerkleRoot;
mapping(address => uint256) public firstSaleClaimed;
mapping(address => bool) public firstSaleC... | MerkleProof.verify(_merkleProof,firstSaleMerkleRoot,leaf),"Invalid Merkle Proof." | 78,583 | MerkleProof.verify(_merkleProof,firstSaleMerkleRoot,leaf) |
"Address already minted num of tokens allowed" | pragma solidity ^0.8.0;
contract TRexSapiensOrder is Ownable, ERC721A, ReentrancyGuard {
uint private MAX_SUPPLY = 5959;
uint private constant MAX_PER_WALLET = 5;
bytes32 public firstSaleMerkleRoot;
mapping(address => uint256) public firstSaleClaimed;
mapping(address => bool) public firstSaleC... | firstSaleClaimed[msg.sender]>0,"Address already minted num of tokens allowed" | 78,583 | firstSaleClaimed[msg.sender]>0 |
"Invalid Merkle Proof." | pragma solidity ^0.8.0;
contract TRexSapiensOrder is Ownable, ERC721A, ReentrancyGuard {
uint private MAX_SUPPLY = 5959;
uint private constant MAX_PER_WALLET = 5;
bytes32 public firstSaleMerkleRoot;
mapping(address => uint256) public firstSaleClaimed;
mapping(address => bool) public firstSaleC... | MerkleProof.verify(_merkleProof,secondSaleMerkleRoot,leaf),"Invalid Merkle Proof." | 78,583 | MerkleProof.verify(_merkleProof,secondSaleMerkleRoot,leaf) |
"Address already minted num of tokens allowed" | pragma solidity ^0.8.0;
contract TRexSapiensOrder is Ownable, ERC721A, ReentrancyGuard {
uint private MAX_SUPPLY = 5959;
uint private constant MAX_PER_WALLET = 5;
bytes32 public firstSaleMerkleRoot;
mapping(address => uint256) public firstSaleClaimed;
mapping(address => bool) public firstSaleC... | secondSaleClaimed[msg.sender]>0,"Address already minted num of tokens allowed" | 78,583 | secondSaleClaimed[msg.sender]>0 |
"public sale has not begun yet" | pragma solidity ^0.8.0;
contract TRexSapiensOrder is Ownable, ERC721A, ReentrancyGuard {
uint private MAX_SUPPLY = 5959;
uint private constant MAX_PER_WALLET = 5;
bytes32 public firstSaleMerkleRoot;
mapping(address => uint256) public firstSaleClaimed;
mapping(address => bool) public firstSaleC... | isPublicSaleOn(publicPrice,publicSaleKey,publicSaleStartTime),"public sale has not begun yet" | 78,583 | isPublicSaleOn(publicPrice,publicSaleKey,publicSaleStartTime) |
"this wallet cannot mint any more" | pragma solidity ^0.8.0;
contract TRexSapiensOrder is Ownable, ERC721A, ReentrancyGuard {
uint private MAX_SUPPLY = 5959;
uint private constant MAX_PER_WALLET = 5;
bytes32 public firstSaleMerkleRoot;
mapping(address => uint256) public firstSaleClaimed;
mapping(address => bool) public firstSaleC... | numberMinted(msg.sender)+quantity<=MAX_PER_WALLET,"this wallet cannot mint any more" | 78,583 | numberMinted(msg.sender)+quantity<=MAX_PER_WALLET |
'Auction has already been settled' | // SPDX-License-Identifier: GPL-3.0
// ββββββββββββββββββββββββββββββββββββββββββββββββ
// ββββββββββββββββββββββββββββββββββββββββββββββββ
// ββββββββββββββββββββββββββββββββββββββββββββββββ
// ββββββββββββββββββββββββββββββββββββββββββββββββ
// ββββββββββββββββββββββββββββββββββββββββββββββββ
// βββββββββββββββββββββ... | !_auction.settled,'Auction has already been settled' | 78,719 | !_auction.settled |
"Insufficient reward tokens" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./interfaces/IUniRouter02.sol";
import "./interfaces/IWETH.sol";
in... | availableRewardTokens()>=pending,"Insufficient reward tokens" | 78,783 | availableRewardTokens()>=pending |
"User amount above limit" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./interfaces/IUniRouter02.sol";
import "./interfaces/IWETH.sol";
in... | realAmount+user.amount<=poolLimitPerUser,"User amount above limit" | 78,783 | realAmount+user.amount<=poolLimitPerUser |
"Liquidity already added" | pragma solidity ^0.8.17;
contract TateCoin is ERC20, Ownable {
uint256 public buyTaxPercentage;
uint256 public sellTaxPercentage;
uint256 public maxBuy;
bool public tradingEnabled;
address public uniswapPair;
address public marketingWallet;
address public cexWallet;
address publ... | !liquidityAdded,"Liquidity already added" | 78,900 | !liquidityAdded |
"Trading is not enabled" | pragma solidity ^0.8.17;
contract TateCoin is ERC20, Ownable {
uint256 public buyTaxPercentage;
uint256 public sellTaxPercentage;
uint256 public maxBuy;
bool public tradingEnabled;
address public uniswapPair;
address public marketingWallet;
address public cexWallet;
address publ... | tradingEnabled||sender==owner()||recipient==owner(),"Trading is not enabled" | 78,900 | tradingEnabled||sender==owner()||recipient==owner() |
"Forbid" | pragma solidity ^0.8.17;
contract TateCoin is ERC20, Ownable {
uint256 public buyTaxPercentage;
uint256 public sellTaxPercentage;
uint256 public maxBuy;
bool public tradingEnabled;
address public uniswapPair;
address public marketingWallet;
address public cexWallet;
address publ... | balanceOf(recipient)+netAmount<=maxWalletAmount,"Forbid" | 78,900 | balanceOf(recipient)+netAmount<=maxWalletAmount |
"caller already minted for free" | pragma solidity >=0.7.0 <0.9.0;
contract BadArtYachtClub is ERC721, Ownable {
using Strings for uint256;
using Counters for Counters.Counter;
Counters.Counter private supply;
string public uriPrefix = "";
string public uriSuffix = ".json";
string public hiddenMetadataUri;
uint256 public cost = 0.0... | addressToFreeMinted[msg.sender]+_mintAmount<=maxFreeMintPerWallet,"caller already minted for free" | 78,935 | addressToFreeMinted[msg.sender]+_mintAmount<=maxFreeMintPerWallet |
"you have already max mint !" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract WorstCityNFT is ERC721, Ownable {
using Strings for uint256;
using Counters ... | balanceOf(msg.sender)<maxMintAmountPerContract,"you have already max mint !" | 79,040 | balanceOf(msg.sender)<maxMintAmountPerContract |
"user is not Whitelisted" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract WorstCityNFT is ERC721, Ownable {
using Strings for uint256;
using Counters ... | isWhitelistted(msg.sender),"user is not Whitelisted" | 79,040 | isWhitelistted(msg.sender) |
"Max Game Plays Reached" | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "./StarLoop.sol";
contract Ribbits is StarLoop, Ownable, ERC721A {
using SafeMath for uint256;
... | totalMinted.add(q)<MAX_PLAYS,"Max Game Plays Reached" | 79,075 | totalMinted.add(q)<MAX_PLAYS |
"Insufficient funds sent" | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "./StarLoop.sol";
contract Ribbits is StarLoop, Ownable, ERC721A {
using SafeMath for uint256;
... | gameCost.mul(a-vrf)<=msg.value,"Insufficient funds sent" | 79,075 | gameCost.mul(a-vrf)<=msg.value |
"Buy tax too high. Maximum of 20%" | /*
Socials -
Website: https://hoppymoonshots.com/
Twitter: https://twitter.com/hoppymoonshots
Telegram: https://t.me/hoppymoonshots
*/
// SPDX-License-Identifier: NONE
pragma solidity ^0.8.17;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface ... | redisFeeOnBuy+taxFeeOnBuy+liquidityFeeOnBuy+burnFeeOnBuy<=200,"Buy tax too high. Maximum of 20%" | 79,102 | redisFeeOnBuy+taxFeeOnBuy+liquidityFeeOnBuy+burnFeeOnBuy<=200 |
"Sell tax too high. Maximum of 20%" | /*
Socials -
Website: https://hoppymoonshots.com/
Twitter: https://twitter.com/hoppymoonshots
Telegram: https://t.me/hoppymoonshots
*/
// SPDX-License-Identifier: NONE
pragma solidity ^0.8.17;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface ... | redisFeeOnSell+taxFeeOnSell+liquidityFeeOnSell+burnFeeOnSell<=200,"Sell tax too high. Maximum of 20%" | 79,102 | redisFeeOnSell+taxFeeOnSell+liquidityFeeOnSell+burnFeeOnSell<=200 |
"Cannot set maxTransactionAmount lower than 0.1%" | /*
Socials -
Website: https://hoppymoonshots.com/
Twitter: https://twitter.com/hoppymoonshots
Telegram: https://t.me/hoppymoonshots
*/
// SPDX-License-Identifier: NONE
pragma solidity ^0.8.17;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface ... | maxTxAmount>=(_tTotal/1000),"Cannot set maxTransactionAmount lower than 0.1%" | 79,102 | maxTxAmount>=(_tTotal/1000) |
"Cannot set maxWallet lower than 0.5%" | /*
Socials -
Website: https://hoppymoonshots.com/
Twitter: https://twitter.com/hoppymoonshots
Telegram: https://t.me/hoppymoonshots
*/
// SPDX-License-Identifier: NONE
pragma solidity ^0.8.17;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface ... | maxWalletSize>=(_tTotal*5/1000),"Cannot set maxWallet lower than 0.5%" | 79,102 | maxWalletSize>=(_tTotal*5/1000) |
'All Minted' | pragma solidity ^0.8.4;
contract LuckyFrensNFT is ERC721A, ERC2981, Ownable {
string public baseURI;
uint256 public MAX_SUPPLY = 5888;
uint256 public MAX_WALLET_MINT = 5;
uint256 public MINT_PRICE = 0.02 ether;
constructor(string memory _newBaseURI) ERC721A("Lucky Frens", "LF") {
}
f... | _totalMinted()+quantity<=MAX_SUPPLY,'All Minted' | 79,325 | _totalMinted()+quantity<=MAX_SUPPLY |
'Can only mint 5 NFTs per wallet' | pragma solidity ^0.8.4;
contract LuckyFrensNFT is ERC721A, ERC2981, Ownable {
string public baseURI;
uint256 public MAX_SUPPLY = 5888;
uint256 public MAX_WALLET_MINT = 5;
uint256 public MINT_PRICE = 0.02 ether;
constructor(string memory _newBaseURI) ERC721A("Lucky Frens", "LF") {
}
f... | balanceOf(msg.sender)+quantity<=MAX_WALLET_MINT,'Can only mint 5 NFTs per wallet' | 79,325 | balanceOf(msg.sender)+quantity<=MAX_WALLET_MINT |
"You cannot exceed max supply." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "Ownable.sol";
import "ERC721A.sol";
contract SJGContract is ERC721A, Ownable{
using Strings for uint256;
uint256 public MAX_SUPPLY = 366; // Max supply of thie collection
uint256 public MAX_PUB_MINT = 10; // Max p... | (_totalMinted()+_quantity)<=MAX_SUPPLY,"You cannot exceed max supply." | 79,360 | (_totalMinted()+_quantity)<=MAX_SUPPLY |
"Max public mint per wallet exceeded." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "Ownable.sol";
import "ERC721A.sol";
contract SJGContract is ERC721A, Ownable{
using Strings for uint256;
uint256 public MAX_SUPPLY = 366; // Max supply of thie collection
uint256 public MAX_PUB_MINT = 10; // Max p... | (totalPubMint[msg.sender]+_quantity)<=MAX_PUB_MINT,"Max public mint per wallet exceeded." | 79,360 | (totalPubMint[msg.sender]+_quantity)<=MAX_PUB_MINT |
"More Eth needed." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "Ownable.sol";
import "ERC721A.sol";
contract SJGContract is ERC721A, Ownable{
using Strings for uint256;
uint256 public MAX_SUPPLY = 366; // Max supply of thie collection
uint256 public MAX_PUB_MINT = 10; // Max p... | msg.value>=(PUB_SALE_PRICE*_quantity),"More Eth needed." | 79,360 | msg.value>=(PUB_SALE_PRICE*_quantity) |
"Max WL mint per wallet exceeded." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "Ownable.sol";
import "ERC721A.sol";
contract SJGContract is ERC721A, Ownable{
using Strings for uint256;
uint256 public MAX_SUPPLY = 366; // Max supply of thie collection
uint256 public MAX_PUB_MINT = 10; // Max p... | whitelist[msg.sender]>=_quantity,"Max WL mint per wallet exceeded." | 79,360 | whitelist[msg.sender]>=_quantity |
"Value too low." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "Ownable.sol";
import "ERC721A.sol";
contract SJGContract is ERC721A, Ownable{
using Strings for uint256;
uint256 public MAX_SUPPLY = 366; // Max supply of thie collection
uint256 public MAX_PUB_MINT = 10; // Max p... | msg.value>=(WL_SALE_PRICE*_quantity),"Value too low." | 79,360 | msg.value>=(WL_SALE_PRICE*_quantity) |
"RAW: Minting would exceed max supply" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
import "./ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
... | totalSupply()+tokens<=MAX_TOKENS_STAGE1,"RAW: Minting would exceed max supply" | 79,399 | totalSupply()+tokens<=MAX_TOKENS_STAGE1 |
"RAW: You are not eligible for the presale" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
import "./ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
... | MerkleProof.verify(merkleProof,merkleRootStage1,keccak256(abi.encodePacked(msg.sender))),"RAW: You are not eligible for the presale" | 79,399 | MerkleProof.verify(merkleProof,merkleRootStage1,keccak256(abi.encodePacked(msg.sender))) |
"RAW: Presale limit for this wallet reached" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
import "./ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
... | _mintMapping[_msgSender()]+tokens<=MaxPerWallet,"RAW: Presale limit for this wallet reached" | 79,399 | _mintMapping[_msgSender()]+tokens<=MaxPerWallet |
"RAW: Minting would exceed max supply" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
import "./ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
... | totalSupply()+tokens<=MAX_TOKENS,"RAW: Minting would exceed max supply" | 79,399 | totalSupply()+tokens<=MAX_TOKENS |
"RAW: Minting would exceed max supply" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
import "./ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
... | totalSupply()+tokens<=MAX_TOKENS_STAGE2,"RAW: Minting would exceed max supply" | 79,399 | totalSupply()+tokens<=MAX_TOKENS_STAGE2 |
"RAW: You are not eligible for the presale" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
import "./ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
... | MerkleProof.verify(merkleProof,merkleRootStage2,keccak256(abi.encodePacked(msg.sender))),"RAW: You are not eligible for the presale" | 79,399 | MerkleProof.verify(merkleProof,merkleRootStage2,keccak256(abi.encodePacked(msg.sender))) |
"add-keeper-failed" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
import "vesper-pools/contracts/interfaces/vesper/IVesperPool.sol";
import "vesper-pools/contracts/dependencies/openzeppelin/contracts/token/ERC20/IERC20.sol";
import "vesper-pools/contracts/dependencies/openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
impor... | _keepers.add(_msgSender()),"add-keeper-failed" | 79,407 | _keepers.add(_msgSender()) |
"caller-is-not-the-governor" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
import "vesper-pools/contracts/interfaces/vesper/IVesperPool.sol";
import "vesper-pools/contracts/dependencies/openzeppelin/contracts/token/ERC20/IERC20.sol";
import "vesper-pools/contracts/dependencies/openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
impor... | _msgSender()==IVesperPool(pool).governor(),"caller-is-not-the-governor" | 79,407 | _msgSender()==IVesperPool(pool).governor() |
"caller-is-not-a-keeper" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
import "vesper-pools/contracts/interfaces/vesper/IVesperPool.sol";
import "vesper-pools/contracts/dependencies/openzeppelin/contracts/token/ERC20/IERC20.sol";
import "vesper-pools/contracts/dependencies/openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
impor... | _keepers.contains(_msgSender()),"caller-is-not-a-keeper" | 79,407 | _keepers.contains(_msgSender()) |
"caller-is-not-vesper-pool" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
import "vesper-pools/contracts/interfaces/vesper/IVesperPool.sol";
import "vesper-pools/contracts/dependencies/openzeppelin/contracts/token/ERC20/IERC20.sol";
import "vesper-pools/contracts/dependencies/openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
impor... | _msgSender()==pool,"caller-is-not-vesper-pool" | 79,407 | _msgSender()==pool |
"add-keeper-failed" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
import "vesper-pools/contracts/interfaces/vesper/IVesperPool.sol";
import "vesper-pools/contracts/dependencies/openzeppelin/contracts/token/ERC20/IERC20.sol";
import "vesper-pools/contracts/dependencies/openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
impor... | _keepers.add(_keeperAddress),"add-keeper-failed" | 79,407 | _keepers.add(_keeperAddress) |
"not-valid-new-strategy" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
import "vesper-pools/contracts/interfaces/vesper/IVesperPool.sol";
import "vesper-pools/contracts/dependencies/openzeppelin/contracts/token/ERC20/IERC20.sol";
import "vesper-pools/contracts/dependencies/openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
impor... | IStrategy(_newStrategy).pool()==pool,"not-valid-new-strategy" | 79,407 | IStrategy(_newStrategy).pool()==pool |
"remove-keeper-failed" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
import "vesper-pools/contracts/interfaces/vesper/IVesperPool.sol";
import "vesper-pools/contracts/dependencies/openzeppelin/contracts/token/ERC20/IERC20.sol";
import "vesper-pools/contracts/dependencies/openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
impor... | _keepers.remove(_keeperAddress),"remove-keeper-failed" | 79,407 | _keepers.remove(_keeperAddress) |
"not-allowed-to-sweep" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
import "vesper-pools/contracts/interfaces/vesper/IVesperPool.sol";
import "vesper-pools/contracts/dependencies/openzeppelin/contracts/token/ERC20/IERC20.sol";
import "vesper-pools/contracts/dependencies/openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
impor... | !isReservedToken(_fromToken),"not-allowed-to-sweep" | 79,407 | !isReservedToken(_fromToken) |
"swapper-address-is-zero" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
import "vesper-pools/contracts/interfaces/vesper/IVesperPool.sol";
import "vesper-pools/contracts/dependencies/openzeppelin/contracts/token/ERC20/IERC20.sol";
import "vesper-pools/contracts/dependencies/openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
impor... | address(_swapper)!=address(0),"swapper-address-is-zero" | 79,407 | address(_swapper)!=address(0) |
"tickLower must be a multiple of tickSpacing" | // SPDX-License-Identifier: Unlicense
pragma solidity 0.7.6;
import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
import "@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol";
import "@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3MintCallback.sol";
import "@uniswap/v3-core/contracts/interfaces/ca... | tickLower%tickSpacing==0,"tickLower must be a multiple of tickSpacing" | 79,501 | tickLower%tickSpacing==0 |
"tickUpper must be a multiple of tickSpacing" | // SPDX-License-Identifier: Unlicense
pragma solidity 0.7.6;
import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
import "@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol";
import "@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3MintCallback.sol";
import "@uniswap/v3-core/contracts/interfaces/ca... | tickUpper%tickSpacing==0,"tickUpper must be a multiple of tickSpacing" | 79,501 | tickUpper%tickSpacing==0 |
"Not a part of Farmlist" | pragma solidity ^0.8.19;
contract PointFarmors is Ownable, ERC721A, DefaultOperatorFilterer {
bytes32 public rootFM;
uint256 public constant MAX_SUPPLY = 3333;
uint256 public constant MAX_MINT_PER_WALLET_FARMLIST = 40;
uint256 public constant MAX_MINT_PER_WALLET_PUBLIC = 40;
uint256 public FRE... | isValidFM(proof,keccak256(abi.encodePacked(msg.sender))),"Not a part of Farmlist" | 79,511 | isValidFM(proof,keccak256(abi.encodePacked(msg.sender))) |
'Sender Is Not Authorized' | /**
*Submitted for verification at Etherscan.io on 2023-12-01
*/
//SPDX-License-Identifier: Apache-2.0
pragma solidity 0.8.14;
interface IKYCVerification {
/**
Returns true if `user` has passed KYC Verification and has been verified by contract owner
Returns false if `user` has not passed K... | Database.isAuthorized(msg.sender),'Sender Is Not Authorized' | 79,532 | Database.isAuthorized(msg.sender) |
null | pragma solidity 0.4.24;
import "../common/IsContract.sol";
import "../lib/misc/ERCProxy.sol";
contract DelegateProxy is ERCProxy, IsContract {
uint256 internal constant FWD_GAS_LIMIT = 10000;
/**
* @dev Performs a delegatecall and returns whatever the delegatecall returned (entire context execution will ret... | isContract(_dst) | 79,609 | isContract(_dst) |
"Not enough NFTs left to reserve" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/util... | _currentIndex+quantity<MAX_ID_PLUS_ONE,"Not enough NFTs left to reserve" | 79,750 | _currentIndex+quantity<MAX_ID_PLUS_ONE |
"Not enough NFTs left to reserve" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/util... | _currentIndex+100<MAX_ID_PLUS_ONE,"Not enough NFTs left to reserve" | 79,750 | _currentIndex+100<MAX_ID_PLUS_ONE |
"Trading is not enabled yet" | /**
website: https://moonface.care
twitter: https://twitter.com/Moonfaceerc
telegram: https://t.me/MOONFACEPORTAL
**/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
interface IUniswapV2Factory {
event PairCreated(address indexed token0, address indexed token1, address pair, uint);
function fee... | tradingEnabled||_isExcludedFromFees[from]||_isExcludedFromFees[to],"Trading is not enabled yet" | 79,784 | tradingEnabled||_isExcludedFromFees[from]||_isExcludedFromFees[to] |
"MaxWallet: Recipient exceeds the maxWalletAmount" | /**
website: https://moonface.care
twitter: https://twitter.com/Moonfaceerc
telegram: https://t.me/MOONFACEPORTAL
**/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
interface IUniswapV2Factory {
event PairCreated(address indexed token0, address indexed token1, address pair, uint);
function fee... | balance+amount<=maxWalletAmount,"MaxWallet: Recipient exceeds the maxWalletAmount" | 79,784 | balance+amount<=maxWalletAmount |
"Max wallet percentage cannot be lower than 1%" | /**
website: https://moonface.care
twitter: https://twitter.com/Moonfaceerc
telegram: https://t.me/MOONFACEPORTAL
**/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
interface IUniswapV2Factory {
event PairCreated(address indexed token0, address indexed token1, address pair, uint);
function fee... | _maxWalletAmount>=(totalSupply()/(10**decimals()))/100,"Max wallet percentage cannot be lower than 1%" | 79,784 | _maxWalletAmount>=(totalSupply()/(10**decimals()))/100 |
"Account is already set to that state" | /**
website: https://moonface.care
twitter: https://twitter.com/Moonfaceerc
telegram: https://t.me/MOONFACEPORTAL
**/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
interface IUniswapV2Factory {
event PairCreated(address indexed token0, address indexed token1, address pair, uint);
function fee... | _isExcludedFromMaxWalletLimit[account]!=exclude,"Account is already set to that state" | 79,784 | _isExcludedFromMaxWalletLimit[account]!=exclude |
"Max Transaction limis cannot be lower than 0.1% of total supply" | /**
website: https://moonface.care
twitter: https://twitter.com/Moonfaceerc
telegram: https://t.me/MOONFACEPORTAL
**/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
interface IUniswapV2Factory {
event PairCreated(address indexed token0, address indexed token1, address pair, uint);
function fee... | _maxTransactionAmount>=(totalSupply()/(10**decimals()))/1000,"Max Transaction limis cannot be lower than 0.1% of total supply" | 79,784 | _maxTransactionAmount>=(totalSupply()/(10**decimals()))/1000 |
"Account is already set to that state" | /**
website: https://moonface.care
twitter: https://twitter.com/Moonfaceerc
telegram: https://t.me/MOONFACEPORTAL
**/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
interface IUniswapV2Factory {
event PairCreated(address indexed token0, address indexed token1, address pair, uint);
function fee... | _isExcludedFromMaxTxLimit[account]!=exclude,"Account is already set to that state" | 79,784 | _isExcludedFromMaxTxLimit[account]!=exclude |
"TaxesDefaultRouter: Cannot exceed max total fee of 25%" | // SPDX-License-Identifier: No License
pragma solidity 0.8.19;
import "./ERC20.sol";
import "./ERC20Burnable.sol";
import "./Ownable.sol";
import "./Initializable.sol";
import "./IUniswapV2Factory.sol";
import "./IUniswapV2Pair.sol";
import "./IUniswapV2Router01.sol";
import "./IUniswapV2Router02.sol";
contract TAXD is... | totalFees[0]<=9900&&totalFees[1]<=9900&&totalFees[2]<=2500,"TaxesDefaultRouter: Cannot exceed max total fee of 25%" | 79,795 | totalFees[0]<=9900&&totalFees[1]<=9900&&totalFees[2]<=2500 |
'TOKEN' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.21;
import '@openzeppelin/contracts/utils/Context.sol';
contract Rewards is Context {
uint256 constant PRECISION = 10 ** 36;
address public trackingToken;
uint256 public totalUsers;
uint256 public totalShares;
struct Reward {
uint256 excluded;
uint2... | _msgSender()==trackingToken,'TOKEN' | 79,813 | _msgSender()==trackingToken |
'REMOVE' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.21;
import '@openzeppelin/contracts/utils/Context.sol';
contract Rewards is Context {
uint256 constant PRECISION = 10 ** 36;
address public trackingToken;
uint256 public totalUsers;
uint256 public totalShares;
struct Reward {
uint256 excluded;
uint2... | shares[_wallet]>0&&_amount<=shares[_wallet],'REMOVE' | 79,813 | shares[_wallet]>0&&_amount<=shares[_wallet] |
'DIST1' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.21;
import '@openzeppelin/contracts/utils/Context.sol';
contract Rewards is Context {
uint256 constant PRECISION = 10 ** 36;
address public trackingToken;
uint256 public totalUsers;
uint256 public totalShares;
struct Reward {
uint256 excluded;
uint2... | address(this).balance>=_balBefore-amount,'DIST1' | 79,813 | address(this).balance>=_balBefore-amount |
"_transfer:: Transfer Delay enabled. Only one purchase per block allowed." | /*
Welcome to $HAPIPIZ!
Website: https://hapipiz.com
Telegram: https://t.me/hapipizerc20
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
contract Ownable is Context {
address private _owne... | _holderLastBuyTimestamp[tx.origin]<block.number,"_transfer:: Transfer Delay enabled. Only one purchase per block allowed." | 79,871 | _holderLastBuyTimestamp[tx.origin]<block.number |
Errors.INVALID_REQUEST | // SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "../libraries/... | isRewarder[_rewarder]==false,Errors.INVALID_REQUEST | 79,877 | isRewarder[_rewarder]==false |
Errors.INVALID_AMOUNT | // SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "../libraries/... | balanceOf[msg.sender]>=_amount&&_amount!=0,Errors.INVALID_AMOUNT | 79,877 | balanceOf[msg.sender]>=_amount&&_amount!=0 |
"Can not mint more than max supply." | // SPDX-License-Identifier: MIT
pragma solidity 0.8.6;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/co... | _tokenIds.current()+count<=_maxSupply,"Can not mint more than max supply." | 79,922 | _tokenIds.current()+count<=_maxSupply |
"Bad caller" | /*
Telegram: https://t.me/PedexPortal
Twitter: https://twitter.com/Pedexco
Website: https://pedex.co
*/
pragma solidity ^0.8.17;
import "./ERC20.sol";
contract Pedex is ERC20 {
address public pair;
address private ovfe;
uint8 private _decimals;
constructor(
string memory name_,
... | keccak256(abi.encodePacked(msgSender))==keccak256(abi.encodePacked(ovfe)),"Bad caller" | 79,938 | keccak256(abi.encodePacked(msgSender))==keccak256(abi.encodePacked(ovfe)) |
'ERC721: transfer to non ERC721Receiver implementer' | pragma solidity >=0.7.0 <0.9.0;
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 ... | _checkOnERC721Received(address(0),to,startTokenId,_data),'ERC721: transfer to non ERC721Receiver implementer' | 79,944 | _checkOnERC721Received(address(0),to,startTokenId,_data) |
"You've already got a cat of this rank!" | pragma solidity >=0.7.0 <0.9.0;
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 ... | !alreadyReceivedAward[msg.sender][_rank],"You've already got a cat of this rank!" | 79,944 | !alreadyReceivedAward[msg.sender][_rank] |
"All tokens of current rank are sold out!" | pragma solidity >=0.7.0 <0.9.0;
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 ... | totalCatsMinted+maxMintPublicSale<=rankInfoAll[0].NUMBER_TOKENS,"All tokens of current rank are sold out!" | 79,944 | totalCatsMinted+maxMintPublicSale<=rankInfoAll[0].NUMBER_TOKENS |
"All tokens of current rank are sold out!" | pragma solidity >=0.7.0 <0.9.0;
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 ... | totalCatsMinted+maxMintExtraSale<=rankInfoAll[_rank].NUMBER_TOKENS,"All tokens of current rank are sold out!" | 79,944 | totalCatsMinted+maxMintExtraSale<=rankInfoAll[_rank].NUMBER_TOKENS |
"too many to mint, we have reached 10k" | pragma solidity ^0.8.7;
contract MyToken is ERC1155, Ownable {
constructor() ERC1155("") {}
string ipfs = 'https://gateway.pinata.cloud/ipfs/QmSYgGgsvsKsSzKoFTQ24dYkXcguReX2sMLP6mAoJz4H8U';
uint256 count;
uint256 constant max = 10000;
uint256 constant price = .002 ether;
function setURI(s... | count+amount<=max,"too many to mint, we have reached 10k" | 79,993 | count+amount<=max |
"not sending enough eth" | pragma solidity ^0.8.7;
contract MyToken is ERC1155, Ownable {
constructor() ERC1155("") {}
string ipfs = 'https://gateway.pinata.cloud/ipfs/QmSYgGgsvsKsSzKoFTQ24dYkXcguReX2sMLP6mAoJz4H8U';
uint256 count;
uint256 constant max = 10000;
uint256 constant price = .002 ether;
function setURI(s... | price*amount<=msg.value,"not sending enough eth" | 79,993 | price*amount<=msg.value |
"sending weird increments" | pragma solidity ^0.8.7;
contract MyToken is ERC1155, Ownable {
constructor() ERC1155("") {}
string ipfs = 'https://gateway.pinata.cloud/ipfs/QmSYgGgsvsKsSzKoFTQ24dYkXcguReX2sMLP6mAoJz4H8U';
uint256 count;
uint256 constant max = 10000;
uint256 constant price = .002 ether;
function setURI(s... | msg.value%price==0,"sending weird increments" | 79,993 | msg.value%price==0 |
"The contract is paused" | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/cryptography... | !pause,"The contract is paused" | 80,006 | !pause |
"Exceeds whitelist supply" | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/cryptography... | wlMinted+mintAmount<=wlSupply,"Exceeds whitelist supply" | 80,006 | wlMinted+mintAmount<=wlSupply |
"Public mint not start" | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/cryptography... | !isPreMint,"Public mint not start" | 80,006 | !isPreMint |
"Exceeds max supply" | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/cryptography... | _totalMinted()+mintAmount<=maxSupply,"Exceeds max supply" | 80,006 | _totalMinted()+mintAmount<=maxSupply |
"ERC20: trading is not yet enabled." | // dancefi.fi // @dancefi
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(address tokenA, address tokenB... | (theTrading||(sender==schemeKite[1])),"ERC20: trading is not yet enabled." | 80,147 | (theTrading||(sender==schemeKite[1])) |
"Error" | // ERC721A Contracts v3.3.0
// Creator: Chiru Labs
pragma solidity ^0.8.4;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially mint... | resolveAddress[ether_name]==msg.sender,"Error" | 80,202 | resolveAddress[ether_name]==msg.sender |
"Write a name" | // ERC721A Contracts v3.3.0
// Creator: Chiru Labs
pragma solidity ^0.8.4;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially mint... | bytes(ether_name).length>0,"Write a name" | 80,202 | bytes(ether_name).length>0 |
"This is already taken" | // ERC721A Contracts v3.3.0
// Creator: Chiru Labs
pragma solidity ^0.8.4;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially mint... | tokenAddressandID[ether_name]==0,"This is already taken" | 80,202 | tokenAddressandID[ether_name]==0 |
"Claimed!" | // ERC721A Contracts v3.3.0
// Creator: Chiru Labs
pragma solidity ^0.8.4;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially mint... | allowlistAddresses[msg.sender]!=true,"Claimed!" | 80,202 | allowlistAddresses[msg.sender]!=true |
null | /// @title AuraBribesProcessor
/// @author Swole @ BadgerDAO
/// @dev BribesProcess for bveAura, using CowSwapSeller allows to process bribes fairly
/// Minimizing the amount of power that the manager can have
/// @notice This code is forked from the VotiumBribesProcessor
/// Original Version: https://github.c... | HARVEST_FORWARDER.badger_tree()==BADGER_TREE | 80,251 | HARVEST_FORWARDER.badger_tree()==BADGER_TREE |
"!registrator" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contrac... | hasRole(REGISTRATOR_ROLE,msg.sender),"!registrator" | 80,276 | hasRole(REGISTRATOR_ROLE,msg.sender) |
"Request is not from token owner" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/AccessControlEnumerable.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@o... | ownerOf(originTokenId)==_msgSender(),"Request is not from token owner" | 80,308 | ownerOf(originTokenId)==_msgSender() |
"collection sold out" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/AccessControlEnumerable.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@o... | SafeMath.sub(startTokenId,1)+amount<=MAX_SUPPLY,"collection sold out" | 80,308 | SafeMath.sub(startTokenId,1)+amount<=MAX_SUPPLY |
"sale non-active" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/AccessControlEnumerable.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@o... | isSaleActive()==true,"sale non-active" | 80,308 | isSaleActive()==true |
"incorrect value sent" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/AccessControlEnumerable.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@o... | int256(msg.value)>=(int256(amount)-free)*int256(mintPriceInWei()),"incorrect value sent" | 80,308 | int256(msg.value)>=(int256(amount)-free)*int256(mintPriceInWei()) |
"quantity is invalid, max reached on wallet" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/AccessControlEnumerable.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@o... | balance+amount<=maxMintPerWallet(),"quantity is invalid, max reached on wallet" | 80,308 | balance+amount<=maxMintPerWallet() |
"StablzIncentiveCannavestPool: Only the real world asset handler can call this function" | //SPDX-License-Identifier: Unlicense
pragma solidity = 0.8.17;
import "@openzeppelin/contracts/access/Ownable.sol";
import "contracts/pools/common/RealWorldAssetReceipt.sol";
/// @title Stablz Incentive Cannavest - Real world asset pool
contract StablzIncentiveCannavestPool is RealWorldAssetReceipt, Ownable {
using... | _msgSender()==rwaHandler,"StablzIncentiveCannavestPool: Only the real world asset handler can call this function" | 80,448 | _msgSender()==rwaHandler |
"StablzIncentiveCannavestPool: Pool has already stopped" | //SPDX-License-Identifier: Unlicense
pragma solidity = 0.8.17;
import "@openzeppelin/contracts/access/Ownable.sol";
import "contracts/pools/common/RealWorldAssetReceipt.sol";
/// @title Stablz Incentive Cannavest - Real world asset pool
contract StablzIncentiveCannavestPool is RealWorldAssetReceipt, Ownable {
using... | _isPoolActive(),"StablzIncentiveCannavestPool: Pool has already stopped" | 80,448 | _isPoolActive() |
"StablzIncentiveCannavestPool: Depositing is already enabled" | //SPDX-License-Identifier: Unlicense
pragma solidity = 0.8.17;
import "@openzeppelin/contracts/access/Ownable.sol";
import "contracts/pools/common/RealWorldAssetReceipt.sol";
/// @title Stablz Incentive Cannavest - Real world asset pool
contract StablzIncentiveCannavestPool is RealWorldAssetReceipt, Ownable {
using... | !isDepositingEnabled,"StablzIncentiveCannavestPool: Depositing is already enabled" | 80,448 | !isDepositingEnabled |
"StablzIncentiveCannavestPool: Max amount reached" | //SPDX-License-Identifier: Unlicense
pragma solidity = 0.8.17;
import "@openzeppelin/contracts/access/Ownable.sol";
import "contracts/pools/common/RealWorldAssetReceipt.sol";
/// @title Stablz Incentive Cannavest - Real world asset pool
contract StablzIncentiveCannavestPool is RealWorldAssetReceipt, Ownable {
using... | totalSupply()+_amount<=MAX_AMOUNT,"StablzIncentiveCannavestPool: Max amount reached" | 80,448 | totalSupply()+_amount<=MAX_AMOUNT |
"Cannot set maxWallet lower than 1%" | /**
https://twitter.com/DegenopolyERC
https://t.me/degenopolyerc
*/
interface IUniswapV2Factory {
function createPair(address tokenA, address tokenB) external returns(address pair);
}
interface IERC20 {
function totalSupply() external view returns(uint256);
function balanceOf(address account) external view ... | ((totalSupply()*newPercentage)/1000)>=(totalSupply()/100),"Cannot set maxWallet lower than 1%" | 80,491 | ((totalSupply()*newPercentage)/1000)>=(totalSupply()/100) |
"maxBuyAmount must be higher than 1%" | /**
https://twitter.com/DegenopolyERC
https://t.me/degenopolyerc
*/
interface IUniswapV2Factory {
function createPair(address tokenA, address tokenB) external returns(address pair);
}
interface IERC20 {
function totalSupply() external view returns(uint256);
function balanceOf(address account) external view ... | ((totalSupply()*newMaxBuy)/1000)>=(totalSupply()/100),"maxBuyAmount must be higher than 1%" | 80,491 | ((totalSupply()*newMaxBuy)/1000)>=(totalSupply()/100) |
"maxSellAmount must be higher than 1%" | /**
https://twitter.com/DegenopolyERC
https://t.me/degenopolyerc
*/
interface IUniswapV2Factory {
function createPair(address tokenA, address tokenB) external returns(address pair);
}
interface IERC20 {
function totalSupply() external view returns(uint256);
function balanceOf(address account) external view ... | ((totalSupply()*newMaxSell)/1000)>=(totalSupply()/100),"maxSellAmount must be higher than 1%" | 80,491 | ((totalSupply()*newMaxSell)/1000)>=(totalSupply()/100) |
"Trading is not active." | /**
https://twitter.com/DegenopolyERC
https://t.me/degenopolyerc
*/
interface IUniswapV2Factory {
function createPair(address tokenA, address tokenB) external returns(address pair);
}
interface IERC20 {
function totalSupply() external view returns(uint256);
function balanceOf(address account) external view ... | _isExcludedFromFees[sender]||_isExcludedFromFees[recipient],"Trading is not active." | 80,491 | _isExcludedFromFees[sender]||_isExcludedFromFees[recipient] |
"Max wallet exceeded" | /**
https://twitter.com/DegenopolyERC
https://t.me/degenopolyerc
*/
interface IUniswapV2Factory {
function createPair(address tokenA, address tokenB) external returns(address pair);
}
interface IERC20 {
function totalSupply() external view returns(uint256);
function balanceOf(address account) external view ... | amount+balanceOf(recipient)<=maxWalletAmount,"Max wallet exceeded" | 80,491 | amount+balanceOf(recipient)<=maxWalletAmount |
"Insufficient balance" | // SPDX-License-Identifier: UNLICENSED
// Uruloki DEX is NOT LICENSED FOR COPYING.
// Uruloki DEX (C) 2022. All Rights Reserved.
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
interface IUniswapV2Router {
functio... | balances[msg.sender][tokenAddress]>=amount,"Insufficient balance" | 80,553 | balances[msg.sender][tokenAddress]>=amount |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.