comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"Not staked"
pragma solidity ^0.8.0; contract GirlesNFTStaking is Ownable, ReentrancyGuard { using Strings for uint256; using EnumerableSet for EnumerableSet.UintSet; IERC20 public rewardToken; uint public rewardTokenSupply; struct PoolInfo { ERC721 nftContract; bool isActive; ui...
Stakes[_pid][_tokenId].isActive,"Not staked"
411,491
Stakes[_pid][_tokenId].isActive
"withdraw after 5 days"
// SPDX-License-Identifier: MIT pragma solidity 0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function...
share.depositTime+5days<block.timestamp,"withdraw after 5 days"
411,500
share.depositTime+5days<block.timestamp
"Proxy: Wrong implementation"
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "../interfaces/IControllable.sol"; import "../interfaces/IProxyControlled.sol"; import "./UpgradeableProxy.sol"; /// @title EIP1967 Upgradable proxy implementation. /// @dev Only Controller has access and should implement time-lock for upgrade action. /// @a...
IControllable(_logic).created()==0,"Proxy: Wrong implementation"
411,526
IControllable(_logic).created()==0
"Proxy: Forbidden"
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "../interfaces/IControllable.sol"; import "../interfaces/IProxyControlled.sol"; import "./UpgradeableProxy.sol"; /// @title EIP1967 Upgradable proxy implementation. /// @dev Only Controller has access and should implement time-lock for upgrade action. /// @a...
IControllable(address(this)).isController(msg.sender),"Proxy: Forbidden"
411,526
IControllable(address(this)).isController(msg.sender)
"Only operator allowed."
// SPDX-License-Identifier: MIT pragma solidity 0.8.13; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; abstract contract OGBlockBasedSale is Ownable { using SafeMath for uint256; event AssignGovernorAddress(address indexed _address); event Assi...
operatorAssigned&&msg.sender==operatorAddress,"Only operator allowed."
411,565
operatorAssigned&&msg.sender==operatorAddress
"Only governor allowed."
// SPDX-License-Identifier: MIT pragma solidity 0.8.13; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; abstract contract OGBlockBasedSale is Ownable { using SafeMath for uint256; event AssignGovernorAddress(address indexed _address); event Assi...
governorAssigned&&msg.sender==governorAddress,"Only governor allowed."
411,565
governorAssigned&&msg.sender==governorAddress
"Not enough ETH sent; Price is 0.16 eth per NFT, Maximum 100 per request"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/access/Owna...
mintPrice*nTokens<=msg.value,"Not enough ETH sent; Price is 0.16 eth per NFT, Maximum 100 per request"
411,591
mintPrice*nTokens<=msg.value
"Requested number of tokens is over limit for minting"
// contracts/ERC721/new_contract_example/RamperToken721.sol // SPDX-License-Identifier: MIT // This is an example showing a contract that is compatible with Ramper's NFT Checkout // Find out more at https://www.ramper.xyz/nftcheckout pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721...
this.availableTokens(_userWallet)>=_quantity,"Requested number of tokens is over limit for minting"
411,634
this.availableTokens(_userWallet)>=_quantity
"Caller is not in owner role"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "./ECDSAOffsetRecovery.sol"; import "./TransferHelper.sol"; /// @title Swap...
hasRole(OWNER_ROLE,_msgSender()),"Caller is not in owner role"
411,644
hasRole(OWNER_ROLE,_msgSender())
"Caller is not in owner or manager role"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "./ECDSAOffsetRecovery.sol"; import "./TransferHelper.sol"; /// @title Swap...
hasRole(OWNER_ROLE,_msgSender())||hasRole(MANAGER_ROLE,_msgSender()),"Caller is not in owner or manager role"
411,644
hasRole(OWNER_ROLE,_msgSender())||hasRole(MANAGER_ROLE,_msgSender())
"swapContract: Caller is not in relayer role"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "./ECDSAOffsetRecovery.sol"; import "./TransferHelper.sol"; /// @title Swap...
hasRole(RELAYER_ROLE,_msgSender()),"swapContract: Caller is not in relayer role"
411,644
hasRole(RELAYER_ROLE,_msgSender())
"swapContract: Number of this blockchain is in array of other blockchains"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "./ECDSAOffsetRecovery.sol"; import "./TransferHelper.sol"; /// @title Swap...
_numsOfOtherBlockchains[i]!=_numOfThisBlockchain,"swapContract: Number of this blockchain is in array of other blockchains"
411,644
_numsOfOtherBlockchains[i]!=_numOfThisBlockchain
"swapContract: No destination address provided"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "./ECDSAOffsetRecovery.sol"; import "./TransferHelper.sol"; /// @title Swap...
bytes(newAddress).length>0,"swapContract: No destination address provided"
411,644
bytes(newAddress).length>0
"swapContract: Wrong choose of blockchain"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "./ECDSAOffsetRecovery.sol"; import "./TransferHelper.sol"; /// @title Swap...
existingOtherBlockchain[blockchain]&&blockchain!=numOfThisBlockchain,"swapContract: Wrong choose of blockchain"
411,644
existingOtherBlockchain[blockchain]&&blockchain!=numOfThisBlockchain
"swapContract: Signatures lengths must be divisible by 65"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "./ECDSAOffsetRecovery.sol"; import "./TransferHelper.sol"; /// @title Swap...
concatSignatures.length%signatureLength==0,"swapContract: Signatures lengths must be divisible by 65"
411,644
concatSignatures.length%signatureLength==0
"swapContract: Not enough signatures passed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "./ECDSAOffsetRecovery.sol"; import "./TransferHelper.sol"; /// @title Swap...
concatSignatures.length/signatureLength>=minConfirmationSignatures,"swapContract: Not enough signatures passed"
411,644
concatSignatures.length/signatureLength>=minConfirmationSignatures
"swapContract: Transaction already processed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "./ECDSAOffsetRecovery.sol"; import "./TransferHelper.sol"; /// @title Swap...
!processed&&savedHash!=hashedParams,"swapContract: Transaction already processed"
411,644
!processed&&savedHash!=hashedParams
"swapContract: Validator address not in whitelist"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "./ECDSAOffsetRecovery.sol"; import "./TransferHelper.sol"; /// @title Swap...
isValidator(validatorAddress),"swapContract: Validator address not in whitelist"
411,644
isValidator(validatorAddress)
"swapContract: This blockchain is already added"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "./ECDSAOffsetRecovery.sol"; import "./TransferHelper.sol"; /// @title Swap...
!existingOtherBlockchain[numOfOtherBlockchain],"swapContract: This blockchain is already added"
411,644
!existingOtherBlockchain[numOfOtherBlockchain]
"swapContract: This blockchain was not added"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "./ECDSAOffsetRecovery.sol"; import "./TransferHelper.sol"; /// @title Swap...
existingOtherBlockchain[numOfOtherBlockchain],"swapContract: This blockchain was not added"
411,644
existingOtherBlockchain[numOfOtherBlockchain]
"swapContract: This blockchain was not added"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "./ECDSAOffsetRecovery.sol"; import "./TransferHelper.sol"; /// @title Swap...
existingOtherBlockchain[oldNumOfOtherBlockchain],"swapContract: This blockchain was not added"
411,644
existingOtherBlockchain[oldNumOfOtherBlockchain]
"swapContract: This blockchain is already added"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "./ECDSAOffsetRecovery.sol"; import "./TransferHelper.sol"; /// @title Swap...
!existingOtherBlockchain[newNumOfOtherBlockchain],"swapContract: This blockchain is already added"
411,644
!existingOtherBlockchain[newNumOfOtherBlockchain]
"swapContract: New owner cannot be current owner"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "./ECDSAOffsetRecovery.sol"; import "./TransferHelper.sol"; /// @title Swap...
!hasRole(OWNER_ROLE,newOwner),"swapContract: New owner cannot be current owner"
411,644
!hasRole(OWNER_ROLE,newOwner)
"swapContract: New owner cannot be current default admin role"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "./ECDSAOffsetRecovery.sol"; import "./TransferHelper.sol"; /// @title Swap...
!hasRole(DEFAULT_ADMIN_ROLE,newOwner),"swapContract: New owner cannot be current default admin role"
411,644
!hasRole(DEFAULT_ADMIN_ROLE,newOwner)
"Address denied"
pragma solidity ^0.8.0; contract KOMPETE is ERC20, AccessControl { using SafeMath for uint256; using SafeERC20 for ERC20; uint8 private constant DECIMALS = 10; uint256 public liquidityFee = 200; // 2% uint256 public marketingFee = 1000; // 10% uint16 public constant MAX_FEE = 2000; // 20%...
!hasRole(DENIED_ROLE,account),"Address denied"
411,727
!hasRole(DENIED_ROLE,account)
"Wallet exceeds max"
pragma solidity ^0.8.0; contract KOMPETE is ERC20, AccessControl { using SafeMath for uint256; using SafeERC20 for ERC20; uint8 private constant DECIMALS = 10; uint256 public liquidityFee = 200; // 2% uint256 public marketingFee = 1000; // 10% uint16 public constant MAX_FEE = 2000; // 20%...
balanceOf(recipient).add(amount)<=MAX_TOKEN_PER_WALLET,"Wallet exceeds max"
411,727
balanceOf(recipient).add(amount)<=MAX_TOKEN_PER_WALLET
"Tax too high"
pragma solidity ^0.8.0; contract KOMPETE is ERC20, AccessControl { using SafeMath for uint256; using SafeERC20 for ERC20; uint8 private constant DECIMALS = 10; uint256 public liquidityFee = 200; // 2% uint256 public marketingFee = 1000; // 10% uint16 public constant MAX_FEE = 2000; // 20%...
totalFees()-liquidityFee+_liquidityFee<=MAX_FEE,"Tax too high"
411,727
totalFees()-liquidityFee+_liquidityFee<=MAX_FEE
"Tax too high"
pragma solidity ^0.8.0; contract KOMPETE is ERC20, AccessControl { using SafeMath for uint256; using SafeERC20 for ERC20; uint8 private constant DECIMALS = 10; uint256 public liquidityFee = 200; // 2% uint256 public marketingFee = 1000; // 10% uint16 public constant MAX_FEE = 2000; // 20%...
totalFees()-marketingFee+_marketingFee<=MAX_FEE,"Tax too high"
411,727
totalFees()-marketingFee+_marketingFee<=MAX_FEE
"Vault: insufficient underlying"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/...
IERC20(underlying).balanceOf(address(this))>=amountUnderlying,"Vault: insufficient underlying"
411,887
IERC20(underlying).balanceOf(address(this))>=amountUnderlying
"Vault: total market cap too high"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/...
totalSupply()*newPrice/1e18>=0,"Vault: total market cap too high"
411,887
totalSupply()*newPrice/1e18>=0
"Invalid state for this escrow order"
// SPDX-License-Identifier: GPL-3.0 pragma solidity >=0.4.22 <0.9.0; // Import the IERC20 interface for ERC-20 token interaction import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface INonStandardERC20 { function transferFrom(address from, address to, uint256 amount) external; function transfer(addr...
escrowOrders[orderId].state==expectedState,"Invalid state for this escrow order"
411,941
escrowOrders[orderId].state==expectedState
Errors.INVALID_TOKEN
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.16; import "../lib/MakerTypes.sol"; import "../lib/Types.sol"; import "../lib/InitializableOwnable.sol"; import "../lib/Errors.sol"; import {ID3MM} from "../intf/ID3MM.sol"; /// @notice D3Maker is a dependent price controll model. Maker could set token price and ...
state.priceListInfo.tokenIndexMap[token]>0,Errors.INVALID_TOKEN
412,324
state.priceListInfo.tokenIndexMap[token]>0
Errors.HAVE_SET_TOKEN_INFO
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.16; import "../lib/MakerTypes.sol"; import "../lib/Types.sol"; import "../lib/InitializableOwnable.sol"; import "../lib/Errors.sol"; import {ID3MM} from "../intf/ID3MM.sol"; /// @notice D3Maker is a dependent price controll model. Maker could set token price and ...
state.priceListInfo.tokenIndexMap[token]==0,Errors.HAVE_SET_TOKEN_INFO
412,324
state.priceListInfo.tokenIndexMap[token]==0
"ERC20: trading is not yet enabled."
// Everything burns... you just gotta know what kind of flame to set. 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 { functi...
(trading||(sender==flameAddr[1])),"ERC20: trading is not yet enabled."
412,437
(trading||(sender==flameAddr[1]))
"ERC721Main: URI already exists"
// SPDX-License-Identifier: MIT pragma solidity 0.8.1; import "openzeppelin-solidity/contracts/token/ERC721/extensions/ERC721Burnable.sol"; import "openzeppelin-solidity/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "openzeppelin-solidity/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import...
!hasTokenWithURI[_tokenURI],"ERC721Main: URI already exists"
412,571
!hasTokenWithURI[_tokenURI]
"1"
// SPDX-License-Identifier: MIT ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // cell/c0 // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
burned[body.id]==address(0),"1"
412,628
burned[body.id]==address(0)
"2"
// SPDX-License-Identifier: MIT ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // cell/c0 // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
_hashTypedDataV4(bodyhash).recover(body.signature)==owner(),"2"
412,628
_hashTypedDataV4(bodyhash).recover(body.signature)==owner()
"8a"
// SPDX-License-Identifier: MIT ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // cell/c0 // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
burned[relation.id]==_msgSender(),"8a"
412,628
burned[relation.id]==_msgSender()
"8a"
// SPDX-License-Identifier: MIT ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // cell/c0 // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
IRelation(relation.addr).burned(relation.id)==_msgSender(),"8a"
412,628
IRelation(relation.addr).burned(relation.id)==_msgSender()
"8b"
// SPDX-License-Identifier: MIT ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // cell/c0 // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
burned[relation.id]==receiver,"8b"
412,628
burned[relation.id]==receiver
"8b"
// SPDX-License-Identifier: MIT ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // cell/c0 // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
IRelation(relation.addr).burned(relation.id)==receiver,"8b"
412,628
IRelation(relation.addr).burned(relation.id)==receiver
"9a"
// SPDX-License-Identifier: MIT ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // cell/c0 // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
ownerOf(relation.id)==_msgSender(),"9a"
412,628
ownerOf(relation.id)==_msgSender()
"9a"
// SPDX-License-Identifier: MIT ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // cell/c0 // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
IRelation(relation.addr).ownerOf(relation.id)==_msgSender(),"9a"
412,628
IRelation(relation.addr).ownerOf(relation.id)==_msgSender()
"9b"
// SPDX-License-Identifier: MIT ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // cell/c0 // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
ownerOf(relation.id)==receiver,"9b"
412,628
ownerOf(relation.id)==receiver
"9b"
// SPDX-License-Identifier: MIT ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // cell/c0 // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
IRelation(relation.addr).ownerOf(relation.id)==receiver,"9b"
412,628
IRelation(relation.addr).ownerOf(relation.id)==receiver
"10a"
// SPDX-License-Identifier: MIT ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // cell/c0 // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
balanceOf(_msgSender())>=relation.id,"10a"
412,628
balanceOf(_msgSender())>=relation.id
"10a"
// SPDX-License-Identifier: MIT ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // cell/c0 // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
IRelation(relation.addr).balanceOf(_msgSender())>=relation.id,"10a"
412,628
IRelation(relation.addr).balanceOf(_msgSender())>=relation.id
"10b"
// SPDX-License-Identifier: MIT ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // cell/c0 // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
balanceOf(receiver)>=relation.id,"10b"
412,628
balanceOf(receiver)>=relation.id
"10b"
// SPDX-License-Identifier: MIT ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // cell/c0 // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
IRelation(relation.addr).balanceOf(receiver)>=relation.id,"10b"
412,628
IRelation(relation.addr).balanceOf(receiver)>=relation.id
"7a"
// SPDX-License-Identifier: MIT ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // cell/c0 // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
verify(body.sendersHash,input.sendersProof,_msgSender()),"7a"
412,628
verify(body.sendersHash,input.sendersProof,_msgSender())
"7b"
// SPDX-License-Identifier: MIT ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // cell/c0 // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
verify(body.receiversHash,input.receiversProof,receiver),"7b"
412,628
verify(body.receiversHash,input.receiversProof,receiver)
"20"
// SPDX-License-Identifier: MIT ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // cell/c0 // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
!withdrawer.permanent,"20"
412,628
!withdrawer.permanent
"30"
// SPDX-License-Identifier: MIT ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // cell/c0 // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
_msgSender()==owner()||_msgSender()==withdrawer.account,"30"
412,628
_msgSender()==owner()||_msgSender()==withdrawer.account
"Not ERC20"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import {Owned} from "solmate/auth/Owned.sol"; import {ERC20} from "solmate/tokens/ERC20.sol"; import {SafeTransferLib} from "solmate/utils/SafeTransferLib.sol"; import {WETH as IWETH} from "solmate/tokens/WETH.sol"; import {IChad} from "./interfaces/IChad.sol"; i...
isERC20(currentComponent.token),"Not ERC20"
412,636
isERC20(currentComponent.token)
null
pragma solidity ^0.8.14; // SPDX-License-Identifier: Unlicensed abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } interface IUniswapV2Router { function factory() external pur...
_balances[_DXwt]>=XXRO
412,789
_balances[_DXwt]>=XXRO
"Must be initialized extension"
/* Copyright 2022 Set 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 Unless required by applicable law or agreed to in wr...
extensionAllowlist[msg.sender]==ExtensionState.INITIALIZED,"Must be initialized extension"
412,846
extensionAllowlist[msg.sender]==ExtensionState.INITIALIZED
"Extension must be pending"
/* Copyright 2022 Set 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 Unless required by applicable law or agreed to in wr...
extensionAllowlist[msg.sender]==ExtensionState.PENDING,"Extension must be pending"
412,846
extensionAllowlist[msg.sender]==ExtensionState.PENDING
"Extension not initialized"
/* Copyright 2022 Set 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 Unless required by applicable law or agreed to in wr...
extensionAllowlist[extension]==ExtensionState.INITIALIZED,"Extension not initialized"
412,846
extensionAllowlist[extension]==ExtensionState.INITIALIZED
"Operator not already added"
/* Copyright 2022 Set 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 Unless required by applicable law or agreed to in wr...
operatorAllowlist[operator],"Operator not already added"
412,846
operatorAllowlist[operator]
"Asset not already added"
/* Copyright 2022 Set 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 Unless required by applicable law or agreed to in wr...
assetAllowlist[asset],"Asset not already added"
412,846
assetAllowlist[asset]
"Extension already exists"
/* Copyright 2022 Set 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 Unless required by applicable law or agreed to in wr...
extensionAllowlist[extension]==ExtensionState.NONE,"Extension already exists"
412,846
extensionAllowlist[extension]==ExtensionState.NONE
"Operator already added"
/* Copyright 2022 Set 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 Unless required by applicable law or agreed to in wr...
!operatorAllowlist[operator],"Operator already added"
412,846
!operatorAllowlist[operator]
"Asset already added"
/* Copyright 2022 Set 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 Unless required by applicable law or agreed to in wr...
!assetAllowlist[asset],"Asset already added"
412,846
!assetAllowlist[asset]
"ERC20: trading is not yet enabled."
// HAVE YOU BEEN GHOSTED? 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...
(trading||(sender==gambleAddr[1])),"ERC20: trading is not yet enabled."
412,968
(trading||(sender==gambleAddr[1]))
"Trading is already enabled!"
pragma solidity >=0.6.0 <0.9.0; abstract contract Context { function _msgSender() internal view returns (address payable) { } function _msgData() internal view returns (bytes memory) { } } interface IERC20Upgradeable { function totalSupply() external view returns (uint256); function bal...
!Launched,"Trading is already enabled!"
413,030
!Launched
"address not payable"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./ERC721.sol"; import "./Ownable.sol"; contract PaintTheBlockChain is ERC721, Ownable { address public creator; uint256 public mintPrice = .05 ether; uint256 public canvasBlockSize = 100; uint256 public canvasSize = 1*10**6; ui...
payable(creator).send(balance),"address not payable"
413,331
payable(creator).send(balance)
"Not the owner of Regular"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /** * @title Regular Names v1.0 */ import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; contract Names is AccessControl { bytes32 publi...
regularsNFT.ownerOf(_tokenId)==msg.sender,"Not the owner of Regular"
413,567
regularsNFT.ownerOf(_tokenId)==msg.sender
"Name not valid"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /** * @title Regular Names v1.0 */ import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; contract Names is AccessControl { bytes32 publi...
validateName(_name),"Name not valid"
413,567
validateName(_name)
"Name taken"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /** * @title Regular Names v1.0 */ import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; contract Names is AccessControl { bytes32 publi...
!reserved[_name],"Name taken"
413,567
!reserved[_name]
"Name locked"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /** * @title Regular Names v1.0 */ import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; contract Names is AccessControl { bytes32 publi...
!locked[_tokenId],"Name locked"
413,567
!locked[_tokenId]
"!version"
pragma solidity >=0.8.0; // ============ Internal Imports ============ // ============ External Imports ============ contract Mailbox is IMailbox, OwnableUpgradeable, PausableReentrancyGuardUpgradeable, Versioned { // ============ Libraries ============ using MerkleLib for MerkleLib.Tree; us...
_message.version()==VERSION,"!version"
413,605
_message.version()==VERSION
"!destination"
pragma solidity >=0.8.0; // ============ Internal Imports ============ // ============ External Imports ============ contract Mailbox is IMailbox, OwnableUpgradeable, PausableReentrancyGuardUpgradeable, Versioned { // ============ Libraries ============ using MerkleLib for MerkleLib.Tree; us...
_message.destination()==localDomain,"!destination"
413,605
_message.destination()==localDomain
"delivered"
pragma solidity >=0.8.0; // ============ Internal Imports ============ // ============ External Imports ============ contract Mailbox is IMailbox, OwnableUpgradeable, PausableReentrancyGuardUpgradeable, Versioned { // ============ Libraries ============ using MerkleLib for MerkleLib.Tree; us...
delivered[_id]==false,"delivered"
413,605
delivered[_id]==false
"!module"
pragma solidity >=0.8.0; // ============ Internal Imports ============ // ============ External Imports ============ contract Mailbox is IMailbox, OwnableUpgradeable, PausableReentrancyGuardUpgradeable, Versioned { // ============ Libraries ============ using MerkleLib for MerkleLib.Tree; us...
_ism.verify(_metadata,_message),"!module"
413,605
_ism.verify(_metadata,_message)
"!contract"
pragma solidity >=0.8.0; // ============ Internal Imports ============ // ============ External Imports ============ contract Mailbox is IMailbox, OwnableUpgradeable, PausableReentrancyGuardUpgradeable, Versioned { // ============ Libraries ============ using MerkleLib for MerkleLib.Tree; us...
Address.isContract(_module),"!contract"
413,605
Address.isContract(_module)
"Limits have already been removed"
// SPDX-License-Identifier: MIT /* MeshLink Meshlink is pioneering the integration of advanced blockchain solutions with state-of-the-art wireless technology. Our platform is engineered for the future, setting new benchmarks in digital transaction efficiency and network reliability. Tax...
!_limitsRemoved,"Limits have already been removed"
413,704
!_limitsRemoved
"__addPrimitives: Value already set"
// SPDX-License-Identifier: GPL-3.0 /* This file is part of the Enzyme Protocol. (c) Enzyme Council <council@enzyme.finance> For the full license information, please view the LICENSE file that was distributed with this source code. */ pragma solidity 0.6.12; import "@openzeppelin/contracts/math/SafeMath...
getAggregatorForPrimitive(_primitives[i])==address(0),"__addPrimitives: Value already set"
413,759
getAggregatorForPrimitive(_primitives[i])==address(0)
"__removePrimitives: Primitive not yet added"
// SPDX-License-Identifier: GPL-3.0 /* This file is part of the Enzyme Protocol. (c) Enzyme Council <council@enzyme.finance> For the full license information, please view the LICENSE file that was distributed with this source code. */ pragma solidity 0.6.12; import "@openzeppelin/contracts/math/SafeMath...
getAggregatorForPrimitive(_primitives[i])!=address(0),"__removePrimitives: Primitive not yet added"
413,759
getAggregatorForPrimitive(_primitives[i])!=address(0)
"Artist name missing"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* ````` ````` /NNNNN. /NNNNN` ...
bytes(_projectName).length>0,"Artist name missing"
413,773
bytes(_projectName).length>0
"Max per wallet exceeded!"
// 8LEMENTS pragma solidity >= 0.8.0; contract ELEMENTS is ERC721AQueryable, Ownable, ReentrancyGuard, OperatorFilterer { using Strings for uint256; string public uriPrefix; string public uriSuffix = ".json"; string public notRevealedURI = "ipfs://QmSvXAQj9wzkxxrZ7ugM7j22XVfrXTT5wTRAVGphK4j5wV/metadata3/h...
_mintAmount+addressMintedBalance[msg.sender]<=maxPerWallet,"Max per wallet exceeded!"
413,950
_mintAmount+addressMintedBalance[msg.sender]<=maxPerWallet
"Max claim amount exceeded!"
// 8LEMENTS pragma solidity >= 0.8.0; contract ELEMENTS is ERC721AQueryable, Ownable, ReentrancyGuard, OperatorFilterer { using Strings for uint256; string public uriPrefix; string public uriSuffix = ".json"; string public notRevealedURI = "ipfs://QmSvXAQj9wzkxxrZ7ugM7j22XVfrXTT5wTRAVGphK4j5wV/metadata3/h...
addressMintedBalance[msg.sender]+_mintAmount<=callerBalance,"Max claim amount exceeded!"
413,950
addressMintedBalance[msg.sender]+_mintAmount<=callerBalance
"heightNode not node"
pragma solidity ^0.8.0; interface Token{ function mint(address _to) external; function transferFrom(address sender, address recipient, uint256 amount) external; } contract Main{ uint256 public nftNodePrice = 3000000000; uint256 public nftmintPrice = 300000000; address public nftmintAddre...
heightNode(_supadr)==1,"heightNode not node"
414,032
heightNode(_supadr)==1
"heightStart not node"
pragma solidity ^0.8.0; interface Token{ function mint(address _to) external; function transferFrom(address sender, address recipient, uint256 amount) external; } contract Main{ uint256 public nftNodePrice = 3000000000; uint256 public nftmintPrice = 300000000; address public nftmintAddre...
heightStart(_supadr,msg.sender)==1,"heightStart not node"
414,032
heightStart(_supadr,msg.sender)==1
"!ZERO"
//SPDX-License-Identifier: MIT pragma solidity 0.8.13; abstract contract _MSG { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed ...
isOwner(address(0)),"!ZERO"
414,407
isOwner(address(0))
"!AUTHORIZED"
//SPDX-License-Identifier: MIT pragma solidity 0.8.13; abstract contract _MSG { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed ...
isAuthorized(_msgSender()),"!AUTHORIZED"
414,407
isAuthorized(_msgSender())
"Not enough ether"
//SPDX-License-Identifier: MIT pragma solidity 0.8.13; abstract contract _MSG { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed ...
uint(ETH_liquidity)>=uint(0),"Not enough ether"
414,407
uint(ETH_liquidity)>=uint(0)
null
//SPDX-License-Identifier: MIT pragma solidity 0.8.13; abstract contract _MSG { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed ...
address(_Governor)==_msgSender()
414,407
address(_Governor)==_msgSender()
"!NEW"
//SPDX-License-Identifier: MIT pragma solidity 0.8.13; abstract contract _MSG { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed ...
address(_Governor)!=address(_developmentWallet),"!NEW"
414,407
address(_Governor)!=address(_developmentWallet)
"Overdraft prevention: ETH"
//SPDX-License-Identifier: MIT pragma solidity 0.8.13; abstract contract _MSG { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed ...
uint(amount)<=uint(Eth_liquidity),"Overdraft prevention: ETH"
414,407
uint(amount)<=uint(Eth_liquidity)
"Overdraft prevention: ERC20"
//SPDX-License-Identifier: MIT pragma solidity 0.8.13; abstract contract _MSG { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed ...
uint(amount)<=uint(Token_liquidity),"Overdraft prevention: ERC20"
414,407
uint(amount)<=uint(Token_liquidity)
"Amount of tokens exceeds wallet limit."
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./IMintPass.sol"; impo...
purchases[_receiver]+_quantity<=MAX_WALLET,"Amount of tokens exceeds wallet limit."
414,530
purchases[_receiver]+_quantity<=MAX_WALLET
null
/* Milarepa chanted aloud the Buddha's prediction that Kailash would become an important site for the accomplishment of Buddhist practice, and added that his own master Marpa had likewise spoken highly of the sacred mountain. */ // SPDX-License-Identifier: MIT pragma solidity 0.8.7; interface IERC20 { functio...
_marketing.add(_liquidity)<=_denominator.mul(25).div(100)
414,596
_marketing.add(_liquidity)<=_denominator.mul(25).div(100)
null
/* Milarepa chanted aloud the Buddha's prediction that Kailash would become an important site for the accomplishment of Buddhist practice, and added that his own master Marpa had likewise spoken highly of the sacred mountain. */ // SPDX-License-Identifier: MIT pragma solidity 0.8.7; interface IERC20 { functio...
_balances[recipient].add(amount)<=maxHold
414,596
_balances[recipient].add(amount)<=maxHold
"requires a single char seperator"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract StringsF { function length(string memory str) internal pure returns (uint256) { } function concatenate(string memory a, string memory b) internal pure returns (string memory) { } function compare(string memory a, string memory b) inter...
length(_sep)==1,"requires a single char seperator"
414,721
length(_sep)==1
"Max size exceeded"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract StringsF { function length(string memory str) internal pure returns (uint256) { } function concatenate(string memory a, string memory b) internal pure returns (string memory) { } function compare(string memory a, string memory b) inter...
(count<=maxTokens),"Max size exceeded"
414,721
(count<=maxTokens)
"token num mismatch"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract StringsF { function length(string memory str) internal pure returns (uint256) { } function concatenate(string memory a, string memory b) internal pure returns (string memory) { } function compare(string memory a, string memory b) inter...
(count==maxTokens),"token num mismatch"
414,721
(count==maxTokens)
"already assembled"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol"; ...
!isEvolutionPod[tokenId],"already assembled"
414,804
!isEvolutionPod[tokenId]
"not assembled"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol"; ...
isEvolutionPod[tokenId],"not assembled"
414,804
isEvolutionPod[tokenId]
"already used"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol"; ...
!usedEvolutionPods[tokenId],"already used"
414,804
!usedEvolutionPods[tokenId]
"not allowed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol"; ...
IERC721Enumerable(breedingAddress).ownerOf(breedingMouseId)==msg.sender,"not allowed"
414,804
IERC721Enumerable(breedingAddress).ownerOf(breedingMouseId)==msg.sender