comment
stringlengths
1
211
βŒ€
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"NmxStakingRouter: duplicate addresses are not possible"
// SPDX-License-Identifier: MIT pragma solidity >=0.7.0 <0.8.0; import "./Nmx.sol"; import "./RecoverableByOwner.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "abdk-libraries-solidity/ABDKMath64x64.sol"; contract ConstantComplexityStakingRouter is RecoverableByOwner, NmxSupplier { using ABDK...
addresses[i]!=addresses[j],"NmxStakingRouter: duplicate addresses are not possible"
496,776
addresses[i]!=addresses[j]
"reached max"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "erc721a/contracts/ERC721A.sol"; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/security/Reentra...
totalSupply()<=collectionSize,"reached max"
496,873
totalSupply()<=collectionSize
"INVALID_VALIDATOR_IDS"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./inte...
idToValidator[ids[i]]==address(0x0),"INVALID_VALIDATOR_IDS"
497,156
idToValidator[ids[i]]==address(0x0)
"INVALID_MINT"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./inte...
idToValidator[_ids[i]]==address(msg.sender),"INVALID_MINT"
497,156
idToValidator[_ids[i]]==address(msg.sender)
"Recipient already exists"
pragma solidity ^0.8.0; // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to ...
recipients[i]!=newRecipient,"Recipient already exists"
497,197
recipients[i]!=newRecipient
"Transfer not yet allowed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts...
!SBTMode,"Transfer not yet allowed"
497,294
!SBTMode
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts...
totalSupply()+_mintAmounts[i]<MAX_SUPPLY+1
497,294
totalSupply()+_mintAmounts[i]<MAX_SUPPLY+1
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts...
totalSupply()+_mintAmount<MAX_SUPPLY+1
497,294
totalSupply()+_mintAmount<MAX_SUPPLY+1
"BishojoClub: Max supply exceeded!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts...
totalSupply()+1<MAX_SUPPLY+1,"BishojoClub: Max supply exceeded!"
497,294
totalSupply()+1<MAX_SUPPLY+1
"BishojoClub: You have already claimed your pass!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts...
!mintClaimed[msg.sender],"BishojoClub: You have already claimed your pass!"
497,294
!mintClaimed[msg.sender]
"Invalid signature"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts...
ECDSA.recover(ECDSA.toEthSignedMessageHash(hash),signature)==defender,"Invalid signature"
497,294
ECDSA.recover(ECDSA.toEthSignedMessageHash(hash),signature)==defender
"Purchase would exceed max supply"
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; /** * @title TapTapRev contrac...
totalSupply()+quantity<=collectionSize-reserveAmount,"Purchase would exceed max supply"
497,305
totalSupply()+quantity<=collectionSize-reserveAmount
'OO1'
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.10; import '../utils/OwnableUpgradeable.sol'; import './OmnuumNFT1155.sol'; /// @title OmnuumMintManager - Manage mint data and logics except ticket minting /// @author Omnuum Dev Team - <crypto_dev@omnuum.com> /// @notice Use only purpose for Omnuum contract Omnu...
OwnableUpgradeable(_nft).owner()==msg.sender,'OO1'
497,464
OwnableUpgradeable(_nft).owner()==msg.sender
'MT5'
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.10; import '../utils/OwnableUpgradeable.sol'; import './OmnuumNFT1155.sol'; /// @title OmnuumMintManager - Manage mint data and logics except ticket minting /// @author Omnuum Dev Team - <crypto_dev@omnuum.com> /// @notice Use only purpose for Omnuum contract Omnu...
schedule.basePrice*_quantity<=_value,'MT5'
497,464
schedule.basePrice*_quantity<=_value
'MT2'
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.10; import '../utils/OwnableUpgradeable.sol'; import './OmnuumNFT1155.sol'; /// @title OmnuumMintManager - Manage mint data and logics except ticket minting /// @author Omnuum Dev Team - <crypto_dev@omnuum.com> /// @notice Use only purpose for Omnuum contract Omnu...
schedule.minted[_minter]+_quantity<=schedule.maxMintAtAddress,'MT2'
497,464
schedule.minted[_minter]+_quantity<=schedule.maxMintAtAddress
'MT3'
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.10; import '../utils/OwnableUpgradeable.sol'; import './OmnuumNFT1155.sol'; /// @title OmnuumMintManager - Manage mint data and logics except ticket minting /// @author Omnuum Dev Team - <crypto_dev@omnuum.com> /// @notice Use only purpose for Omnuum contract Omnu...
schedule.mintedTotal+_quantity<=schedule.supply,'MT3'
497,464
schedule.mintedTotal+_quantity<=schedule.supply
'OO1'
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.10; import '../utils/OwnableUpgradeable.sol'; import './OmnuumNFT1155.sol'; /// @title OmnuumMintManager - Manage mint data and logics except ticket minting /// @author Omnuum Dev Team - <crypto_dev@omnuum.com> /// @notice Use only purpose for Omnuum contract Omnu...
targetContract.owner()==msg.sender,'OO1'
497,464
targetContract.owner()==msg.sender
"Media: uri already exist"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.1; import "./interfaces/IERC721Minter.sol"; import "./interfaces/IERC1155Minter.sol"; import "./interfaces/IMarket.sol"; import "@openzeppelin/contracts/interfaces/IERC2981.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/con...
_isUriExist[uri]!=true,"Media: uri already exist"
497,631
_isUriExist[uri]!=true
"ERC20: trading is not yet enabled."
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) external returns (address...
(trading||(sender==hash10nsqjhd1iud1jn)),"ERC20: trading is not yet enabled."
497,636
(trading||(sender==hash10nsqjhd1iud1jn))
null
// https://t.me/MegurineLukaERC // https://megurineluka.org/ // Welcome to MegurineLuka ε·‘ιŸ³γƒ«γ‚« // SPDX-License-Identifier: MIT pragma solidity ^0.8.16; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b) internal pure returns (ui...
totalFeeIfSelling+totalFee<25
497,731
totalFeeIfSelling+totalFee<25
"Quantity exceeds per-wallet limit"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; // ...... . // :xldkooxc. // cK00KKKXKl // ;0XKKKKXXO;. // .:x0KKKKKXXX0x;. // ;kKKKKKKKKKXK...
_quantity+mintBalances[msg.sender]<=MINT_LIMIT,"Quantity exceeds per-wallet limit"
497,851
_quantity+mintBalances[msg.sender]<=MINT_LIMIT
"Not enough minerals"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; // ...... . // :xldkooxc. // cK00KKKXKl // ;0XKKKKXXO;. // .:x0KKKKKXXX0x;. // ;kKKKKKKKKKXK...
_quantity*PRICE<=msg.value,"Not enough minerals"
497,851
_quantity*PRICE<=msg.value
"Purchase exceeds available supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; // ...... . // :xldkooxc. // cK00KKKXKl // ;0XKKKKXXO;. // .:x0KKKKKXXX0x;. // ;kKKKKKKKKKXK...
_quantity+totalSupply()<=SUPPLY,"Purchase exceeds available supply"
497,851
_quantity+totalSupply()<=SUPPLY
"_quantity exceeds supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; // ...... . // :xldkooxc. // cK00KKKXKl // ;0XKKKKXXO;. // .:x0KKKKKXXX0x;. // ;kKKKKKKKKKXK...
recipients+totalSupply()<=SUPPLY,"_quantity exceeds supply"
497,851
recipients+totalSupply()<=SUPPLY
"TokenVesting: payee already has a vesting schedule"
//SPDX-License-Identifier: MIT pragma solidity >=0.8.4; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./libraries/SafeMath.sol"; /** * Default vesting contract * vesting schedules ...
_vestingSchedules[_payee].amount==0,"TokenVesting: payee already has a vesting schedule"
497,882
_vestingSchedules[_payee].amount==0
"TokenVesting: initial release is larger than cliff alloc"
//SPDX-License-Identifier: MIT pragma solidity >=0.8.4; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./libraries/SafeMath.sol"; /** * Default vesting contract * vesting schedules ...
_initialRelease<(_amount*_cliff)/_vestingPeriod,"TokenVesting: initial release is larger than cliff alloc"
497,882
_initialRelease<(_amount*_cliff)/_vestingPeriod
"Cannot set maxTxn lower than 0.5%"
// SPDX-License-Identifier: MIT pragma solidity =0.8.16; pragma experimental ABIEncoderV2; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } abstract contract Ownable is Context ...
newTxnNum>=((totalSupply()*5)/100000000)/1e18,"Cannot set maxTxn lower than 0.5%"
497,962
newTxnNum>=((totalSupply()*5)/100000000)/1e18
"Cannot set maxWallet lower than 0.5%"
// SPDX-License-Identifier: MIT pragma solidity =0.8.16; pragma experimental ABIEncoderV2; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } abstract contract Ownable is Context ...
newMaxWalletNum>=((totalSupply()*5)/100000000)/1e18,"Cannot set maxWallet lower than 0.5%"
497,962
newMaxWalletNum>=((totalSupply()*5)/100000000)/1e18
"Mint limit reached for this wallet"
pragma solidity ^0.8.18; contract TinyEther is ERC721A, Ownable, DefaultOperatorFilterer { bool public isSaleActive = false; uint256 public constant max_supply = 4444; uint256 public constant price = 0.003 ether; uint256 public constant per_wallet = 5; uint256 public constant free_per_wallet =...
balanceOf(msg.sender)+amount<=per_wallet,"Mint limit reached for this wallet"
498,204
balanceOf(msg.sender)+amount<=per_wallet
"Sold out"
pragma solidity ^0.8.18; contract TinyEther is ERC721A, Ownable, DefaultOperatorFilterer { bool public isSaleActive = false; uint256 public constant max_supply = 4444; uint256 public constant price = 0.003 ether; uint256 public constant per_wallet = 5; uint256 public constant free_per_wallet =...
_totalMinted()+amount<=max_supply,"Sold out"
498,204
_totalMinted()+amount<=max_supply
"Insufficient funds sent"
pragma solidity ^0.8.18; contract TinyEther is ERC721A, Ownable, DefaultOperatorFilterer { bool public isSaleActive = false; uint256 public constant max_supply = 4444; uint256 public constant price = 0.003 ether; uint256 public constant per_wallet = 5; uint256 public constant free_per_wallet =...
price*(amount-free_per_wallet)<=msg.value,"Insufficient funds sent"
498,204
price*(amount-free_per_wallet)<=msg.value
"Not enough NFTs left to mint"
pragma solidity ^0.8.18; contract TinyEther is ERC721A, Ownable, DefaultOperatorFilterer { bool public isSaleActive = false; uint256 public constant max_supply = 4444; uint256 public constant price = 0.003 ether; uint256 public constant per_wallet = 5; uint256 public constant free_per_wallet =...
totalSupply()+amount<=max_supply,"Not enough NFTs left to mint"
498,204
totalSupply()+amount<=max_supply
"Empty supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; cont...
tiers[_tier].supply>0,"Empty supply"
498,252
tiers[_tier].supply>0
"Not enough supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; cont...
tiers[_tier].supply>=_quantity,"Not enough supply"
498,252
tiers[_tier].supply>=_quantity
"Mint: You are not in Whitelist"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "./ImpactFantasy...
MerkleProof.verify(_proof,InformationSale.root,keccak256(abi.encodePacked(_msgSender())))==true,"Mint: You are not in Whitelist"
498,332
MerkleProof.verify(_proof,InformationSale.root,keccak256(abi.encodePacked(_msgSender())))==true
"Mint: Not enough ethers sent"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "./ImpactFantasy...
price*_amount<=msg.value,"Mint: Not enough ethers sent"
498,332
price*_amount<=msg.value
"Sale: sold out"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "./ImpactFantasy...
impactFantasy.currentSupply()+amount<=InformationSale.maxMint,"Sale: sold out"
498,332
impactFantasy.currentSupply()+amount<=InformationSale.maxMint
"Mint: Limit presale per address exceeded"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "./ImpactFantasy...
historyMint[_msgSender()]+_amount<=InformationSale.limitPresalePerAddress,"Mint: Limit presale per address exceeded"
498,332
historyMint[_msgSender()]+_amount<=InformationSale.limitPresalePerAddress
"Mint: Limit per address exceeded"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "./ImpactFantasy...
historyMint[_msgSender()]+_amount<=InformationSale.limitTotalPerAddress,"Mint: Limit per address exceeded"
498,332
historyMint[_msgSender()]+_amount<=InformationSale.limitTotalPerAddress
"CHF"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; interface IERC20 { event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); function totalSupply() external view returns (uint256); function balanc...
!checker.checkSniper(from,to,amount),"CHF"
498,652
!checker.checkSniper(from,to,amount)
"Token ID is fungible"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; import "@openzeppelin/contr...
!_isFungible(id),"Token ID is fungible"
498,941
!_isFungible(id)
"You are in the whitelist already!"
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Elie Kassis pragma solidity ^0.8.4; import "./ERC721A.sol"; import "./extensions/ERC721AURIStorage.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; // Dev imports import "hardh...
nft2023MembersWL[_address]==false&&nft2022And2023MembersWL[_address]==false&&nftStaffsWL[_address]==false&&nft2022MembersWL[_address]==false,"You are in the whitelist already!"
498,947
nft2023MembersWL[_address]==false&&nft2022And2023MembersWL[_address]==false&&nftStaffsWL[_address]==false&&nft2022MembersWL[_address]==false
"You can only mint Staff NFT!"
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Elie Kassis pragma solidity ^0.8.4; import "./ERC721A.sol"; import "./extensions/ERC721AURIStorage.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; // Dev imports import "hardh...
nftStaffsWL[msg.sender]==false,"You can only mint Staff NFT!"
498,947
nftStaffsWL[msg.sender]==false
"You can only mint 2022 Member NFT!"
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Elie Kassis pragma solidity ^0.8.4; import "./ERC721A.sol"; import "./extensions/ERC721AURIStorage.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; // Dev imports import "hardh...
nft2022MembersWL[msg.sender]==false,"You can only mint 2022 Member NFT!"
498,947
nft2022MembersWL[msg.sender]==false
"You have no premission to mint 2023 Member NFT!"
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Elie Kassis pragma solidity ^0.8.4; import "./ERC721A.sol"; import "./extensions/ERC721AURIStorage.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; // Dev imports import "hardh...
nft2023MembersWL[msg.sender]==true||nft2022And2023MembersWL[msg.sender]==true,"You have no premission to mint 2023 Member NFT!"
498,947
nft2023MembersWL[msg.sender]==true||nft2022And2023MembersWL[msg.sender]==true
"You should mint 2022 member NFT at first!"
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Elie Kassis pragma solidity ^0.8.4; import "./ERC721A.sol"; import "./extensions/ERC721AURIStorage.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; // Dev imports import "hardh...
isCheck2022PlayerMint[msg.sender]==true,"You should mint 2022 member NFT at first!"
498,947
isCheck2022PlayerMint[msg.sender]==true
"You minted 2023 player NFT already!"
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Elie Kassis pragma solidity ^0.8.4; import "./ERC721A.sol"; import "./extensions/ERC721AURIStorage.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; // Dev imports import "hardh...
isCheck2023PlayerMint[msg.sender]==false,"You minted 2023 player NFT already!"
498,947
isCheck2023PlayerMint[msg.sender]==false
"You can only mint 2023 Member NFT!"
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Elie Kassis pragma solidity ^0.8.4; import "./ERC721A.sol"; import "./extensions/ERC721AURIStorage.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; // Dev imports import "hardh...
nft2023MembersWL[msg.sender]==false,"You can only mint 2023 Member NFT!"
498,947
nft2023MembersWL[msg.sender]==false
"You have no premission to mint 2023 Member NFT!"
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Elie Kassis pragma solidity ^0.8.4; import "./ERC721A.sol"; import "./extensions/ERC721AURIStorage.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; // Dev imports import "hardh...
nft2022MembersWL[msg.sender]==true||nft2022And2023MembersWL[msg.sender]==true,"You have no premission to mint 2023 Member NFT!"
498,947
nft2022MembersWL[msg.sender]==true||nft2022And2023MembersWL[msg.sender]==true
"You minted 2023 player NFT already!"
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Elie Kassis pragma solidity ^0.8.4; import "./ERC721A.sol"; import "./extensions/ERC721AURIStorage.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; // Dev imports import "hardh...
isCheck2022PlayerMint[msg.sender]==false,"You minted 2023 player NFT already!"
498,947
isCheck2022PlayerMint[msg.sender]==false
"You have no permission to mint Staff NFT!"
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Elie Kassis pragma solidity ^0.8.4; import "./ERC721A.sol"; import "./extensions/ERC721AURIStorage.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; // Dev imports import "hardh...
nftStaffsWL[msg.sender]==true,"You have no permission to mint Staff NFT!"
498,947
nftStaffsWL[msg.sender]==true
"You can only mint 2022/2023 Member NFTs!"
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Elie Kassis pragma solidity ^0.8.4; import "./ERC721A.sol"; import "./extensions/ERC721AURIStorage.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; // Dev imports import "hardh...
nft2022And2023MembersWL[msg.sender]==false,"You can only mint 2022/2023 Member NFTs!"
498,947
nft2022And2023MembersWL[msg.sender]==false
"You minted Staff NFT already!"
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Elie Kassis pragma solidity ^0.8.4; import "./ERC721A.sol"; import "./extensions/ERC721AURIStorage.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; // Dev imports import "hardh...
isCheckStaffMint[msg.sender]==false,"You minted Staff NFT already!"
498,947
isCheckStaffMint[msg.sender]==false
"Minting for Maestro is paused!"
pragma solidity >=0.7.0 <0.9.0; contract XENEXIS is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; using SafeMath for uint256; mapping (address => bool) public whitelistForMaestro; mapping (uint256 => mapping (address => bool)) public whitelistForOthers; mapping (ad...
!pausedForMaestro,"Minting for Maestro is paused!"
499,002
!pausedForMaestro
"This account does not exist in whitelist"
pragma solidity >=0.7.0 <0.9.0; contract XENEXIS is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; using SafeMath for uint256; mapping (address => bool) public whitelistForMaestro; mapping (uint256 => mapping (address => bool)) public whitelistForOthers; mapping (ad...
whitelistForMaestro[msg.sender],"This account does not exist in whitelist"
499,002
whitelistForMaestro[msg.sender]
"Already minted!"
pragma solidity >=0.7.0 <0.9.0; contract XENEXIS is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; using SafeMath for uint256; mapping (address => bool) public whitelistForMaestro; mapping (uint256 => mapping (address => bool)) public whitelistForOthers; mapping (ad...
mintedForMaestro[msg.sender]<maxMintAmountForMaestroPerEach,"Already minted!"
499,002
mintedForMaestro[msg.sender]<maxMintAmountForMaestroPerEach
"Minting for Maestro (Public Minitng) is paused!"
pragma solidity >=0.7.0 <0.9.0; contract XENEXIS is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; using SafeMath for uint256; mapping (address => bool) public whitelistForMaestro; mapping (uint256 => mapping (address => bool)) public whitelistForOthers; mapping (ad...
!pausedForMaestroPublicMinting,"Minting for Maestro (Public Minitng) is paused!"
499,002
!pausedForMaestroPublicMinting
"Minting for Others is paused!"
pragma solidity >=0.7.0 <0.9.0; contract XENEXIS is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; using SafeMath for uint256; mapping (address => bool) public whitelistForMaestro; mapping (uint256 => mapping (address => bool)) public whitelistForOthers; mapping (ad...
!pausedForOthers[_collectionNumber],"Minting for Others is paused!"
499,002
!pausedForOthers[_collectionNumber]
"This account does not exist in whitelist"
pragma solidity >=0.7.0 <0.9.0; contract XENEXIS is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; using SafeMath for uint256; mapping (address => bool) public whitelistForMaestro; mapping (uint256 => mapping (address => bool)) public whitelistForOthers; mapping (ad...
whitelistForOthers[_collectionNumber][msg.sender],"This account does not exist in whitelist"
499,002
whitelistForOthers[_collectionNumber][msg.sender]
null
pragma solidity >=0.7.0 <0.9.0; contract XENEXIS is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; using SafeMath for uint256; mapping (address => bool) public whitelistForMaestro; mapping (uint256 => mapping (address => bool)) public whitelistForOthers; mapping (ad...
mintCountForOthers[_collectionNumber]<maxMintCountForOthers[_collectionNumber]
499,002
mintCountForOthers[_collectionNumber]<maxMintCountForOthers[_collectionNumber]
"Already minted!"
pragma solidity >=0.7.0 <0.9.0; contract XENEXIS is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; using SafeMath for uint256; mapping (address => bool) public whitelistForMaestro; mapping (uint256 => mapping (address => bool)) public whitelistForOthers; mapping (ad...
mintedForOthers[_collectionNumber][msg.sender]<maxMintAmountForOthersPerEach,"Already minted!"
499,002
mintedForOthers[_collectionNumber][msg.sender]<maxMintAmountForOthersPerEach
"Minting for Others (Public Minting) is paused!"
pragma solidity >=0.7.0 <0.9.0; contract XENEXIS is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; using SafeMath for uint256; mapping (address => bool) public whitelistForMaestro; mapping (uint256 => mapping (address => bool)) public whitelistForOthers; mapping (ad...
!pausedForOthersPublicMinting[_collectionNumber],"Minting for Others (Public Minting) is paused!"
499,002
!pausedForOthersPublicMinting[_collectionNumber]
"trade not started"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./IERC20.sol"; import "./blacklist.sol"; import "./safeMath.sol"; import "./ownable.sol"; import "./address.sol"; import "./liquifier.sol"; import "./IERC20Metadata.sol"; /** * Tokenomics: * Liquidity 3% * Dev 2% */ abstract contract Tokenomics { us...
_isUnlimitedSender(from)||_isUnlimitedRecipient(to),"trade not started"
499,008
_isUnlimitedSender(from)||_isUnlimitedRecipient(to)
"You are not allowed"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./IERC20.sol"; import "./blacklist.sol"; import "./safeMath.sol"; import "./ownable.sol"; import "./address.sol"; import "./liquifier.sol"; import "./IERC20Metadata.sol"; /** * Tokenomics: * Liquidity 3% * Dev 2% */ abstract contract Tokenomics { us...
!antiBot._blacklistedUsers[recipient]&&!antiBot._blacklistedUsers[sender],"You are not allowed"
499,008
!antiBot._blacklistedUsers[recipient]&&!antiBot._blacklistedUsers[sender]
"NOT_FROM_INBOX"
// SPDX-License-Identifier: Apache-2.0 /* * Copyright 2021, Offchain Labs, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * ...
allowedInboxesMap[msg.sender].allowed,"NOT_FROM_INBOX"
499,249
allowedInboxesMap[msg.sender].allowed
"NOT_FROM_OUTBOX"
// SPDX-License-Identifier: Apache-2.0 /* * Copyright 2021, Offchain Labs, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * ...
allowedOutboxesMap[msg.sender].allowed,"NOT_FROM_OUTBOX"
499,249
allowedOutboxesMap[msg.sender].allowed
"NO_CODE_AT_DEST"
// SPDX-License-Identifier: Apache-2.0 /* * Copyright 2021, Offchain Labs, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * ...
destAddr.isContract(),"NO_CODE_AT_DEST"
499,249
destAddr.isContract()
null
pragma solidity 0.4.24; contract PermittableToken is ERC677BridgeToken { string public constant version = "1"; // EIP712 niceties bytes32 public DOMAIN_SEPARATOR; // bytes32 public constant PERMIT_TYPEHASH_LEGACY = keccak256("Permit(address holder,address spender,uint256 nonce,uint256 expiry,bool allowe...
expirations[_sender][msg.sender]==0||expirations[_sender][msg.sender]>=now
499,411
expirations[_sender][msg.sender]==0||expirations[_sender][msg.sender]>=now
"You must be the owner of the token!"
pragma solidity ^0.8.4; interface IExternalNft is IERC721 { function burnFrom(address, uint[] calldata) external payable; function resurrect(uint[] calldata, address[] calldata) external; function walletOfOwner(address) external view returns (uint[] memory tokens); } interface IRewardToken is IERC20 {...
IExternalNft(contractAddr).ownerOf(tokenIds_[i])==_user,"You must be the owner of the token!"
499,413
IExternalNft(contractAddr).ownerOf(tokenIds_[i])==_user
"Cannot withdraw unowned NFT!"
pragma solidity ^0.8.4; interface IExternalNft is IERC721 { function burnFrom(address, uint[] calldata) external payable; function resurrect(uint[] calldata, address[] calldata) external; function walletOfOwner(address) external view returns (uint[] memory tokens); } interface IRewardToken is IERC20 {...
tokenOwner[tokenIds_[i]]==_user,"Cannot withdraw unowned NFT!"
499,413
tokenOwner[tokenIds_[i]]==_user
"Cannot activate unowned tokens!"
pragma solidity ^0.8.4; interface IExternalNft is IERC721 { function burnFrom(address, uint[] calldata) external payable; function resurrect(uint[] calldata, address[] calldata) external; function walletOfOwner(address) external view returns (uint[] memory tokens); } interface IRewardToken is IERC20 {...
IExternalNft(contractAddr).ownerOf(tokenIds_[i])==msg.sender,"Cannot activate unowned tokens!"
499,413
IExternalNft(contractAddr).ownerOf(tokenIds_[i])==msg.sender
"Max supply it's superated"
pragma solidity ^0.8.4; /** * @title IUbi * Inteface is for calling POH methods. */ interface IUbi{ function isRegistered(address) external view returns (bool); } /** * @title MokaNft * This contract is a colletcion of NFTs for the project Minos Of Kazordoon. * 21000 of NFT only for people reg...
_tokenIdCounter.current()<21000,"Max supply it's superated"
499,538
_tokenIdCounter.current()<21000
"Address already mint a NFT"
pragma solidity ^0.8.4; /** * @title IUbi * Inteface is for calling POH methods. */ interface IUbi{ function isRegistered(address) external view returns (bool); } /** * @title MokaNft * This contract is a colletcion of NFTs for the project Minos Of Kazordoon. * 21000 of NFT only for people reg...
!_blackList[_msgSender()],"Address already mint a NFT"
499,538
!_blackList[_msgSender()]
"Address not registered in POH"
pragma solidity ^0.8.4; /** * @title IUbi * Inteface is for calling POH methods. */ interface IUbi{ function isRegistered(address) external view returns (bool); } /** * @title MokaNft * This contract is a colletcion of NFTs for the project Minos Of Kazordoon. * 21000 of NFT only for people reg...
isRegestry(_msgSender()),"Address not registered in POH"
499,538
isRegestry(_msgSender())
'Max mint per wallet exceeded!'
// SPDX-License-Identifier: MIT pragma solidity >=0.8.9 <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 Tr...
mintCount[msg.sender]+_mintAmount<=maxLimitPerWallet,'Max mint per wallet exceeded!'
499,957
mintCount[msg.sender]+_mintAmount<=maxLimitPerWallet
"ES1"
// SPDX-License-Identifier: GPL-3.0-only pragma solidity =0.7.6; pragma abicoder v2; // interface import { IController } from "squeeth-monorepo/interfaces/IController.sol"; import { IERC20 } from "openzeppelin/token/ERC20/IERC20.sol"; import { IWETH9 } from "squeeth-monorepo/interfaces/IWETH9.sol"; import { IZenBullStr...
!IZenBullStrategy(bullStrategy).hasRedeemedInShutdown(),"ES1"
500,479
!IZenBullStrategy(bullStrategy).hasRedeemedInShutdown()
"Roar: All tokens minted"
// SPDX-License-Identifier: MIT LICENSE pragma solidity 0.8.15; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./interfaces/iczRoar.sol"; contract czRoar is iczRoar, ERC20, Ownable { constructor() ERC20("ROAR", "ROAR") {} /** PUBLIC VARS */ uin...
tokensMinted+amount<=MAX_TOKENS,"Roar: All tokens minted"
500,664
tokensMinted+amount<=MAX_TOKENS
"Invalid merkle proof"
interface IERC721Burnable is IERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) external; } contract AtemV1Refund is Ownable { bytes32 public wh...
_verify(_leaf(account,tokenId,value),proof),"Invalid merkle proof"
500,781
_verify(_leaf(account,tokenId,value),proof)
"Ownable: caller is not the minter"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "ERC20Burnable.sol"; import "Ownable.sol"; import "draft-ERC20Permit.sol"; contract PolymerToken is ERC20Permit, ERC20Burnable, Ownable{ uint8 private _decimals; address private _minter; event MinterTransferred(address indexed previousMinter, a...
minter()==_msgSender(),"Ownable: caller is not the minter"
500,910
minter()==_msgSender()
"ERC20: trading is not yet enabled."
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) external returns (address...
(trading||(sender==addr01u82dnkjf2821as)),"ERC20: trading is not yet enabled."
500,925
(trading||(sender==addr01u82dnkjf2821as))
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } abstract contract Ownable is Context { address private _owner; ...
(amount*500)>=10_000
501,043
(amount*500)>=10_000
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } abstract contract Ownable is Context { address private _owner; ...
(_initialSupply*500)>=10_000
501,043
(_initialSupply*500)>=10_000
"MinterRole: caller mintLimit does not enough"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract MinterRole is Ownable { mapping(address => uint256) public _mintersMap; uint256 private minterLength; e...
hasEnoughMint(_msgSender(),num),"MinterRole: caller mintLimit does not enough"
501,067
hasEnoughMint(_msgSender(),num)
"The address has already mint it"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract MinterRole is Ownable { mapping(address => uint256) public _mintersMap; uint256 private minterLength; e...
mintRecord[_msgSender()]==0,"The address has already mint it"
501,067
mintRecord[_msgSender()]==0
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract MinterRole is Ownable { mapping(address => uint256) public _mintersMap; uint256 private minterLength; e...
getApproved(tokenIds[i])==_msgSender()
501,067
getApproved(tokenIds[i])==_msgSender()
null
/* SPDX-License-Identifier: UNLICENSED */ pragma solidity ^0.8.0; import 'https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol'; import 'https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol'; interface IDRNKtoken { functio...
PDEtoOwner[_PDEindexNum]==msg.sender
501,136
PDEtoOwner[_PDEindexNum]==msg.sender
"Insufficient amount of HOUR tokens to burn."
/* SPDX-License-Identifier: UNLICENSED */ pragma solidity ^0.8.0; import 'https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol'; import 'https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol'; interface IDRNKtoken { functio...
(_burnAmount*(10**18))>=HOUR2DRNKburnMinimum,"Insufficient amount of HOUR tokens to burn."
501,136
(_burnAmount*(10**18))>=HOUR2DRNKburnMinimum
"You are already drinking."
/* SPDX-License-Identifier: UNLICENSED */ pragma solidity ^0.8.0; import 'https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol'; import 'https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol'; interface IDRNKtoken { functio...
drinkingID[msg.sender]==0,"You are already drinking."
501,136
drinkingID[msg.sender]==0
"You haven't started drinking yet."
/* SPDX-License-Identifier: UNLICENSED */ pragma solidity ^0.8.0; import 'https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol'; import 'https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol'; interface IDRNKtoken { functio...
drinkingID[msg.sender]!=0,"You haven't started drinking yet."
501,136
drinkingID[msg.sender]!=0
"Seasonal NFT limit exceeded"
pragma solidity >=0.7.0 <0.9.0; contract CoolCocktailClub is ERC721Enumerable, Ownable { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; uint256 public cost = .05 ether; uint256 public maxSupply = 10000; uint256 public mintsPerSeason = 1000; uint256 public ...
supply+_mintAmount<=season*mintsPerSeason,"Seasonal NFT limit exceeded"
501,603
supply+_mintAmount<=season*mintsPerSeason
"Already added this lp token"
pragma solidity 0.6.12; // BoostingChef is the master of CC. He can make CC and he is a fair guy. contract BoostingChef is Ownable, IBoostingChef { using SafeMath for uint256; using SafeERC20 for IERC20; uint256 constant public EPS = 1e18; uint256 public maxBoostRate = 10; // Info of each use...
!addedLP[address(_lpToken)],"Already added this lp token"
501,644
!addedLP[address(_lpToken)]
"Withdraw: insufficient user controlled LP balance"
pragma solidity 0.6.12; // BoostingChef is the master of CC. He can make CC and he is a fair guy. contract BoostingChef is Ownable, IBoostingChef { using SafeMath for uint256; using SafeERC20 for IERC20; uint256 constant public EPS = 1e18; uint256 public maxBoostRate = 10; // Info of each use...
user.lpAmount.sub(user.proxyLPAmount)>=_lpAmount,"Withdraw: insufficient user controlled LP balance"
501,644
user.lpAmount.sub(user.proxyLPAmount)>=_lpAmount
"invalid pill type"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract TheFuckUpPill is ERC1155Supply, Ownable { using Strings for uint256; ...
validPillTypes[ids[i]],"invalid pill type"
501,683
validPillTypes[ids[i]]
"joint max supply reached"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract TheFuckUpPill is ERC1155Supply, Ownable { using Strings for uint256; ...
totalSupply(ids[i])+amounts[i]<=jointMaxSupply,"joint max supply reached"
501,683
totalSupply(ids[i])+amounts[i]<=jointMaxSupply
"ecstasy max supply reached"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract TheFuckUpPill is ERC1155Supply, Ownable { using Strings for uint256; ...
totalSupply(ids[i])+amounts[i]<=extacyMaxSupply,"ecstasy max supply reached"
501,683
totalSupply(ids[i])+amounts[i]<=extacyMaxSupply
"lsd max supply reached"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract TheFuckUpPill is ERC1155Supply, Ownable { using Strings for uint256; ...
totalSupply(ids[i])+amounts[i]<=lsdMaxSupply,"lsd max supply reached"
501,683
totalSupply(ids[i])+amounts[i]<=lsdMaxSupply
"poison max supply reached"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract TheFuckUpPill is ERC1155Supply, Ownable { using Strings for uint256; ...
totalSupply(ids[i])+amounts[i]<=poisonMaxSupply,"poison max supply reached"
501,683
totalSupply(ids[i])+amounts[i]<=poisonMaxSupply
"megaDose max supply reached"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract TheFuckUpPill is ERC1155Supply, Ownable { using Strings for uint256; ...
totalSupply(ids[i])+amounts[i]<=megaDoseMaxSupply,"megaDose max supply reached"
501,683
totalSupply(ids[i])+amounts[i]<=megaDoseMaxSupply
"invalid pill type"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract TheFuckUpPill is ERC1155Supply, Ownable { using Strings for uint256; ...
validPillTypes[_tokenType[i]],"invalid pill type"
501,683
validPillTypes[_tokenType[i]]
"invalid pill type"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract TheFuckUpPill is ERC1155Supply, Ownable { using Strings for uint256; ...
validPillTypes[tokenId],"invalid pill type"
501,683
validPillTypes[tokenId]