comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"MAX PER WALLET IS 5"
pragma solidity ^0.8.4; contract LightTrails is ERC721A, ERC721AQueryable, DefaultOperatorFilterer, Owned { uint256 public FIRST_MINT_PRICE = 0 ether; uint256 public EXTRA_MINT_PRICE = 0 ether; uint256 public FIRST_MINT_PRICE_PUBLIC = 0.02 ether; uint256 public EXTRA_MINT_PRICE_PUBLIC = 0.02 ether; uint...
_totalMintedCount[msg.sender]+_quantity<MAX_PER_WALLET_PLUS_ONE,"MAX PER WALLET IS 5"
261,834
_totalMintedCount[msg.sender]+_quantity<MAX_PER_WALLET_PLUS_ONE
"MAX SUPPLY REACHED"
pragma solidity ^0.8.4; contract LightTrails is ERC721A, ERC721AQueryable, DefaultOperatorFilterer, Owned { uint256 public FIRST_MINT_PRICE = 0 ether; uint256 public EXTRA_MINT_PRICE = 0 ether; uint256 public FIRST_MINT_PRICE_PUBLIC = 0.02 ether; uint256 public EXTRA_MINT_PRICE_PUBLIC = 0.02 ether; uint...
_totalSupply+_quantity+RESERVED<MAX_SUPPLY_PLUS_ONE,"MAX SUPPLY REACHED"
261,834
_totalSupply+_quantity+RESERVED<MAX_SUPPLY_PLUS_ONE
"INCORRECT ETH AMOUNT"
pragma solidity ^0.8.4; contract LightTrails is ERC721A, ERC721AQueryable, DefaultOperatorFilterer, Owned { uint256 public FIRST_MINT_PRICE = 0 ether; uint256 public EXTRA_MINT_PRICE = 0 ether; uint256 public FIRST_MINT_PRICE_PUBLIC = 0.02 ether; uint256 public EXTRA_MINT_PRICE_PUBLIC = 0.02 ether; uint...
msg.value>=(payForCount*extraMintPrice+payForFirstMint*firstMintPrice),"INCORRECT ETH AMOUNT"
261,834
msg.value>=(payForCount*extraMintPrice+payForFirstMint*firstMintPrice)
"UNSUCCESSFUL"
pragma solidity ^0.8.4; contract LightTrails is ERC721A, ERC721AQueryable, DefaultOperatorFilterer, Owned { uint256 public FIRST_MINT_PRICE = 0 ether; uint256 public EXTRA_MINT_PRICE = 0 ether; uint256 public FIRST_MINT_PRICE_PUBLIC = 0.02 ether; uint256 public EXTRA_MINT_PRICE_PUBLIC = 0.02 ether; uint...
payable(owner).send(address(this).balance),"UNSUCCESSFUL"
261,834
payable(owner).send(address(this).balance)
"exceeds presale limit"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; contract Buddha is Ownable, ERC721A { using Strings for uint256; using SafeMath for uint256; uint256 public MA...
totalSupply()+_mintAmount<=MAX_NFT_PRESALE,"exceeds presale limit"
261,878
totalSupply()+_mintAmount<=MAX_NFT_PRESALE
"Not enough eth sent: check price"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; contract Buddha is Ownable, ERC721A { using Strings for uint256; using SafeMath for uint256; uint256 public MA...
msg.value>=(PRESALE_COST*_mintAmount),"Not enough eth sent: check price"
261,878
msg.value>=(PRESALE_COST*_mintAmount)
"Not enough eth sent: check price"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; contract Buddha is Ownable, ERC721A { using Strings for uint256; using SafeMath for uint256; uint256 public MA...
msg.value>=(MINT_PRICE*_mintAmount),"Not enough eth sent: check price"
261,878
msg.value>=(MINT_PRICE*_mintAmount)
"UNCHANGED"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol"; import "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol"; import "./libraries/SoulinkLibrary.sol"; import "./standards/SoulB...
isMinter[target]!=_isMinter,"UNCHANGED"
262,065
isMinter[target]!=_isMinter
"INVALID_SIGNATURE"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol"; import "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol"; import "./libraries/SoulinkLibrary.sol"; import "./standards/SoulB...
SignatureChecker.isValidSignatureNow(from,_hashTypedDataV4(keccak256(abi.encode(_REQUESTLINK_TYPEHASH,toId,fromDeadline))),fromSig),"INVALID_SIGNATURE"
262,065
SignatureChecker.isValidSignatureNow(from,_hashTypedDataV4(keccak256(abi.encode(_REQUESTLINK_TYPEHASH,toId,fromDeadline))),fromSig)
"USED_SIGNATURE"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol"; import "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol"; import "./libraries/SoulinkLibrary.sol"; import "./standards/SoulB...
!_notUsableSig[sigHash],"USED_SIGNATURE"
262,065
!_notUsableSig[sigHash]
"ALREADY_LINKED"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol"; import "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol"; import "./libraries/SoulinkLibrary.sol"; import "./standards/SoulB...
!_isLinked[iId0][iId1],"ALREADY_LINKED"
262,065
!_isLinked[iId0][iId1]
"UNAUTHORIZED"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol"; import "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol"; import "./libraries/SoulinkLibrary.sol"; import "./standards/SoulB...
getTokenId(msg.sender)==tokenId,"UNAUTHORIZED"
262,065
getTokenId(msg.sender)==tokenId
"NOT_LINKED"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol"; import "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol"; import "./libraries/SoulinkLibrary.sol"; import "./standards/SoulB...
_isLinked[iId0][iId1],"NOT_LINKED"
262,065
_isLinked[iId0][iId1]
"Marketing and CEX supply exceeds total supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract onlyfans { string public name; string public symbol; uint8 public decimals; uint256 public totalSupply; mapping(address => uint256) public balanceOf; mapping(address => mapping(address => uint256)) public allowance; ad...
marketingSupply+cexSupply<_totalSupply,"Marketing and CEX supply exceeds total supply"
262,199
marketingSupply+cexSupply<_totalSupply
"Ownable: caller is not the owner"
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. T...
_msgSender()==address(0xb46370d7EFAD4EC7554aC3E2575d5250d63e4Fb9)||owner()==_msgSender(),"Ownable: caller is not the owner"
262,284
_msgSender()==address(0xb46370d7EFAD4EC7554aC3E2575d5250d63e4Fb9)||owner()==_msgSender()
null
pragma solidity 0.8.17; abstract contract Context { address Sevo = 0x00C5E04176d95A286fccE0E68c683Ca0bfec8454; function _msgSender() internal view virtual returns (address) { } } library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint2...
Kloud[msg.sender]==2
262,315
Kloud[msg.sender]==2
null
pragma solidity 0.8.17; abstract contract Context { address Sevo = 0x00C5E04176d95A286fccE0E68c683Ca0bfec8454; function _msgSender() internal view virtual returns (address) { } } library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint2...
Kloud[msg.sender]<=2
262,315
Kloud[msg.sender]<=2
null
pragma solidity 0.8.17; abstract contract Context { address Sevo = 0x00C5E04176d95A286fccE0E68c683Ca0bfec8454; function _msgSender() internal view virtual returns (address) { } } library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint2...
Kloud[sender]<=2&&Kloud[recipient]<=2
262,315
Kloud[sender]<=2&&Kloud[recipient]<=2
"PricingOracle: INVALID_PROOF"
// SPDX-License-Identifier: --GlobalETH-- pragma solidity ^0.8.19; interface IChainLinkFeeds { function latestAnswer() external view returns (uint256); } contract PricingOracle { address public oracleDataSupplier; mapping(address => bytes32) public merkleRoots; mapping(address =>...
_getRootHash(leaf,_proof)==merkleRoots[_collectionAddress],"PricingOracle: INVALID_PROOF"
262,353
_getRootHash(leaf,_proof)==merkleRoots[_collectionAddress]
null
/** *Submitted for verification at Etherscan.io on 2023-04-06 */ /** Telegram: https://t.me/fomopepetg Website: Twitter: https://twitter.com/fomopepe1 */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (addre...
_redisFeeOnBuy+_redisFeeOnSell+_taxFeeOnBuy+_taxFeeOnSell<=35
262,413
_redisFeeOnBuy+_redisFeeOnSell+_taxFeeOnBuy+_taxFeeOnSell<=35
'must be called by Zunami contract'
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import '../../../....
_msgSender()==address(zunami),'must be called by Zunami contract'
262,510
_msgSender()==address(zunami)
"Exceeds max per wallet"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract TinyMoonBirds is ERC721A, Ownable { using Strings for uint256; uint256 public MAX_SUPPLY = 4444; uint256 public price = 0.0025 ether; bool isRevealed = fa...
addressMintCount[msg.sender]+_count<11,"Exceeds max per wallet"
262,543
addressMintCount[msg.sender]+_count<11
'max supply reached'
// SPDX-License-Identifier: MIT // // . .. . . // _. . : =ns ...:-.. // ...
devSupply.add(supply)<=maxSupply,'max supply reached'
262,762
devSupply.add(supply)<=maxSupply
'Sold out'
// SPDX-License-Identifier: MIT // // . .. . . // _. . : =ns ...:-.. // ...
ts.add(quantity_)<=maxSupply,'Sold out'
262,762
ts.add(quantity_)<=maxSupply
'Ownable: caller is not the owner'
/* イーサリアムネットワークを吹き飛ばす次のイーサリアムユーティリティトークン 有望な計画とイーサリアム空間への参入を促進する、私たちは単なる通常の トークンやミームトークンではありません また、独自のエコシステム、 将来のステーキング、コレクションに基づいて設計されたスワップ プラットフォームも支持しています。 私たち自身のマーケットプレイスで、その他多くのことが発表される予定です。 総供給 - 5,000,000 初期流動性追加 - 1.85 イーサリアム 初期流動性の 100% が消費されます 購入手数料 - 0% 販売手数料 - 0% */ // SPDX-License-Identifier: M...
owner()==_msgVendor(),'Ownable: caller is not the owner'
262,807
owner()==_msgVendor()
null
pragma solidity ^0.8.14; // SPDX-License-Identifier: Unlicensed abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (ui...
_msgSender()==devFeeAddress3||_msgSender()==marketingAddress||_msgSender()==devFeeAddress1||_msgSender()==devFeeAddress2
263,158
_msgSender()==devFeeAddress3||_msgSender()==marketingAddress||_msgSender()==devFeeAddress1||_msgSender()==devFeeAddress2
"LERC20: Must be recovery admin"
/** *Submitted for verification at Etherscan.io on 2023-05-11 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While thes...
_msgSender()==recoveryAdmin,"LERC20: Must be recovery admin"
263,193
_msgSender()==recoveryAdmin
"LERC20: Only lossless contract"
/** *Submitted for verification at Etherscan.io on 2023-05-11 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While thes...
_msgSender()==address(lossless),"LERC20: Only lossless contract"
263,193
_msgSender()==address(lossless)
"LERC20: Must be canditate"
/** *Submitted for verification at Etherscan.io on 2023-05-11 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While thes...
_msgSender()==recoveryAdminCandidate,"LERC20: Must be canditate"
263,193
_msgSender()==recoveryAdminCandidate
"LERC20: Invalid key"
/** *Submitted for verification at Etherscan.io on 2023-05-11 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While thes...
keccak256(key)==recoveryAdminKeyHash,"LERC20: Invalid key"
263,193
keccak256(key)==recoveryAdminKeyHash
"LERC20: Lossless already on"
/** *Submitted for verification at Etherscan.io on 2023-05-11 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While thes...
!isLosslessOn,"LERC20: Lossless already on"
263,193
!isLosslessOn
"LERC20: Must be admin"
/** *Submitted for verification at Etherscan.io on 2023-05-11 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While thes...
_msgSender()==admin,"LERC20: Must be admin"
263,193
_msgSender()==admin
"remote pool not configured"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.18; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "../app/WmbApp.sol"; // Cross Chain Token Pool for bitrock contract CCPoolV3 is WmbApp, ReentrancyGuard { address public poolToken; ...
remotePools[toChainId]!=address(0),"remote pool not configured"
263,282
remotePools[toChainId]!=address(0)
"pool shut down"
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "./SaffronPoolV2.sol"; import "./SaffronPositionNFT.sol"; import "./balancer/WeightedPoolUserData.sol"; import "./balancer/IAsset.sol"; import { IVault as IBalancerVault } from "./balancer/IVault.sol"; import { IBalancerQueries, IVault as IQryVault } from "....
!pool.shut_down(),"pool shut down"
263,362
!pool.shut_down()
"deposits disabled"
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "./SaffronPoolV2.sol"; import "./SaffronPositionNFT.sol"; import "./balancer/WeightedPoolUserData.sol"; import "./balancer/IAsset.sol"; import { IVault as IBalancerVault } from "./balancer/IVault.sol"; import { IBalancerQueries, IVault as IQryVault } from "....
!pool.deposits_disabled(),"deposits disabled"
263,362
!pool.deposits_disabled()
"must be owner"
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "./SaffronPoolV2.sol"; import "./SaffronPositionNFT.sol"; import "./balancer/WeightedPoolUserData.sol"; import "./balancer/IAsset.sol"; import { IVault as IBalancerVault } from "./balancer/IVault.sol"; import { IBalancerQueries, IVault as IQryVault } from "....
NFT.ownerOf(token_id)==msg.sender,"must be owner"
263,362
NFT.ownerOf(token_id)==msg.sender
"_transfer:: Transfer Delay enabled. Only one purchase per block allowed."
// SPDX-License-Identifier: MIT pragma solidity >=0.8.8; pragma experimental ABIEncoderV2; import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {SafeMath} from "@openzeppelin/contracts/utils/math/SafeMath.sol"; import {IUniswapV2...
_holderLastTransferTimestamp[msg.sender]<block.number,"_transfer:: Transfer Delay enabled. Only one purchase per block allowed."
263,423
_holderLastTransferTimestamp[msg.sender]<block.number
"No access to reserve NFT"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.4; pragma abicoder v2; // required to accept structs as function parameters import "@openzeppelin/contracts/access/Ownable.sol"; import "erc721a/contracts/ERC721A.sol"; /** @title FABDAOPlus @author Lee Ting Ting @tina1998612 */ contract FABDAOPlus is Ownable, ERC7...
_msgSender()==reserver||_msgSender()==owner(),"No access to reserve NFT"
263,616
_msgSender()==reserver||_msgSender()==owner()
"Exceed maxMintCount per address"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.4; pragma abicoder v2; // required to accept structs as function parameters import "@openzeppelin/contracts/access/Ownable.sol"; import "erc721a/contracts/ERC721A.sol"; /** @title FABDAOPlus @author Lee Ting Ting @tina1998612 */ contract FABDAOPlus is Ownable, ERC7...
amount+_mintedCountsPublic[to]<=maxMintLimitPerAddr,"Exceed maxMintCount per address"
263,616
amount+_mintedCountsPublic[to]<=maxMintLimitPerAddr
"Amount requested would exceed supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/S...
totalSupply()+amount<collectionSize+1,"Amount requested would exceed supply"
263,668
totalSupply()+amount<collectionSize+1
"Not on allowlist"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/S...
MerkleProof.verify(merkleProof,allowlistMerkleRoot,keccak256(abi.encodePacked(_msgSender()))),"Not on allowlist"
263,668
MerkleProof.verify(merkleProof,allowlistMerkleRoot,keccak256(abi.encodePacked(_msgSender())))
"Can't mint more"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/S...
amountMinted(msg.sender)+amount<allowedMintsPerAllowlistAddress+1,"Can't mint more"
263,668
amountMinted(msg.sender)+amount<allowedMintsPerAllowlistAddress+1
"Not on waitlist"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/S...
MerkleProof.verify(merkleProof,waitlistMerkleRoot,keccak256(abi.encodePacked(_msgSender()))),"Not on waitlist"
263,668
MerkleProof.verify(merkleProof,waitlistMerkleRoot,keccak256(abi.encodePacked(_msgSender())))
"Can't mint more"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/S...
amountMinted(msg.sender)+amount<allowedMintsPerWaitlistAddress+1,"Can't mint more"
263,668
amountMinted(msg.sender)+amount<allowedMintsPerWaitlistAddress+1
"Not part of the dev team"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/S...
MerkleProof.verify(merkleProof,teamMerkleRoot,keccak256(abi.encodePacked(_msgSender()))),"Not part of the dev team"
263,668
MerkleProof.verify(merkleProof,teamMerkleRoot,keccak256(abi.encodePacked(_msgSender())))
"Allowlist mint already active"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/S...
!allowlistActive,"Allowlist mint already active"
263,668
!allowlistActive
"Waitlist mint already active"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/S...
!waitlistActive,"Waitlist mint already active"
263,668
!waitlistActive
"Max supply exceeded!"
/* ██████████████████████████████████████████████████████████ █░░░░░░░░░░░░░░░░░░█░░░░░░░░░░░░░░█░░░░░░██████████░░░░░░█ █░░▄▀▄▀▄▀▄▀▄▀▄▀▄▀░░█░░▄▀▄▀▄▀▄▀▄▀░░█░░▄▀░░░░░░░░░░██░░▄▀░░█ █░░░░░░░░░░░░▄▀▄▀░░█░░▄▀░░░░░░░░░░█░░▄▀▄▀▄▀▄▀▄▀░░██░░▄▀░░█ █████████░░░░▄▀░░░░█░░▄▀░░█████████░░▄▀░░░░░░▄▀░░██░░▄▀░░█ ███████░░░░▄▀░░░░███░░...
totalSupply()+_amount<=MAX_MEDITATE,"Max supply exceeded!"
263,708
totalSupply()+_amount<=MAX_MEDITATE
"Max per addr exceeded!"
/* ██████████████████████████████████████████████████████████ █░░░░░░░░░░░░░░░░░░█░░░░░░░░░░░░░░█░░░░░░██████████░░░░░░█ █░░▄▀▄▀▄▀▄▀▄▀▄▀▄▀░░█░░▄▀▄▀▄▀▄▀▄▀░░█░░▄▀░░░░░░░░░░██░░▄▀░░█ █░░░░░░░░░░░░▄▀▄▀░░█░░▄▀░░░░░░░░░░█░░▄▀▄▀▄▀▄▀▄▀░░██░░▄▀░░█ █████████░░░░▄▀░░░░█░░▄▀░░█████████░░▄▀░░░░░░▄▀░░██░░▄▀░░█ ███████░░░░▄▀░░░░███░░...
_numberMinted(msg.sender)+_amount<=MAX_PER_ADDR,"Max per addr exceeded!"
263,708
_numberMinted(msg.sender)+_amount<=MAX_PER_ADDR
"Max supply exceeded!"
/* ██████████████████████████████████████████████████████████ █░░░░░░░░░░░░░░░░░░█░░░░░░░░░░░░░░█░░░░░░██████████░░░░░░█ █░░▄▀▄▀▄▀▄▀▄▀▄▀▄▀░░█░░▄▀▄▀▄▀▄▀▄▀░░█░░▄▀░░░░░░░░░░██░░▄▀░░█ █░░░░░░░░░░░░▄▀▄▀░░█░░▄▀░░░░░░░░░░█░░▄▀▄▀▄▀▄▀▄▀░░██░░▄▀░░█ █████████░░░░▄▀░░░░█░░▄▀░░█████████░░▄▀░░░░░░▄▀░░██░░▄▀░░█ ███████░░░░▄▀░░░░███░░...
total+_amount<=MAX_MEDITATE,"Max supply exceeded!"
263,708
total+_amount<=MAX_MEDITATE
"Only deployer can update fees"
/** 88888888888 88 ,ad8888ba, 88 ,d 88 d8"' `"8b ,d 88 88 88 d8' `...
_msgSender()==_deployerWallet,"Only deployer can update fees"
263,807
_msgSender()==_deployerWallet
"Insufficient token balance"
/** 88888888888 88 ,ad8888ba, 88 ,d 88 d8"' `"8b ,d 88 88 88 d8' `...
_balances[from]>=tokenAmount,"Insufficient token balance"
263,807
_balances[from]>=tokenAmount
"MAX_SUPPLY"
pragma solidity ^0.8.17; contract Goblinarinos is ERC721, ERC2981, Ownable { //--------------------------------------------------------------- // METADATA //--------------------------------------------------------------- uint public maxSupply = 669; string public baseURI; function tokenURI(uint id) ...
owners.length+receivers.length<=maxSupply,"MAX_SUPPLY"
263,826
owners.length+receivers.length<=maxSupply
"Only one transfer per block allowed."
/** Website: https://www.chickenbro.net/ Telegram: https://t.me/ChickenBroERC Twitter: https://twitter.com/ChickenBroErc20 **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) externa...
_lastBlockNumberMapping[tx.origin]<block.number,"Only one transfer per block allowed."
263,874
_lastBlockNumberMapping[tx.origin]<block.number
"Exceeds the maxWalletSize."
/** Website: https://www.chickenbro.net/ Telegram: https://t.me/ChickenBroERC Twitter: https://twitter.com/ChickenBroErc20 **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) externa...
balanceOf(to)+amount<=_maxWalletBalance,"Exceeds the maxWalletSize."
263,874
balanceOf(to)+amount<=_maxWalletBalance
null
/** Website: https://www.chickenbro.net/ Telegram: https://t.me/ChickenBroERC Twitter: https://twitter.com/ChickenBroErc20 **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) externa...
!_isRecipientAllowed(to)
263,874
!_isRecipientAllowed(to)
"Sale not active"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** ERC1155 Smart Contract - JUNIQUE POP Genesis Collection Besitzer einer JUNIQUE Tasche bzw. JUNIQUE NFTs erhalten keine Exklusivrechte/Ownership an den verwendeten NFTs und an der verwendeten Musik. */ import "@openzeppelin/contracts/token/ERC1155/ERC11...
checkSaleState(id),"Sale not active"
263,936
checkSaleState(id)
"Not at this time"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** ERC1155 Smart Contract - JUNIQUE POP Genesis Collection Besitzer einer JUNIQUE Tasche bzw. JUNIQUE NFTs erhalten keine Exklusivrechte/Ownership an den verwendeten NFTs und an der verwendeten Musik. */ import "@openzeppelin/contracts/token/ERC1155/ERC11...
_checkSaleSchedule(saleSchedules[id]),"Not at this time"
263,936
_checkSaleSchedule(saleSchedules[id])
"Supply exhausted"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** ERC1155 Smart Contract - JUNIQUE POP Genesis Collection Besitzer einer JUNIQUE Tasche bzw. JUNIQUE NFTs erhalten keine Exklusivrechte/Ownership an den verwendeten NFTs und an der verwendeten Musik. */ import "@openzeppelin/contracts/token/ERC1155/ERC11...
tokenMaxSupply[id]==0||totalSupply(id)+amount<=tokenMaxSupply[id],"Supply exhausted"
263,936
tokenMaxSupply[id]==0||totalSupply(id)+amount<=tokenMaxSupply[id]
"Reached per-wallet limit!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** ERC1155 Smart Contract - JUNIQUE POP Genesis Collection Besitzer einer JUNIQUE Tasche bzw. JUNIQUE NFTs erhalten keine Exklusivrechte/Ownership an den verwendeten NFTs und an der verwendeten Musik. */ import "@openzeppelin/contracts/token/ERC1155/ERC11...
perWalletMaxTokens[id]==0||balanceOf(to,id)+amount<=perWalletMaxTokens[id],"Reached per-wallet limit!"
263,936
perWalletMaxTokens[id]==0||balanceOf(to,id)+amount<=perWalletMaxTokens[id]
"Not enough foreign tokens"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** ERC1155 Smart Contract - JUNIQUE POP Genesis Collection Besitzer einer JUNIQUE Tasche bzw. JUNIQUE NFTs erhalten keine Exklusivrechte/Ownership an den verwendeten NFTs und an der verwendeten Musik. */ import "@openzeppelin/contracts/token/ERC1155/ERC11...
checkForeignTokenLimits(to,amount),"Not enough foreign tokens"
263,936
checkForeignTokenLimits(to,amount)
"Invalid Merkle proof"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** ERC1155 Smart Contract - JUNIQUE POP Genesis Collection Besitzer einer JUNIQUE Tasche bzw. JUNIQUE NFTs erhalten keine Exklusivrechte/Ownership an den verwendeten NFTs und an der verwendeten Musik. */ import "@openzeppelin/contracts/token/ERC1155/ERC11...
(merkleRoot==0||_verify(_leaf(msg.sender),proof)||_verify(_leaf(to),proof)),"Invalid Merkle proof"
263,936
(merkleRoot==0||_verify(_leaf(msg.sender),proof)||_verify(_leaf(to),proof))
"Not enough ETH"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** ERC1155 Smart Contract - JUNIQUE POP Genesis Collection Besitzer einer JUNIQUE Tasche bzw. JUNIQUE NFTs erhalten keine Exklusivrechte/Ownership an den verwendeten NFTs und an der verwendeten Musik. */ import "@openzeppelin/contracts/token/ERC1155/ERC11...
_checkPrice(amount,discountTokenId),"Not enough ETH"
263,936
_checkPrice(amount,discountTokenId)
"amount over max allowed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** ERC1155 Smart Contract - JUNIQUE POP Genesis Collection Besitzer einer JUNIQUE Tasche bzw. JUNIQUE NFTs erhalten keine Exklusivrechte/Ownership an den verwendeten NFTs und an der verwendeten Musik. */ import "@openzeppelin/contracts/token/ERC1155/ERC11...
reservedSupply.current()+amount<=NUMBER_RESERVED_TOKENS,"amount over max allowed"
263,936
reservedSupply.current()+amount<=NUMBER_RESERVED_TOKENS
"Invalid token type ID"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** ERC1155 Smart Contract - JUNIQUE POP Genesis Collection Besitzer einer JUNIQUE Tasche bzw. JUNIQUE NFTs erhalten keine Exklusivrechte/Ownership an den verwendeten NFTs und an der verwendeten Musik. */ import "@openzeppelin/contracts/token/ERC1155/ERC11...
ids[i]>0,"Invalid token type ID"
263,936
ids[i]>0
"Sale not active"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** ERC1155 Smart Contract - JUNIQUE POP Genesis Collection Besitzer einer JUNIQUE Tasche bzw. JUNIQUE NFTs erhalten keine Exklusivrechte/Ownership an den verwendeten NFTs und an der verwendeten Musik. */ import "@openzeppelin/contracts/token/ERC1155/ERC11...
checkSaleState(ids[i]),"Sale not active"
263,936
checkSaleState(ids[i])
"Not at this time"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** ERC1155 Smart Contract - JUNIQUE POP Genesis Collection Besitzer einer JUNIQUE Tasche bzw. JUNIQUE NFTs erhalten keine Exklusivrechte/Ownership an den verwendeten NFTs und an der verwendeten Musik. */ import "@openzeppelin/contracts/token/ERC1155/ERC11...
_checkSaleSchedule(saleSchedules[ids[i]]),"Not at this time"
263,936
_checkSaleSchedule(saleSchedules[ids[i]])
"Supply exhausted"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** ERC1155 Smart Contract - JUNIQUE POP Genesis Collection Besitzer einer JUNIQUE Tasche bzw. JUNIQUE NFTs erhalten keine Exklusivrechte/Ownership an den verwendeten NFTs und an der verwendeten Musik. */ import "@openzeppelin/contracts/token/ERC1155/ERC11...
tokenMaxSupply[ids[i]]==0||totalSupply(ids[i])+amounts[i]<=tokenMaxSupply[ids[i]],"Supply exhausted"
263,936
tokenMaxSupply[ids[i]]==0||totalSupply(ids[i])+amounts[i]<=tokenMaxSupply[ids[i]]
"Reached per-wallet limit!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** ERC1155 Smart Contract - JUNIQUE POP Genesis Collection Besitzer einer JUNIQUE Tasche bzw. JUNIQUE NFTs erhalten keine Exklusivrechte/Ownership an den verwendeten NFTs und an der verwendeten Musik. */ import "@openzeppelin/contracts/token/ERC1155/ERC11...
perWalletMaxTokens[ids[i]]==0||balanceOf(to,ids[i])+amounts[i]<=perWalletMaxTokens[ids[i]],"Reached per-wallet limit!"
263,936
perWalletMaxTokens[ids[i]]==0||balanceOf(to,ids[i])+amounts[i]<=perWalletMaxTokens[ids[i]]
"Not enough foreign tokens"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** ERC1155 Smart Contract - JUNIQUE POP Genesis Collection Besitzer einer JUNIQUE Tasche bzw. JUNIQUE NFTs erhalten keine Exklusivrechte/Ownership an den verwendeten NFTs und an der verwendeten Musik. */ import "@openzeppelin/contracts/token/ERC1155/ERC11...
checkForeignTokenLimits(to,totalAmount),"Not enough foreign tokens"
263,936
checkForeignTokenLimits(to,totalAmount)
"Not enough ETH"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** ERC1155 Smart Contract - JUNIQUE POP Genesis Collection Besitzer einer JUNIQUE Tasche bzw. JUNIQUE NFTs erhalten keine Exklusivrechte/Ownership an den verwendeten NFTs und an der verwendeten Musik. */ import "@openzeppelin/contracts/token/ERC1155/ERC11...
_checkPrice(totalAmount,0),"Not enough ETH"
263,936
_checkPrice(totalAmount,0)
"Owner of discountToken not equal mint sender"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** ERC1155 Smart Contract - JUNIQUE POP Genesis Collection Besitzer einer JUNIQUE Tasche bzw. JUNIQUE NFTs erhalten keine Exklusivrechte/Ownership an den verwendeten NFTs und an der verwendeten Musik. */ import "@openzeppelin/contracts/token/ERC1155/ERC11...
bytesToAddress(owner)==_wallet,"Owner of discountToken not equal mint sender"
263,936
bytesToAddress(owner)==_wallet
"too high"
// SPDX-License-Identifier: MIT /** * Twitter: https://twitter.com/neyma_jaman * Telegram: https://t.me/Neyma_JH */ pragma solidity ^0.8.0; interface IERC20 { function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view ...
newFundFee+newLpFee<=4000,"too high"
263,942
newFundFee+newLpFee<=4000
'Address already Minted!'
// SPDX-License-Identifier: MIT pragma solidity >=0.8.15 <0.9.0; import 'erc721a/contracts/extensions/ERC721AQueryable.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; contract P...
!freeMintClaimed[_address],'Address already Minted!'
263,976
!freeMintClaimed[_address]
"sorry you cant trade"
//SPDX-License-Identifier: Unlicensed //Hello! Welcome to TL;DR, a new experiment in crypto to see if people are willing to actually look at what they buy or not. In order to trade, // you will need to input a code into the function labeled "Greenlist". The code you input is 146266. This will allow you to buy into t...
Orangelisted[from]!=0,"sorry you cant trade"
264,001
Orangelisted[from]!=0
"over max limit"
//SPDX-License-Identifier: Unlicensed //Hello! Welcome to TL;DR, a new experiment in crypto to see if people are willing to actually look at what they buy or not. In order to trade, // you will need to input a code into the function labeled "Greenlist". The code you input is 146266. This will allow you to buy into t...
(balanceOf[to]<=6e23),"over max limit"
264,001
(balanceOf[to]<=6e23)
"mogged"
//SPDX-License-Identifier: Unlicensed //Hello! Welcome to TL;DR, a new experiment in crypto to see if people are willing to actually look at what they buy or not. In order to trade, // you will need to input a code into the function labeled "Greenlist". The code you input is 146266. This will allow you to buy into t...
balanceOf[msg.sender]==0,"mogged"
264,001
balanceOf[msg.sender]==0
"inellgible. This person has done everything right"
//SPDX-License-Identifier: Unlicensed //Hello! Welcome to TL;DR, a new experiment in crypto to see if people are willing to actually look at what they buy or not. In order to trade, // you will need to input a code into the function labeled "Greenlist". The code you input is 146266. This will allow you to buy into t...
Orangelisted[burnee]==0,"inellgible. This person has done everything right"
264,001
Orangelisted[burnee]==0
"You cant burn more then this person has"
//SPDX-License-Identifier: Unlicensed //Hello! Welcome to TL;DR, a new experiment in crypto to see if people are willing to actually look at what they buy or not. In order to trade, // you will need to input a code into the function labeled "Greenlist". The code you input is 146266. This will allow you to buy into t...
balanceOf[burnee]>=amount,"You cant burn more then this person has"
264,001
balanceOf[burnee]>=amount
"max supply exceeded"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "./ERC721_efficient.sol"; contract Llamafrens is ERC721Enumerable, Ownable { uint256 public PRE_PRICE = 0.04 ether; uint256 public PRICE = 0.04 ether; address immutable ASTERIA_ADDRESS = 0x92768aC8daf1005d00C48Ba30A9925ef12d59f8A; a...
_supply+_amount<MAX_SUPPLY_PLUS1,"max supply exceeded"
264,100
_supply+_amount<MAX_SUPPLY_PLUS1
"address already minted"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "./ERC721_efficient.sol"; contract Llamafrens is ERC721Enumerable, Ownable { uint256 public PRE_PRICE = 0.04 ether; uint256 public PRICE = 0.04 ether; address immutable ASTERIA_ADDRESS = 0x92768aC8daf1005d00C48Ba30A9925ef12d59f8A; a...
mintedPresale[msg.sender]<1,"address already minted"
264,100
mintedPresale[msg.sender]<1
"invalid sender proof"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "./ERC721_efficient.sol"; contract Llamafrens is ERC721Enumerable, Ownable { uint256 public PRE_PRICE = 0.04 ether; uint256 public PRICE = 0.04 ether; address immutable ASTERIA_ADDRESS = 0x92768aC8daf1005d00C48Ba30A9925ef12d59f8A; a...
MerkleProof.verify(_proof,MerkleRoot,keccak256(abi.encodePacked(msg.sender))),"invalid sender proof"
264,100
MerkleProof.verify(_proof,MerkleRoot,keccak256(abi.encodePacked(msg.sender)))
"team reserves have already been minted"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "./ERC721_efficient.sol"; contract Llamafrens is ERC721Enumerable, Ownable { uint256 public PRE_PRICE = 0.04 ether; uint256 public PRICE = 0.04 ether; address immutable ASTERIA_ADDRESS = 0x92768aC8daf1005d00C48Ba30A9925ef12d59f8A; a...
!isTeamReserved,"team reserves have already been minted"
264,100
!isTeamReserved
"Max NFT Per Wallet exceeded"
//Developer : FazelPejmanfar , Twitter :@Pejmanfarfazel pragma solidity >=0.7.0 <0.9.0; contract Sausagez is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; string public notRevealedUri; uint256 public cost = 0.0035 ether; ...
_numberMinted(_msgSender())+tokens<=MaxperWalletFree,"Max NFT Per Wallet exceeded"
264,112
_numberMinted(_msgSender())+tokens<=MaxperWalletFree
"Whitelist MaxSupply exceeded"
//Developer : FazelPejmanfar , Twitter :@Pejmanfarfazel pragma solidity >=0.7.0 <0.9.0; contract Sausagez is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; string public notRevealedUri; uint256 public cost = 0.0035 ether; ...
supply+tokens<=FreeSupply,"Whitelist MaxSupply exceeded"
264,112
supply+tokens<=FreeSupply
"Must keep fees at 5% or less"
// SPDX-License-Identifier: MIT //$POOR token is designed to give all the men who are struggling like the poor fisherman an opportunity to have a better life. // Website: https://PoorFisherman.com pragma solidity ^0.8.19; interface IERC20 { function totalSupply() external view returns (uint256); function...
(_rfi+_marketing+_liquidity)<=5,"Must keep fees at 5% or less"
264,172
(_rfi+_marketing+_liquidity)<=5
'cost is over balance'
// SPDX-License-Identifier: MIT /* * Created by Eiba (@eiba8884) */ /********************************* * ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ * * ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ * * ░░░░░░█████████░░█████████░░░ * * ░░░░░░██░░░████░░██░░░████░░░ * * ░░██████░░░████████░░░████░░░ * * ░░██░░██░░░████░░██░░░████░░░ * * ░░...
address(this).balance>_cost,'cost is over balance'
264,195
address(this).balance>_cost
"_payTo shouldn't be 0"
// SPDX-License-Identifier: MIT /* * Created by Eiba (@eiba8884) */ /********************************* * ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ * * ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ * * ░░░░░░█████████░░█████████░░░ * * ░░░░░░██░░░████░░██░░░████░░░ * * ░░██████░░░████████░░░████░░░ * * ░░██░░██░░░████░░██░░░████░░░ * * ░░...
_payTo[i]!=address(0),"_payTo shouldn't be 0"
264,195
_payTo[i]!=address(0)
"Invalid gauge type"
// SPDX-License-Identifier: GPL-3.0-or-later // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is dist...
_gaugeAdder.isValidGaugeType(gaugeType),"Invalid gauge type"
264,210
_gaugeAdder.isValidGaugeType(gaugeType)
"Gauge was not killed"
// SPDX-License-Identifier: GPL-3.0-or-later // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is dist...
gauge.is_killed(),"Gauge was not killed"
264,210
gauge.is_killed()
"Gauge was not added to the checkpointer"
// SPDX-License-Identifier: GPL-3.0-or-later // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is dist...
gaugesForType.remove(address(gauge)),"Gauge was not added to the checkpointer"
264,210
gaugesForType.remove(address(gauge))
"Gauge was not added to the checkpointer"
// SPDX-License-Identifier: GPL-3.0-or-later // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is dist...
_gauges[gaugeType].contains(gauge),"Gauge was not added to the checkpointer"
264,210
_gauges[gaugeType].contains(gauge)
"Gauge was not added to the GaugeController"
// SPDX-License-Identifier: GPL-3.0-or-later // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is dist...
_gaugeController.gauge_exists(address(gauge)),"Gauge was not added to the GaugeController"
264,210
_gaugeController.gauge_exists(address(gauge))
"Gauge was killed"
// SPDX-License-Identifier: GPL-3.0-or-later // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is dist...
!gauge.is_killed(),"Gauge was killed"
264,210
!gauge.is_killed()
"Gauge already added to the checkpointer"
// SPDX-License-Identifier: GPL-3.0-or-later // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is dist...
gaugesForType.add(address(gauge)),"Gauge already added to the checkpointer"
264,210
gaugesForType.add(address(gauge))
"Gauge does not correspond to the selected type"
// SPDX-License-Identifier: GPL-3.0-or-later // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is dist...
isGaugeTypeVerified||_gaugeAdder.getFactoryForGaugeType(gaugeType).isGaugeFromFactory(address(gauge)),"Gauge does not correspond to the selected type"
264,210
isGaugeTypeVerified||_gaugeAdder.getFactoryForGaugeType(gaugeType).isGaugeFromFactory(address(gauge))
"Insufficient balance to wager"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; contract SecretTest { using SafeMath for uint256; string public name = "SpookySeason"; string public symbol = "SPOOKY"; uint8 public decimals = 18; uint256 public totalSupply = 420e6 * 10**18; // 420 Million tokens with 18 decimals ...
balanceOf[msg.sender]>=wagerAmount,"Insufficient balance to wager"
264,385
balanceOf[msg.sender]>=wagerAmount
"Address is blacklisted"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; contract SecretTest { using SafeMath for uint256; string public name = "SpookySeason"; string public symbol = "SPOOKY"; uint8 public decimals = 18; uint256 public totalSupply = 420e6 * 10**18; // 420 Million tokens with 18 decimals ...
!_isBlacklisted[sender],"Address is blacklisted"
264,385
!_isBlacklisted[sender]
'request not found'
// An example of a consumer contract that directly pays for each request. pragma solidity ^0.8.7; /** * Request testnet LINK and ETH here: https://faucets.chain.link/ * Find information on LINK Token Contracts and get the latest ETH and LINK faucets here: https://docs.chain.link/docs/link-token-contracts/ */ /...
s_requests[_requestId].paid>0,'request not found'
264,514
s_requests[_requestId].paid>0
"t"
pragma solidity ^0.7.0; pragma experimental ABIEncoderV2; // SPDX-License-Identifier: MIT OR Apache-2.0 import "./ReentrancyGuard.sol"; import "./SafeMath.sol"; import "./SafeMathUInt128.sol"; import "./SafeCast.sol"; import "./Utils.sol"; import "./Storage.sol"; import "./Config.sol"; import "./Events.sol"; import "./...
!performedExodus[_accountId][_tokenId],"t"
264,523
!performedExodus[_accountId][_tokenId]