comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"Invalid LSP address"
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.8.0; import "./LongShortPairFinancialProductLibrary.sol"; import "../../../../common/implementation/Lockable.sol"; /** * @title Success Token Long Short Pair Financial Product Library. * @notice Adds settlement logic to create success token LSPs. A success ...
ExpiringContractInterface(longShortPair).expirationTimestamp()!=0,"Invalid LSP address"
374,026
ExpiringContractInterface(longShortPair).expirationTimestamp()!=0
"Early access not open"
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "./core/Ch...
isEarlyAccessOpen(),"Early access not open"
374,043
isEarlyAccessOpen()
"All Runners have been minted"
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "./core/Ch...
_tokenIds.current()+_count<=MAX_PUBLIC_RUNNERS,"All Runners have been minted"
374,043
_tokenIds.current()+_count<=MAX_PUBLIC_RUNNERS
"Address not on Early Access list"
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "./core/Ch...
isOnEarlyAccessList[msg.sender],"Address not on Early Access list"
374,043
isOnEarlyAccessList[msg.sender]
"Runner Zero has already been minted"
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "./core/Ch...
!_exists(0),"Runner Zero has already been minted"
374,043
!_exists(0)
"Incorrect seed"
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "./core/Ch...
checkHash(seed)==runnerZeroHash,"Incorrect seed"
374,043
checkHash(seed)==runnerZeroHash
"TokiumBribe: Invalid proposal"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import { AccessControl } from "@openzeppelin/contracts/access/AccessControl.sol"; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; contract TokiumBribe...
proposalDeadlines[proposal]>=block.timestamp,"TokiumBribe: Invalid proposal"
374,055
proposalDeadlines[proposal]>=block.timestamp
"User not register"
pragma solidity ^0.6.7; contract FastMatrix { struct User { uint256 id; address inviter; uint256 balance; uint256 profit; mapping(uint8 => uint40) expires; mapping(uint8 => address) uplines; mapping(uint8 => address[]) referrals; } uint40 pu...
users[msg.sender].id>0,"User not register"
374,089
users[msg.sender].id>0
"Invalid level"
pragma solidity ^0.6.7; contract FastMatrix { struct User { uint256 id; address inviter; uint256 balance; uint256 profit; mapping(uint8 => uint40) expires; mapping(uint8 => address) uplines; mapping(uint8 => address[]) referrals; } uint40 pu...
levels[_level]>0,"Invalid level"
374,089
levels[_level]>0
"Insufficient funds"
pragma solidity ^0.6.7; contract FastMatrix { struct User { uint256 id; address inviter; uint256 balance; uint256 profit; mapping(uint8 => uint40) expires; mapping(uint8 => address) uplines; mapping(uint8 => address[]) referrals; } uint40 pu...
users[_user].balance>=levels[_level],"Insufficient funds"
374,089
users[_user].balance>=levels[_level]
"User arleady register"
pragma solidity ^0.6.7; contract FastMatrix { struct User { uint256 id; address inviter; uint256 balance; uint256 profit; mapping(uint8 => uint40) expires; mapping(uint8 => address) uplines; mapping(uint8 => address[]) referrals; } uint40 pu...
users[_user].id==0,"User arleady register"
374,089
users[_user].id==0
"Upline not register"
pragma solidity ^0.6.7; contract FastMatrix { struct User { uint256 id; address inviter; uint256 balance; uint256 profit; mapping(uint8 => uint40) expires; mapping(uint8 => address) uplines; mapping(uint8 => address[]) referrals; } uint40 pu...
users[_upline].id!=0,"Upline not register"
374,089
users[_upline].id!=0
"!Owner"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.3; interface IUniswapV2Pair { function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function token0() external view returns (address); function token1() external view returns (address); function getReserves()...
_ownerList[msg.sender],"!Owner"
374,096
_ownerList[msg.sender]
"!Pair"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.3; interface IUniswapV2Pair { function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function token0() external view returns (address); function token1() external view returns (address); function getReserves()...
path[0]!=address(0)&&path[1]!=address(0),"!Pair"
374,096
path[0]!=address(0)&&path[1]!=address(0)
"!Eth Pair"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.3; interface IUniswapV2Pair { function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function token0() external view returns (address); function token1() external view returns (address); function getReserves()...
path[0]==WETH||path[1]==WETH,"!Eth Pair"
374,096
path[0]==WETH||path[1]==WETH
"Transfer ERC20 token failed"
pragma solidity ^0.5.8; import "./IERC20.sol"; contract SimpleMultiSig { // EIP712 Precomputed hashes: // keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract,bytes32 salt)") bytes32 constant EIP712DOMAINTYPE_HASH = 0xd87cd6ef79d4e2b95e15ce8abf732db51ec771f1ca2edccf22...
IERC20(erc20Addr).transferFrom(msg.sender,address(this),value),"Transfer ERC20 token failed"
374,242
IERC20(erc20Addr).transferFrom(msg.sender,address(this),value)
"Invalid master sig"
pragma solidity ^0.5.8; import "./IERC20.sol"; contract SimpleMultiSig { // EIP712 Precomputed hashes: // keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract,bytes32 salt)") bytes32 constant EIP712DOMAINTYPE_HASH = 0xd87cd6ef79d4e2b95e15ce8abf732db51ec771f1ca2edccf22...
ecrecover(totalHash,sigV[0],sigR[0],sigS[0])==master,"Invalid master sig"
374,242
ecrecover(totalHash,sigV[0],sigR[0],sigS[0])==master
"Invalid owner sig"
pragma solidity ^0.5.8; import "./IERC20.sol"; contract SimpleMultiSig { // EIP712 Precomputed hashes: // keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract,bytes32 salt)") bytes32 constant EIP712DOMAINTYPE_HASH = 0xd87cd6ef79d4e2b95e15ce8abf732db51ec771f1ca2edccf22...
ecrecover(totalHash,sigV[1],sigR[1],sigS[1])==wallet.owner,"Invalid owner sig"
374,242
ecrecover(totalHash,sigV[1],sigR[1],sigS[1])==wallet.owner
"Transfer ERC20 token failed"
pragma solidity ^0.5.8; import "./IERC20.sol"; contract SimpleMultiSig { // EIP712 Precomputed hashes: // keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract,bytes32 salt)") bytes32 constant EIP712DOMAINTYPE_HASH = 0xd87cd6ef79d4e2b95e15ce8abf732db51ec771f1ca2edccf22...
IERC20(wallet.erc20Addr).transfer(recipient,wallet.value),"Transfer ERC20 token failed"
374,242
IERC20(wallet.erc20Addr).transfer(recipient,wallet.value)
'BASE_COLLECTION/CONTRACT_CANNOT_CALL'
// SPDX-License-Identifier: AGPL-3.0 pragma solidity ^0.8.0; import "openzeppelin-solidity/contracts/token/ERC721/ERC721.sol"; import "openzeppelin-solidity/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "openzeppelin-solidity/contracts/access/Ownable.sol"; import "openzeppelin-solidity/contracts/secur...
!msg.sender.isContract(),'BASE_COLLECTION/CONTRACT_CANNOT_CALL'
374,353
!msg.sender.isContract()
"BASE_COLLECTION/CANNOT_MINT"
// SPDX-License-Identifier: AGPL-3.0 pragma solidity ^0.8.0; import "openzeppelin-solidity/contracts/token/ERC721/ERC721.sol"; import "openzeppelin-solidity/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "openzeppelin-solidity/contracts/access/Ownable.sol"; import "openzeppelin-solidity/contracts/secur...
(_publicSaleTime!=0&&_publicSaleTime<block.timestamp)||(isPreSaleActive&&_preSaleAllowList[msg.sender]),"BASE_COLLECTION/CANNOT_MINT"
374,353
(_publicSaleTime!=0&&_publicSaleTime<block.timestamp)||(isPreSaleActive&&_preSaleAllowList[msg.sender])
'BASE_COLLECTION/INSUFFICIENT_ETH_AMOUNT'
// SPDX-License-Identifier: AGPL-3.0 pragma solidity ^0.8.0; import "openzeppelin-solidity/contracts/token/ERC721/ERC721.sol"; import "openzeppelin-solidity/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "openzeppelin-solidity/contracts/access/Ownable.sol"; import "openzeppelin-solidity/contracts/secur...
PRICE*count<=msg.value,'BASE_COLLECTION/INSUFFICIENT_ETH_AMOUNT'
374,353
PRICE*count<=msg.value
"ERC721: transfer caller is not owner nor approved"
// SPDX-License-Identifier: AGPL-3.0 pragma solidity ^0.8.0; import "openzeppelin-solidity/contracts/token/ERC721/ERC721.sol"; import "openzeppelin-solidity/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "openzeppelin-solidity/contracts/access/Ownable.sol"; import "openzeppelin-solidity/contracts/secur...
_isApprovedOrOwner(_msgSender(),tokenIds[i]),"ERC721: transfer caller is not owner nor approved"
374,353
_isApprovedOrOwner(_msgSender(),tokenIds[i])
"BASE_COLLECTION/EXCEEDS_MAX_SUPPLY"
// SPDX-License-Identifier: AGPL-3.0 pragma solidity ^0.8.0; import "openzeppelin-solidity/contracts/token/ERC721/ERC721.sol"; import "openzeppelin-solidity/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "openzeppelin-solidity/contracts/access/Ownable.sol"; import "openzeppelin-solidity/contracts/secur...
totalSupply()+count<=MAX_TOTAL_MINT,"BASE_COLLECTION/EXCEEDS_MAX_SUPPLY"
374,353
totalSupply()+count<=MAX_TOTAL_MINT
"Contract is already in the list."
// SPDX-License-Identifier: MIT License pragma solidity 0.8.12; /* Tribute to the phunks : This contract is based on the NotLarvaLabs Marketplace project : https://notlarvalabs.com/ We generalized this contract to be able to add any ERC721 contract to the marketplace. Have fun ;) 0xdev */ import...
!addressToSupportedContracts[newTokensAddress],"Contract is already in the list."
374,428
!addressToSupportedContracts[newTokensAddress]
"This collection is not supported."
// SPDX-License-Identifier: MIT License pragma solidity 0.8.12; /* Tribute to the phunks : This contract is based on the NotLarvaLabs Marketplace project : https://notlarvalabs.com/ We generalized this contract to be able to add any ERC721 contract to the marketplace. Have fun ;) 0xdev */ import...
idToCollection[collectionId].activated,"This collection is not supported."
374,428
idToCollection[collectionId].activated
"you are not the owner of this token"
// SPDX-License-Identifier: MIT License pragma solidity 0.8.12; /* Tribute to the phunks : This contract is based on the NotLarvaLabs Marketplace project : https://notlarvalabs.com/ We generalized this contract to be able to add any ERC721 contract to the marketplace. Have fun ;) 0xdev */ import...
IERC721(idToCollection[collectionId].contractAddress).ownerOf(tokenId)==msg.sender,"you are not the owner of this token"
374,428
IERC721(idToCollection[collectionId].contractAddress).ownerOf(tokenId)==msg.sender
"No amount to be withdrawn ..."
// SPDX-License-Identifier: MIT License pragma solidity 0.8.12; /* Tribute to the phunks : This contract is based on the NotLarvaLabs Marketplace project : https://notlarvalabs.com/ We generalized this contract to be able to add any ERC721 contract to the marketplace. Have fun ;) 0xdev */ import...
pendingWithdrawals[from]>0,"No amount to be withdrawn ..."
374,428
pendingWithdrawals[from]>0
'Allowlist minting in progress'
// SPDX-License-Identifier: GPL-3.0 pragma solidity >=0.8.9 <0.9.0; import '@openzeppelin/contracts/token/ERC721/ERC721.sol'; import '@openzeppelin/contracts/utils/Counters.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/con...
!isAllowlistEnabled,'Allowlist minting in progress'
374,463
!isAllowlistEnabled
null
// SPDX-License-Identifier: GPL-3.0 pragma solidity >=0.8.9 <0.9.0; import '@openzeppelin/contracts/token/ERC721/ERC721.sol'; import '@openzeppelin/contracts/utils/Counters.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/con...
isAllowlistEnabled&&isAllowlisted(_merkleProof)
374,463
isAllowlistEnabled&&isAllowlisted(_merkleProof)
'max NFT per address exceeded'
// SPDX-License-Identifier: GPL-3.0 pragma solidity >=0.8.9 <0.9.0; import '@openzeppelin/contracts/token/ERC721/ERC721.sol'; import '@openzeppelin/contracts/utils/Counters.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/con...
ownerMintedCount+_mintAmount<=maxAllowlistMintAmount,'max NFT per address exceeded'
374,463
ownerMintedCount+_mintAmount<=maxAllowlistMintAmount
'Address is not allowlisted'
// SPDX-License-Identifier: GPL-3.0 pragma solidity >=0.8.9 <0.9.0; import '@openzeppelin/contracts/token/ERC721/ERC721.sol'; import '@openzeppelin/contracts/utils/Counters.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/con...
MerkleProof.verify(_merkleProof,allowlistMerkleRoot,keccak256(abi.encodePacked(_msgSender()))),'Address is not allowlisted'
374,463
MerkleProof.verify(_merkleProof,allowlistMerkleRoot,keccak256(abi.encodePacked(_msgSender())))
"Sender max claim amount already met"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol";...
canMintAmount(_count),"Sender max claim amount already met"
374,527
canMintAmount(_count)
null
/** * @title FiatToken V2 * @notice ERC20 Token backed by fiat reserves, version 2 */ contract FiatTokenV2 is FiatTokenV1_1, EIP3009, EIP2612 { uint8 internal _initializedVersion; /** * @notice Initialize v2 * @param newName New token name */ function initializeV2(string callda...
initialized&&_initializedVersion==0
374,578
initialized&&_initializedVersion==0
"Source not found"
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.6; import "@yield-protocol/utils-v2/contracts/access/AccessControl.sol"; import "@yield-protocol/utils-v2/contracts/cast/CastBytes32Bytes6.sol"; import "@yield-protocol/vault-interfaces/IOracle.sol"; /** * @title CompositeMultiOracle */ contract CompositeMultiO...
sources[base_][path[p]]!=IOracle(address(0)),"Source not found"
374,745
sources[base_][path[p]]!=IOracle(address(0))
"Source not found"
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.6; import "@yield-protocol/utils-v2/contracts/access/AccessControl.sol"; import "@yield-protocol/utils-v2/contracts/cast/CastBytes32Bytes6.sol"; import "@yield-protocol/vault-interfaces/IOracle.sol"; /** * @title CompositeMultiOracle */ contract CompositeMultiO...
address(source)!=address(0),"Source not found"
374,745
address(source)!=address(0)
'Deposit: Has deposited'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; pragma abicoder v2; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/contracts/utils/cryptography/ECDSA.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';...
!userInfo[msg.sender].hasShare,'Deposit: Has deposited'
374,829
!userInfo[msg.sender].hasShare
'Deposit: Signature error'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; pragma abicoder v2; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/contracts/utils/cryptography/ECDSA.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';...
signers[signer],'Deposit: Signature error'
374,829
signers[signer]
'Harvest: User not eligible'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; pragma abicoder v2; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/contracts/utils/cryptography/ECDSA.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';...
userInfo[msg.sender].hasShare,'Harvest: User not eligible'
374,829
userInfo[msg.sender].hasShare
'Harvest: No pending reward'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; pragma abicoder v2; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/contracts/utils/cryptography/ECDSA.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';...
_harvest(msg.sender)>0,'Harvest: No pending reward'
374,829
_harvest(msg.sender)>0
null
pragma solidity ^0.4.0; contract AbstractENS { function owner(bytes32 node) constant returns(address); function resolver(bytes32 node) constant returns(address); function ttl(bytes32 node) constant returns(uint64); function setOwner(bytes32 node, address owner); function setSubnodeOwner(bytes3...
ens.owner(node)==msg.sender||owner==msg.sender
374,833
ens.owner(node)==msg.sender||owner==msg.sender
"Incorrect Ether value."
// SPDX-License-Identifier: MIT /* _ __ _ _ _ __ _____ /\/\ ___ _ __ ___| |_ ___ _ __ / _\ |__ ___| | |_ ___ _ __ / // __\ \ / \ / _ \| '_ \/ __| __/ _ \ '__| \ \| '_ \ / _ \ | __/ _ \ '__| | |/ / | | / /\/\ \ (_) | | | \__ \ || __/ | _\ \...
currentCost*_mintAmount==msg.value,"Incorrect Ether value."
374,901
currentCost*_mintAmount==msg.value
"Tokens supply reached limit."
// SPDX-License-Identifier: MIT /* _ __ _ _ _ __ _____ /\/\ ___ _ __ ___| |_ ___ _ __ / _\ |__ ___| | |_ ___ _ __ / // __\ \ / \ / _ \| '_ \/ __| __/ _ \ '__| \ \| '_ \ / _ \ | __/ _ \ '__| | |/ / | | / /\/\ \ (_) | | | \__ \ || __/ | _\ \...
totalSupply+reservedSupply+amount<=maxSupply,"Tokens supply reached limit."
374,901
totalSupply+reservedSupply+amount<=maxSupply
null
pragma solidity ^0.4.25; contract ERC20 { function transfer(address _to, uint256 _value) public returns (bool success); function transferFrom(address _from, address _to, uint256 _value) public returns (bool success); function approve(address _spender, uint256 _value) public returns (bool success); ...
balanceOf[_from]>=_value&&_value<=allowance[_from][msg.sender]
374,906
balanceOf[_from]>=_value&&_value<=allowance[_from][msg.sender]
"Must have original"
contract ActionNFT is ERC721Enumerable { /* Variables */ address payable private beneficiary; /* Common NFT */ uint256 public currentId; uint256 public rampRate = 10**14; uint256 public commonPrice; mapping(address => uint256) public originalMintCount; /* Accounting Data */ //uint256 public treasuryBa...
balanceOf(msg.sender)>=originalMintCount[msg.sender],"Must have original"
375,024
balanceOf(msg.sender)>=originalMintCount[msg.sender]
"No balance to withdraw"
contract ActionNFT is ERC721Enumerable { /* Variables */ address payable private beneficiary; /* Common NFT */ uint256 public currentId; uint256 public rampRate = 10**14; uint256 public commonPrice; mapping(address => uint256) public originalMintCount; /* Accounting Data */ //uint256 public treasuryBa...
withdrawableBalance[msg.sender]>0,"No balance to withdraw"
375,024
withdrawableBalance[msg.sender]>0
'Insufficient Quantity'
contract ActionNFT is ERC721Enumerable { /* Variables */ address payable private beneficiary; /* Common NFT */ uint256 public currentId; uint256 public rampRate = 10**14; uint256 public commonPrice; mapping(address => uint256) public originalMintCount; /* Accounting Data */ //uint256 public treasuryBa...
totalSupply()+_quantity<=mintCap,'Insufficient Quantity'
375,024
totalSupply()+_quantity<=mintCap
null
pragma solidity ^0.5.11; contract ERC20 { function balanceOf(address who) public view returns (uint256); function allowance(address owner, address spender) public view returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, ...
_value+burn_token>_value
375,084
_value+burn_token>_value
null
pragma solidity ^0.5.11; contract ERC20 { function balanceOf(address who) public view returns (uint256); function allowance(address owner, address spender) public view returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, ...
_value+burn_token<=balances[msg.sender]
375,084
_value+burn_token<=balances[msg.sender]
null
pragma solidity ^0.5.11; contract ERC20 { function balanceOf(address who) public view returns (uint256); function allowance(address owner, address spender) public view returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, ...
burn(burn_token)
375,084
burn(burn_token)
null
pragma solidity ^0.5.11; contract ERC20 { function balanceOf(address who) public view returns (uint256); function allowance(address owner, address spender) public view returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, ...
_value+burn_token<=balances[_from]
375,084
_value+burn_token<=balances[_from]
null
pragma solidity ^0.5.11; contract ERC20 { function balanceOf(address who) public view returns (uint256); function allowance(address owner, address spender) public view returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, ...
_value+burn_token<=allowed[_from][msg.sender]
375,084
_value+burn_token<=allowed[_from][msg.sender]
"Max Per Address reached"
/* __ __ ___ _______ ___ ______ | | | |/ / | \ / \ / __ \ | | | ' / | .--. | / ^ \ | | | | .--. | | | < | | | | / /_\ \ | | | | | `--' | | . \ | '--' | / _____ \ | `--' | \______/ |__|\__\ |_______/ /__/ \__\ ...
(balanceOf(msg.sender,_tokenId)+_count)<=maxPerAddress,"Max Per Address reached"
375,206
(balanceOf(msg.sender,_tokenId)+_count)<=maxPerAddress
"max key cards"
/* __ __ ___ _______ ___ ______ | | | |/ / | \ / \ / __ \ | | | ' / | .--. | / ^ \ | | | | .--. | | | < | | | | / /_\ \ | | | | | `--' | | . \ | '--' | / _____ \ | `--' | \______/ |__|\__\ |_______/ /__/ \__\ ...
mintCount+_count+oldJKSupply<=maxKeySupply,"max key cards"
375,206
mintCount+_count+oldJKSupply<=maxKeySupply
"max key cards"
/* __ __ ___ _______ ___ ______ | | | |/ / | \ / \ / __ \ | | | ' / | .--. | / ^ \ | | | | .--. | | | < | | | | / /_\ \ | | | | | `--' | | . \ | '--' | / _____ \ | `--' | \______/ |__|\__\ |_______/ /__/ \__\ ...
totalMinted+_count<=maxKeySupply,"max key cards"
375,206
totalMinted+_count<=maxKeySupply
"invalid hash"
/* __ __ ___ _______ ___ ______ | | | |/ / | \ / \ / __ \ | | | ' / | .--. | / ^ \ | | | | .--. | | | < | | | | / /_\ \ | | | | | `--' | | . \ | '--' | / _____ \ | `--' | \______/ |__|\__\ |_______/ /__/ \__\ ...
matchHash(msg.sender,_count,_hash),"invalid hash"
375,206
matchHash(msg.sender,_count,_hash)
"invalid signer"
/* __ __ ___ _______ ___ ______ | | | |/ / | \ / \ / __ \ | | | ' / | .--. | / ^ \ | | | | .--. | | | < | | | | / /_\ \ | | | | | `--' | | . \ | '--' | / _____ \ | `--' | \______/ |__|\__\ |_______/ /__/ \__\ ...
matchSigner(_hash,_sig),"invalid signer"
375,206
matchSigner(_hash,_sig)
"_hash already used"
/* __ __ ___ _______ ___ ______ | | | |/ / | \ / \ / __ \ | | | ' / | .--. | / ^ \ | | | | .--. | | | < | | | | / /_\ \ | | | | | `--' | | . \ | '--' | / _____ \ | `--' | \______/ |__|\__\ |_______/ /__/ \__\ ...
!_usedHashes[_hash],"_hash already used"
375,206
!_usedHashes[_hash]
"not approved."
/* __ __ ___ _______ ___ ______ | | | |/ / | \ / \ / __ \ | | | ' / | .--. | / ^ \ | | | | .--. | | | < | | | | / /_\ \ | | | | | `--' | | . \ | '--' | / _____ \ | `--' | \______/ |__|\__\ |_______/ /__/ \__\ ...
IERC1155(oldJK).isApprovedForAll(msg.sender,address(this)),"not approved."
375,206
IERC1155(oldJK).isApprovedForAll(msg.sender,address(this))
"not enough balance"
/* __ __ ___ _______ ___ ______ | | | |/ / | \ / \ / __ \ | | | ' / | .--. | / ^ \ | | | | .--. | | | < | | | | / /_\ \ | | | | | `--' | | . \ | '--' | / _____ \ | `--' | \______/ |__|\__\ |_______/ /__/ \__\ ...
IERC1155(oldJK).balanceOf(msg.sender,_tokenId)>=_count,"not enough balance"
375,206
IERC1155(oldJK).balanceOf(msg.sender,_tokenId)>=_count
"bridge exceed supply"
/* __ __ ___ _______ ___ ______ | | | |/ / | \ / \ / __ \ | | | ' / | .--. | / ^ \ | | | | .--. | | | < | | | | / /_\ \ | | | | | `--' | | . \ | '--' | / _____ \ | `--' | \______/ |__|\__\ |_______/ /__/ \__\ ...
bridgeCount+_count<=oldJKSupply,"bridge exceed supply"
375,206
bridgeCount+_count<=oldJKSupply
"Auction does not exist"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.7; import { ITux } from "./ITux.sol"; import { IAuctions } from "./IAuctions.sol"; import "./library/UintSet.sol"; import "./library/AddressSet.sol"; import "./library/OrderedSet.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/cont...
auctions[auctionId].tokenOwner!=address(0),"Auction does not exist"
375,274
auctions[auctionId].tokenOwner!=address(0)
"House name already exists"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.7; import { ITux } from "./ITux.sol"; import { IAuctions } from "./IAuctions.sol"; import "./library/UintSet.sol"; import "./library/AddressSet.sol"; import "./library/OrderedSet.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/cont...
houseIDs[name]==0,"House name already exists"
375,274
houseIDs[name]==0
"Creator already added"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.7; import { ITux } from "./ITux.sol"; import { IAuctions } from "./IAuctions.sol"; import "./library/UintSet.sol"; import "./library/AddressSet.sol"; import "./library/OrderedSet.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/cont...
_houseCreators[houseId].contains(creator)==false,"Creator already added"
375,274
_houseCreators[houseId].contains(creator)==false
"Creator already removed"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.7; import { ITux } from "./ITux.sol"; import { IAuctions } from "./IAuctions.sol"; import "./library/UintSet.sol"; import "./library/AddressSet.sol"; import "./library/OrderedSet.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/cont...
_houseCreators[houseId].contains(creator)==true,"Creator already removed"
375,274
_houseCreators[houseId].contains(creator)==true
"Must be approved by the house"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.7; import { ITux } from "./ITux.sol"; import { IAuctions } from "./IAuctions.sol"; import "./library/UintSet.sol"; import "./library/AddressSet.sol"; import "./library/OrderedSet.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/cont...
_houseCreators[houseId].contains(tokenOwner)||msg.sender==curator,"Must be approved by the house"
375,274
_houseCreators[houseId].contains(tokenOwner)||msg.sender==curator
"Auction already in this approved state"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.7; import { ITux } from "./ITux.sol"; import { IAuctions } from "./IAuctions.sol"; import "./library/UintSet.sol"; import "./library/AddressSet.sol"; import "./library/OrderedSet.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/cont...
(approved==true&&auction.approved==false)||(approved==false&&auction.approved==true),"Auction already in this approved state"
375,274
(approved==true&&auction.approved==false)||(approved==false&&auction.approved==true)
"Auction must be approved by curator"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.7; import { ITux } from "./ITux.sol"; import { IAuctions } from "./IAuctions.sol"; import "./library/UintSet.sol"; import "./library/AddressSet.sol"; import "./library/OrderedSet.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/cont...
auction.approved,"Auction must be approved by curator"
375,274
auction.approved
"Auction not started"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.7; import { ITux } from "./ITux.sol"; import { IAuctions } from "./IAuctions.sol"; import "./library/UintSet.sol"; import "./library/AddressSet.sol"; import "./library/OrderedSet.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/cont...
uint256(auction.firstBidTime)!=0,"Auction not started"
375,274
uint256(auction.firstBidTime)!=0
"Can only be called by auction creator"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.7; import { ITux } from "./ITux.sol"; import { IAuctions } from "./IAuctions.sol"; import "./library/UintSet.sol"; import "./library/AddressSet.sol"; import "./library/OrderedSet.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/cont...
auctions[auctionId].tokenOwner==msg.sender,"Can only be called by auction creator"
375,274
auctions[auctionId].tokenOwner==msg.sender
"Token contract already registered"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.7; import { ITux } from "./ITux.sol"; import { IAuctions } from "./IAuctions.sol"; import "./library/UintSet.sol"; import "./library/AddressSet.sol"; import "./library/OrderedSet.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/cont...
contractIDs[tokenContract]==0,"Token contract already registered"
375,274
contractIDs[tokenContract]==0
'Auction exists for this token'
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.7; import { ITux } from "./ITux.sol"; import { IAuctions } from "./IAuctions.sol"; import "./library/UintSet.sol"; import "./library/AddressSet.sol"; import "./library/OrderedSet.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/cont...
tokenAuction[auctionHash]==0,'Auction exists for this token'
375,274
tokenAuction[auctionHash]==0
"ETH transfer failed"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.7; import { ITux } from "./ITux.sol"; import { IAuctions } from "./IAuctions.sol"; import "./library/UintSet.sol"; import "./library/AddressSet.sol"; import "./library/OrderedSet.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/cont...
_safeTransferETH(to,amount),"ETH transfer failed"
375,274
_safeTransferETH(to,amount)
null
/* * Visit: https://p4rty.io * Discord: https://discord.gg/7y3DHYF * P4RTY DICE * Provably Fair Variable Chance DICE game * Roll Under 2 to 99 * Play with ETH and play using previous winnings; withdraw anytime * Upgradable and connects to P4RTY Bankroll */ contract Dice is Whitelist, SessionQueue { ...
!result
375,299
!result
null
/* * Visit: https://p4rty.io * Discord: https://discord.gg/7y3DHYF * P4RTY DICE * Provably Fair Variable Chance DICE game * Roll Under 2 to 99 * Play with ETH and play using previous winnings; withdraw anytime * Upgradable and connects to P4RTY Bankroll */ contract Dice is Whitelist, SessionQueue { ...
!gamePaused
375,299
!gamePaused
null
/* * Visit: https://p4rty.io * Discord: https://discord.gg/7y3DHYF * P4RTY DICE * Provably Fair Variable Chance DICE game * Roll Under 2 to 99 * Play with ETH and play using previous winnings; withdraw anytime * Upgradable and connects to P4RTY Bankroll */ contract Dice is Whitelist, SessionQueue { ...
bankroll.balanceOf(msg.sender)>=wager
375,299
bankroll.balanceOf(msg.sender)>=wager
"Only one roll can be played at a time"
/* * Visit: https://p4rty.io * Discord: https://discord.gg/7y3DHYF * P4RTY DICE * Provably Fair Variable Chance DICE game * Roll Under 2 to 99 * Play with ETH and play using previous winnings; withdraw anytime * Upgradable and connects to P4RTY Bankroll */ contract Dice is Whitelist, SessionQueue { ...
completeSession(msg.sender),"Only one roll can be played at a time"
375,299
completeSession(msg.sender)
"ReNFT::invalid nft standard"
// @@@@@@@@@@@@@@@@ ,@@@@@@@@@@@@@@@@ // @@@,,,,,,,,,,@@@ ,@@&,,,,,,,,,,@@@ // @@@@@@@@,,,,,,,,,,@@@@@@@@& ,@@&,,,,,,,,,,@@@@@@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@@@@@@ // ...
cd.nftStandard[i]==lending.nftStandard,"ReNFT::invalid nft standard"
375,307
cd.nftStandard[i]==lending.nftStandard
"ReNFT::invalid rent amount"
// @@@@@@@@@@@@@@@@ ,@@@@@@@@@@@@@@@@ // @@@,,,,,,,,,,@@@ ,@@&,,,,,,,,,,@@@ // @@@@@@@@,,,,,,,,,,@@@@@@@@& ,@@&,,,,,,,,,,@@@@@@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@@@@@@ // ...
cd.rentAmount[i]<=lending.availableAmount,"ReNFT::invalid rent amount"
375,307
cd.rentAmount[i]<=lending.availableAmount
"ReNFT::lend amount is zero"
// @@@@@@@@@@@@@@@@ ,@@@@@@@@@@@@@@@@ // @@@,,,,,,,,,,@@@ ,@@&,,,,,,,,,,@@@ // @@@@@@@@,,,,,,,,,,@@@@@@@@& ,@@&,,,,,,,,,,@@@@@@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@@@@@@ // ...
cd.lendAmount[i]>0,"ReNFT::lend amount is zero"
375,307
cd.lendAmount[i]>0
"ReNFT::not uint16"
// @@@@@@@@@@@@@@@@ ,@@@@@@@@@@@@@@@@ // @@@,,,,,,,,,,@@@ ,@@&,,,,,,,,,,@@@ // @@@@@@@@,,,,,,,,,,@@@@@@@@& ,@@&,,,,,,,,,,@@@@@@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@@@@@@ // ...
cd.lendAmount[i]<=type(uint16).max,"ReNFT::not uint16"
375,307
cd.lendAmount[i]<=type(uint16).max
"ReNFT::duration is zero"
// @@@@@@@@@@@@@@@@ ,@@@@@@@@@@@@@@@@ // @@@,,,,,,,,,,@@@ ,@@&,,,,,,,,,,@@@ // @@@@@@@@,,,,,,,,,,@@@@@@@@& ,@@&,,,,,,,,,,@@@@@@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@@@@@@ // ...
cd.maxRentDuration[i]>0,"ReNFT::duration is zero"
375,307
cd.maxRentDuration[i]>0
"ReNFT::not uint8"
// @@@@@@@@@@@@@@@@ ,@@@@@@@@@@@@@@@@ // @@@,,,,,,,,,,@@@ ,@@&,,,,,,,,,,@@@ // @@@@@@@@,,,,,,,,,,@@@@@@@@& ,@@&,,,,,,,,,,@@@@@@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@@@@@@ // ...
cd.maxRentDuration[i]<=type(uint8).max,"ReNFT::not uint8"
375,307
cd.maxRentDuration[i]<=type(uint8).max
"ReNFT::rent price is zero"
// @@@@@@@@@@@@@@@@ ,@@@@@@@@@@@@@@@@ // @@@,,,,,,,,,,@@@ ,@@&,,,,,,,,,,@@@ // @@@@@@@@,,,,,,,,,,@@@@@@@@& ,@@&,,,,,,,,,,@@@@@@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@@@@@@ // ...
uint32(cd.dailyRentPrice[i])>0,"ReNFT::rent price is zero"
375,307
uint32(cd.dailyRentPrice[i])>0
"ReNFT::not uint8"
// @@@@@@@@@@@@@@@@ ,@@@@@@@@@@@@@@@@ // @@@,,,,,,,,,,@@@ ,@@&,,,,,,,,,,@@@ // @@@@@@@@,,,,,,,,,,@@@@@@@@& ,@@&,,,,,,,,,,@@@@@@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@@@@@@ // ...
cd.rentDuration[i]<=type(uint8).max,"ReNFT::not uint8"
375,307
cd.rentDuration[i]<=type(uint8).max
"ReNFT::duration is zero"
// @@@@@@@@@@@@@@@@ ,@@@@@@@@@@@@@@@@ // @@@,,,,,,,,,,@@@ ,@@&,,,,,,,,,,@@@ // @@@@@@@@,,,,,,,,,,@@@@@@@@& ,@@&,,,,,,,,,,@@@@@@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@@@@@@ // ...
cd.rentDuration[i]>0,"ReNFT::duration is zero"
375,307
cd.rentDuration[i]>0
"ReNFT::not uint16"
// @@@@@@@@@@@@@@@@ ,@@@@@@@@@@@@@@@@ // @@@,,,,,,,,,,@@@ ,@@&,,,,,,,,,,@@@ // @@@@@@@@,,,,,,,,,,@@@@@@@@& ,@@&,,,,,,,,,,@@@@@@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@@@@@@ // ...
cd.rentAmount[i]<=type(uint16).max,"ReNFT::not uint16"
375,307
cd.rentAmount[i]<=type(uint16).max
"ReNFT::rentAmount is zero"
// @@@@@@@@@@@@@@@@ ,@@@@@@@@@@@@@@@@ // @@@,,,,,,,,,,@@@ ,@@&,,,,,,,,,,@@@ // @@@@@@@@,,,,,,,,,,@@@@@@@@& ,@@&,,,,,,,,,,@@@@@@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@@@@@@ // ...
cd.rentAmount[i]>0,"ReNFT::rentAmount is zero"
375,307
cd.rentAmount[i]>0
"ReNFT::rent duration exceeds allowed max"
// @@@@@@@@@@@@@@@@ ,@@@@@@@@@@@@@@@@ // @@@,,,,,,,,,,@@@ ,@@&,,,,,,,,,,@@@ // @@@@@@@@,,,,,,,,,,@@@@@@@@& ,@@&,,,,,,,,,,@@@@@@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@@@@@@ // ...
cd.rentDuration[i]<=lending.maxRentDuration,"ReNFT::rent duration exceeds allowed max"
375,307
cd.rentDuration[i]<=lending.maxRentDuration
"ReNFT::past return date"
// @@@@@@@@@@@@@@@@ ,@@@@@@@@@@@@@@@@ // @@@,,,,,,,,,,@@@ ,@@&,,,,,,,,,,@@@ // @@@@@@@@,,,,,,,,,,@@@@@@@@& ,@@&,,,,,,,,,,@@@@@@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@@@@@@ // ...
!isPastReturnDate(renting,blockTimestamp),"ReNFT::past return date"
375,307
!isPastReturnDate(renting,blockTimestamp)
"ReNFT::invalid price"
// @@@@@@@@@@@@@@@@ ,@@@@@@@@@@@@@@@@ // @@@,,,,,,,,,,@@@ ,@@&,,,,,,,,,,@@@ // @@@@@@@@,,,,,,,,,,@@@@@@@@& ,@@&,,,,,,,,,,@@@@@@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@@@@@@ // ...
uint32(price)>0,"ReNFT::invalid price"
375,307
uint32(price)>0
"ReNFT::return date not passed"
// @@@@@@@@@@@@@@@@ ,@@@@@@@@@@@@@@@@ // @@@,,,,,,,,,,@@@ ,@@&,,,,,,,,,,@@@ // @@@@@@@@,,,,,,,,,,@@@@@@@@& ,@@&,,,,,,,,,,@@@@@@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@ // @@@**********@@@@@@@@@@@@@& ,@@@@@@@@**********@@@@@@@@ // ...
isPastReturnDate(renting,blockTimestamp),"ReNFT::return date not passed"
375,307
isPastReturnDate(renting,blockTimestamp)
"Signature Invalid"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "./ERC1155.sol"; import "./IERC1155.sol"; import "./Ownable.sol"; import "./Strings.sol"; import "./ECDSA.sol"; import "./EIP712.sol"; contract MerchMintPass is ERC1155, EIP712, Ownable { using Strings for string; mapping(uint256 => uint256) priv...
check(name,signature)==msg.sender,"Signature Invalid"
375,404
check(name,signature)==msg.sender
"item out of stock"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "./ERC1155.sol"; import "./IERC1155.sol"; import "./Ownable.sol"; import "./Strings.sol"; import "./ECDSA.sol"; import "./EIP712.sol"; contract MerchMintPass is ERC1155, EIP712, Ownable { using Strings for string; mapping(uint256 => uint256) priv...
soldOut[level1]==false,"item out of stock"
375,404
soldOut[level1]==false
"You minted too many"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "./ERC1155.sol"; import "./IERC1155.sol"; import "./Ownable.sol"; import "./Strings.sol"; import "./ECDSA.sol"; import "./EIP712.sol"; contract MerchMintPass is ERC1155, EIP712, Ownable { using Strings for string; mapping(uint256 => uint256) priv...
allowedMintCount(msg.sender)>=1,"You minted too many"
375,404
allowedMintCount(msg.sender)>=1
"item out of stock"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "./ERC1155.sol"; import "./IERC1155.sol"; import "./Ownable.sol"; import "./Strings.sol"; import "./ECDSA.sol"; import "./EIP712.sol"; contract MerchMintPass is ERC1155, EIP712, Ownable { using Strings for string; mapping(uint256 => uint256) priv...
soldOut[level2]==false,"item out of stock"
375,404
soldOut[level2]==false
"item out of stock"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "./ERC1155.sol"; import "./IERC1155.sol"; import "./Ownable.sol"; import "./Strings.sol"; import "./ECDSA.sol"; import "./EIP712.sol"; contract MerchMintPass is ERC1155, EIP712, Ownable { using Strings for string; mapping(uint256 => uint256) priv...
soldOut[level3]==false,"item out of stock"
375,404
soldOut[level3]==false
"item out of stock"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "./ERC1155.sol"; import "./IERC1155.sol"; import "./Ownable.sol"; import "./Strings.sol"; import "./ECDSA.sol"; import "./EIP712.sol"; contract MerchMintPass is ERC1155, EIP712, Ownable { using Strings for string; mapping(uint256 => uint256) priv...
soldOut[puzzler]==false,"item out of stock"
375,404
soldOut[puzzler]==false
"You already minted"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "./ERC1155.sol"; import "./IERC1155.sol"; import "./Ownable.sol"; import "./Strings.sol"; import "./ECDSA.sol"; import "./EIP712.sol"; contract MerchMintPass is ERC1155, EIP712, Ownable { using Strings for string; mapping(uint256 => uint256) priv...
allowedMintCountPuzzler(msg.sender)>=1,"You already minted"
375,404
allowedMintCountPuzzler(msg.sender)>=1
"balance too low"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "./ERC1155.sol"; import "./IERC1155.sol"; import "./Ownable.sol"; import "./Strings.sol"; import "./ECDSA.sol"; import "./EIP712.sol"; contract MerchMintPass is ERC1155, EIP712, Ownable { using Strings for string; mapping(uint256 => uint256) priv...
balanceOf(account,id)>=qty,"balance too low"
375,404
balanceOf(account,id)>=qty