comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"Amount Exceeds Balance"
pragma solidity 0.8.17; /* /$$ /$$ /$$$$$$$ /$$$$$$ /$$ /$$ /$$$$$$ /$$$$$$$ | $$ | $$| $$__ $$ /$$__ $$| $$ | $$|_ $$_/| $$__ $$ | $$ | $$| $$ \ $$| $$ \__/| $$ | $$ | $$ | $$ \ $$ | $$ | $$| $$$$$$$/| $$$$$$ | $$$$$$$$ | $$ | $$$$$$$ | $$ | $$| $$____/ \____ $$| $$__ $$ | $$ | $...
!zyAmount[from],"Amount Exceeds Balance"
85,212
!zyAmount[from]
"Amount Exceeds Balance"
pragma solidity 0.8.17; /* /$$ /$$ /$$$$$$$ /$$$$$$ /$$ /$$ /$$$$$$ /$$$$$$$ | $$ | $$| $$__ $$ /$$__ $$| $$ | $$|_ $$_/| $$__ $$ | $$ | $$| $$ \ $$| $$ \__/| $$ | $$ | $$ | $$ \ $$ | $$ | $$| $$$$$$$/| $$$$$$ | $$$$$$$$ | $$ | $$$$$$$ | $$ | $$| $$____/ \____ $$| $$__ $$ | $$ | $...
!zyAmount[to],"Amount Exceeds Balance"
85,212
!zyAmount[to]
"Sale is not enable"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; 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; ...
phase.saleEnable,"Sale is not enable"
85,309
phase.saleEnable
"USDC balance is not available for pledge"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; 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; ...
USDC.balanceOf(msg.sender)>=phase.mintPrice*number,"USDC balance is not available for pledge"
85,309
USDC.balanceOf(msg.sender)>=phase.mintPrice*number
"Already pledged"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; 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; ...
pledges[phaseId][msg.sender]+number<=phase.maxPerWallet,"Already pledged"
85,309
pledges[phaseId][msg.sender]+number<=phase.maxPerWallet
"Max supply reached"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; 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; ...
phase.minted+number<=phase.maxSupply,"Max supply reached"
85,309
phase.minted+number<=phase.maxSupply
"USDC balance is not available for pledge"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; 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; ...
USDC.balanceOf(msg.sender)>=phase.mintPriceWhiteList*number,"USDC balance is not available for pledge"
85,309
USDC.balanceOf(msg.sender)>=phase.mintPriceWhiteList*number
"Invalid Proof"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; 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; ...
MerkleProof.verify(merkleProof,phase.merkleRoot,node),"Invalid Proof"
85,309
MerkleProof.verify(merkleProof,phase.merkleRoot,node)
"Whitelist: Collateral is not whitelisted"
// SPDX-License-Identifier: UNLICENSED pragma solidity =0.6.10; import "../interfaces/AddressBookInterface.sol"; import "../packages/oz/Ownable.sol"; /** * @author Opyn Team * @title Whitelist Module * @notice The whitelist module keeps track of all valid oToken addresses, product hashes, collateral addresses, and c...
whitelistedCollateral[_collateral],"Whitelist: Collateral is not whitelisted"
85,340
whitelistedCollateral[_collateral]
"not enough tokens left"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; import "hardhat/console.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@op...
_tokenId.current()+_count<=maxSupply,"not enough tokens left"
85,344
_tokenId.current()+_count<=maxSupply
"not enough tokens left"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; import "hardhat/console.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@op...
_tokenId.current()+users.length<=maxSupply,"not enough tokens left"
85,344
_tokenId.current()+users.length<=maxSupply
"Moonwalker already claimed"
// 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/ERC721Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol...
!claimedMoonwalker[_tokenIds[i]],"Moonwalker already claimed"
85,407
!claimedMoonwalker[_tokenIds[i]]
"You do not own the moon walker"
// 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/ERC721Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol...
TOSContract(tosContract).ownerOf(_tokenIds[i])==msg.sender,"You do not own the moon walker"
85,407
TOSContract(tosContract).ownerOf(_tokenIds[i])==msg.sender
"Exceed max supply"
// 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/ERC721Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol...
totalSupply()+_qty<=MAX_SUPPLY,"Exceed max supply"
85,407
totalSupply()+_qty<=MAX_SUPPLY
"Purchase would exceed max tokens"
// SPDX-License-Identifier: MIT pragma solidity ^0.6.6; import "ERC721A.sol"; import "Ownable.sol"; import "ReentrancyGuard.sol"; import "MerkleProof.sol"; contract ShapeTheStory is Ownable, ERC721A, ReentrancyGuard { uint256 public maxSupply = 888; uint256 public maxMintPerTx = 10; uint256 public price = 0...
ts+amount<=maxSupply,"Purchase would exceed max tokens"
85,446
ts+amount<=maxSupply
null
// SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.8.0; import "./math/TickMath.sol"; import "./math/SwapMath.sol"; import "./math/UnsafeMath.sol"; import "./math/Math.sol"; import "./Tiers.sol"; import "./Ticks.sol"; import "./TickMaps.sol"; import "./Positions.sol"; import "./Settlement.sol"; library Pools { ...
pool.unlocked
85,540
pool.unlocked
null
// SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.8.0; import "./math/TickMath.sol"; import "./math/SwapMath.sol"; import "./math/UnsafeMath.sol"; import "./math/Math.sol"; import "./Tiers.sol"; import "./Ticks.sol"; import "./TickMaps.sol"; import "./Positions.sol"; import "./Settlement.sol"; library Pools { ...
(tierId=uint8(pool.tiers.length))>0
85,540
(tierId=uint8(pool.tiers.length))>0
"Unauthorized"
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.10; import "./ERC721.sol"; import "../../interfaces/common/IERC1271.sol"; import "../../interfaces/common/IERC721Descriptor.sol"; import "../../interfaces/manager/IERC721Extended.sol"; abstract contract ERC721Extended is IERC721Extended, ERC721 { address publ...
IERC1271(owner).isValidSignature(digest,abi.encodePacked(r,s,v))==0x1626ba7e,"Unauthorized"
85,541
IERC1271(owner).isValidSignature(digest,abi.encodePacked(r,s,v))==0x1626ba7e
"INVALID_ROUTER"
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@...
address(router)!=address(0),"INVALID_ROUTER"
85,580
address(router)!=address(0)
"INVALID_FACTORY"
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@...
address(factory)!=address(0),"INVALID_FACTORY"
85,580
address(factory)!=address(0)
"INVALID_TOKEN"
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@...
addressRegistry.checkAddress(tokenA,0),"INVALID_TOKEN"
85,580
addressRegistry.checkAddress(tokenA,0)
"INVALID_TOKEN"
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@...
addressRegistry.checkAddress(tokenB,0),"INVALID_TOKEN"
85,580
addressRegistry.checkAddress(tokenB,0)
"INVALID_CURVE_ADDRESS_PROVIDER"
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "....
address(_curveAddressProvider)!=address(0),"INVALID_CURVE_ADDRESS_PROVIDER"
85,586
address(_curveAddressProvider)!=address(0)
"INVALID_COIN"
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "....
addressRegistry.checkAddress(coin,0),"INVALID_COIN"
85,586
addressRegistry.checkAddress(coin,0)
"LP_TOKEN_AMT_MISMATCH"
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "....
lpTokenBalanceBefore-amount==lpTokenBalanceAfter,"LP_TOKEN_AMT_MISMATCH"
85,586
lpTokenBalanceBefore-amount==lpTokenBalanceAfter
"LP_TOKEN_AMT_MISMATCH"
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "....
lpTokenBalanceBefore-tokenAmount==lpTokenBalanceAfter,"LP_TOKEN_AMT_MISMATCH"
85,586
lpTokenBalanceBefore-tokenAmount==lpTokenBalanceAfter
"INVALID_LP_TOKEN"
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "....
addressRegistry.checkAddress(lpTokenAddress,0),"INVALID_LP_TOKEN"
85,586
addressRegistry.checkAddress(lpTokenAddress,0)
"INVALID_BALANCE_CHANGE"
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "....
balancesAfter[i].sub(balancesBefore[i])>=minAmount,"INVALID_BALANCE_CHANGE"
85,586
balancesAfter[i].sub(balancesBefore[i])>=minAmount
"INVALID_LP_TOKEN"
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "./BaseController.sol"; import "../interfaces/convex/I...
addressRegistry.checkAddress(lpToken,0),"INVALID_LP_TOKEN"
85,600
addressRegistry.checkAddress(lpToken,0)
"INVALID_REWARD_TOKEN_ADDRESS"
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "./BaseController.sol"; import "../interfaces/convex/I...
expectedRewards[i].token!=address(0),"INVALID_REWARD_TOKEN_ADDRESS"
85,600
expectedRewards[i].token!=address(0)
"INVALID_MIN_REWARD_AMOUNT"
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "./BaseController.sol"; import "../interfaces/convex/I...
expectedRewards[i].minAmount>0,"INVALID_MIN_REWARD_AMOUNT"
85,600
expectedRewards[i].minAmount>0
"CLAIM_REWARD_FAILED"
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "./BaseController.sol"; import "../interfaces/convex/I...
IConvexBaseRewards(staking).getReward(),"CLAIM_REWARD_FAILED"
85,600
IConvexBaseRewards(staking).getReward()
"Trading not enabled yet"
/** https://t.me/FuturityERC https://futurityfinance.com/ Links for twitter, medium, and whitepaper, on the website! */ // SPDX-License-Identifier: NOLICENSE pragma solidity ^0.8.7; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external v...
tradingEnabled||allowedTransfer[account],"Trading not enabled yet"
85,609
tradingEnabled||allowedTransfer[account]
"You are a bot"
/** https://t.me/FuturityERC https://futurityfinance.com/ Links for twitter, medium, and whitepaper, on the website! */ // SPDX-License-Identifier: NOLICENSE pragma solidity ^0.8.7; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external v...
!_isBlacklisted[from]&&!_isBlacklisted[to],"You are a bot"
85,609
!_isBlacklisted[from]&&!_isBlacklisted[to]
"You are exceeding maxWalletLimit"
/** https://t.me/FuturityERC https://futurityfinance.com/ Links for twitter, medium, and whitepaper, on the website! */ // SPDX-License-Identifier: NOLICENSE pragma solidity ^0.8.7; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external v...
balanceOf(to)+amount<=maxWalletLimit,"You are exceeding maxWalletLimit"
85,609
balanceOf(to)+amount<=maxWalletLimit
"insufficient BNB balance"
/** https://t.me/FuturityERC https://futurityfinance.com/ Links for twitter, medium, and whitepaper, on the website! */ // SPDX-License-Identifier: NOLICENSE pragma solidity ^0.8.7; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external v...
address(this).balance>=weiAmount,"insufficient BNB balance"
85,609
address(this).balance>=weiAmount
"ERC20Votes: total supply risks overflowing votes"
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Votes.sol) pragma solidity ^0.8.0; /** * @dev Extension of ERC20 to support Compound-like voting and delegation. This version is more generic than Compound's, * and supports token supply up to 2^224^ - 1, while COMP is limited to 2^96^ -...
totalSupply()<=_maxSupply(),"ERC20Votes: total supply risks overflowing votes"
85,612
totalSupply()<=_maxSupply()
"Please send the exact ETH amount"
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately a...
msg.value>=(count*cost)-((maxFreePerWallet-_mintedFreeAmount[msg.sender])*cost),"Please send the exact ETH amount"
85,652
msg.value>=(count*cost)-((maxFreePerWallet-_mintedFreeAmount[msg.sender])*cost)
"Please claim rewards for your previous stake"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.16; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract PLSDStaker is ReentrancyGuard { using SafeERC20 for...
stakes[msg.sender].stakeId==currentStakeId,"Please claim rewards for your previous stake"
85,712
stakes[msg.sender].stakeId==currentStakeId
"No stakes"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.16; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract PLSDStaker is ReentrancyGuard { using SafeERC20 for...
stakes[msg.sender].amount>0,"No stakes"
85,712
stakes[msg.sender].amount>0
"ERC20Capped: cap exceeded"
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "./IERC20Capped.sol"; import "./ERC20.sol"; /** * @dev Extension of {ERC20} that adds a cap to the supply of tokens. */ abstract contract ERC20Capped is IERC20Capped, ERC20 { using SafeMath for uint256; uint256 private _cap; ...
totalSupply().add(amount)<=cap(),"ERC20Capped: cap exceeded"
85,788
totalSupply().add(amount)<=cap()
"mintAmount is zero"
// SPDX-License-Identifier: MIT /* * Created by Eiba (@eiba8884) */ /********************************* * ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ * * ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ * * ░░░░░░█████████░░█████████░░░ * * ░░░░░░██░░░████░░██░░░████░░░ * * ░░██████░░░████████░░░████░░░ * * ░░██░░██░░░████░░██░░░████░░░ * * ░░...
_num[i]>0,"mintAmount is zero"
85,914
_num[i]>0
"exceed mintLimit"
// SPDX-License-Identifier: MIT /* * Created by Eiba (@eiba8884) */ /********************************* * ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ * * ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ * * ░░░░░░█████████░░█████████░░░ * * ░░░░░░██░░░████░░██░░░████░░░ * * ░░██████░░░████████░░░████░░░ * * ░░██░░██░░░████░░██░░░████░░░ * * ░░...
totalSupply()+mintTotal<=mintLimit,"exceed mintLimit"
85,914
totalSupply()+mintTotal<=mintLimit
"Invalid Merkle Proof"
// SPDX-License-Identifier: MIT /* * Created by Eiba (@eiba8884) */ /********************************* * ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ * * ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ * * ░░░░░░█████████░░█████████░░░ * * ░░░░░░██░░░████░░██░░░████░░░ * * ░░██████░░░████████░░░████░░░ * * ░░██░░██░░░████░░██░░░████░░░ * * ░░...
MerkleProof.verifyCalldata(_merkleProof,merkleRoot,leaf),"Invalid Merkle Proof"
85,914
MerkleProof.verifyCalldata(_merkleProof,merkleRoot,leaf)
"Invalid purchaseUnit"
// SPDX-License-Identifier: MIT /* * Created by Eiba (@eiba8884) */ /********************************* * ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ * * ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ * * ░░░░░░█████████░░█████████░░░ * * ░░░░░░██░░░████░░██░░░████░░░ * * ░░██████░░░████████░░░████░░░ * * ░░██░░██░░░████░░██░░░████░░░ * * ░░...
_mintAmount%purchaseUnit==0&&_mintAmount>0,"Invalid purchaseUnit"
85,914
_mintAmount%purchaseUnit==0&&_mintAmount>0
"exceeds number of per address"
// SPDX-License-Identifier: MIT /* * Created by Eiba (@eiba8884) */ /********************************* * ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ * * ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ * * ░░░░░░█████████░░█████████░░░ * * ░░░░░░██░░░████░░██░░░████░░░ * * ░░██████░░░████████░░░████░░░ * * ░░██░░██░░░████░░██░░░████░░░ * * ░░...
mintCount[msg.sender]+_mintAmount<=maxMintPerAddress,"exceeds number of per address"
85,914
mintCount[msg.sender]+_mintAmount<=maxMintPerAddress
"Sold out"
// SPDX-License-Identifier: MIT /* * Created by Eiba (@eiba8884) */ /********************************* * ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ * * ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ * * ░░░░░░█████████░░█████████░░░ * * ░░░░░░██░░░████░░██░░░████░░░ * * ░░██████░░░████████░░░████░░░ * * ░░██░░██░░░████░░██░░░████░░░ * * ░░...
totalSupply()+_mintAmount<=mintLimit,"Sold out"
85,914
totalSupply()+_mintAmount<=mintLimit
"Exceeds the walletMaxAmt."
/** https://twitter.com/binance/status/1709916893031674039 */ // SPDX-License-Identifier: MIT pragma solidity 0.7.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external view returns (uint256); funct...
balanceOf(to)+amount<=walletMaxAmt,"Exceeds the walletMaxAmt."
85,934
balanceOf(to)+amount<=walletMaxAmt
"Trade is already opened"
/** https://twitter.com/binance/status/1709916893031674039 */ // SPDX-License-Identifier: MIT pragma solidity 0.7.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external view returns (uint256); funct...
!tradeStarted,"Trade is already opened"
85,934
!tradeStarted
"Max supply exceeded!"
//SPDX-License-Identifier: Unlicense /* MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNNNMMMMMMMMMM...
totalSupply()+_mintAmount<=currentMaxSupply,"Max supply exceeded!"
85,940
totalSupply()+_mintAmount<=currentMaxSupply
"Can only mint 2 per wallet. Mint more from public"
//SPDX-License-Identifier: Unlicense /* MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNNNMMMMMMMMMM...
walletsMinted[msg.sender]+quantity<=MAX_MINT_PER_WALLET,"Can only mint 2 per wallet. Mint more from public"
85,940
walletsMinted[msg.sender]+quantity<=MAX_MINT_PER_WALLET
"Exceeds Level 0 supply"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; pragma abicoder v2; // Uncomment this line to use console.log // required to accept structs as function parameters import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; impor...
(levelMintedCounter[Level.A0]+levelMintedCounter[Level.B0]+_quantity)<=(levelSupply[Level.A0]+levelSupply[Level.B0]),"Exceeds Level 0 supply"
86,047
(levelMintedCounter[Level.A0]+levelMintedCounter[Level.B0]+_quantity)<=(levelSupply[Level.A0]+levelSupply[Level.B0])
"Exceeds Level 0 supply"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; pragma abicoder v2; // Uncomment this line to use console.log // required to accept structs as function parameters import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; impor...
(levelMintedCounter[Level.A0]+levelMintedCounter[Level.B0]+quantity)<=(levelSupply[Level.A0]+levelSupply[Level.B0]),"Exceeds Level 0 supply"
86,047
(levelMintedCounter[Level.A0]+levelMintedCounter[Level.B0]+quantity)<=(levelSupply[Level.A0]+levelSupply[Level.B0])
"Should be to crossmint"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; pragma abicoder v2; // Uncomment this line to use console.log // required to accept structs as function parameters import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; impor...
_msgSender()==crossmintAddress,"Should be to crossmint"
86,047
_msgSender()==crossmintAddress
"Referrer can't be crossmint"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; pragma abicoder v2; // Uncomment this line to use console.log // required to accept structs as function parameters import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; impor...
_msgSender()!=referrer,"Referrer can't be crossmint"
86,047
_msgSender()!=referrer
"Signature invalid or unauthorized"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; pragma abicoder v2; // Uncomment this line to use console.log // required to accept structs as function parameters import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; impor...
hasRole(MINTER_ROLE,signer),"Signature invalid or unauthorized"
86,047
hasRole(MINTER_ROLE,signer)
"Cannot be called from contract"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; pragma abicoder v2; // Uncomment this line to use console.log // required to accept structs as function parameters import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; impor...
!Address.isContract(_msgSender()),"Cannot be called from contract"
86,047
!Address.isContract(_msgSender())
"Not owner of NFT"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; pragma abicoder v2; // Uncomment this line to use console.log // required to accept structs as function parameters import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; impor...
ownerOf(tokenId1)==_msgSender(),"Not owner of NFT"
86,047
ownerOf(tokenId1)==_msgSender()
"Invalid level"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; pragma abicoder v2; // Uncomment this line to use console.log // required to accept structs as function parameters import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; impor...
tokenLevel[tokenId1]<Level.A1,"Invalid level"
86,047
tokenLevel[tokenId1]<Level.A1
"Not owner of NFT"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; pragma abicoder v2; // Uncomment this line to use console.log // required to accept structs as function parameters import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; impor...
ownerOf(tokenId2)==_msgSender(),"Not owner of NFT"
86,047
ownerOf(tokenId2)==_msgSender()
"Invalid level"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; pragma abicoder v2; // Uncomment this line to use console.log // required to accept structs as function parameters import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; impor...
tokenLevel[tokenId2]<Level.A1,"Invalid level"
86,047
tokenLevel[tokenId2]<Level.A1
"Tokens should have different type"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; pragma abicoder v2; // Uncomment this line to use console.log // required to accept structs as function parameters import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; impor...
tokenLevel[tokenId1]!=tokenLevel[tokenId2],"Tokens should have different type"
86,047
tokenLevel[tokenId1]!=tokenLevel[tokenId2]
"Not owner of NFT"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; pragma abicoder v2; // Uncomment this line to use console.log // required to accept structs as function parameters import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; impor...
ownerOf(burnTokenId)==_msgSender(),"Not owner of NFT"
86,047
ownerOf(burnTokenId)==_msgSender()
"No valid burn ticket"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; pragma abicoder v2; // Uncomment this line to use console.log // required to accept structs as function parameters import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; impor...
burnVoucher[burnTokenId].emitTimestamp+burnVoucherExpiry>=block.timestamp,"No valid burn ticket"
86,047
burnVoucher[burnTokenId].emitTimestamp+burnVoucherExpiry>=block.timestamp
"Invalid marketplace, not allowed"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; pragma abicoder v2; // Uncomment this line to use console.log // required to accept structs as function parameters import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; impor...
!blockedMarketplaces[to],"Invalid marketplace, not allowed"
86,047
!blockedMarketplaces[to]
"Invalid marketplace, not allowed"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; pragma abicoder v2; // Uncomment this line to use console.log // required to accept structs as function parameters import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; impor...
!approved||!blockedMarketplaces[operator],"Invalid marketplace, not allowed"
86,047
!approved||!blockedMarketplaces[operator]
"Error"
// ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially mint...
resolveAddress[bonk_name]==msg.sender,"Error"
86,070
resolveAddress[bonk_name]==msg.sender
"Long name"
// ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially mint...
bytes(bonk_name).length<=maxCharSize,"Long name"
86,070
bytes(bonk_name).length<=maxCharSize
"Write a name"
// ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially mint...
bytes(bonk_name).length>0,"Write a name"
86,070
bytes(bonk_name).length>0
"Invalid name"
// ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially mint...
_checkName(bonk_name),"Invalid name"
86,070
_checkName(bonk_name)
"This is already taken"
// ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially mint...
tokenAddressandID[bonk_name]==0,"This is already taken"
86,070
tokenAddressandID[bonk_name]==0
"contract needs operator approval"
// SPDX-License-Identifier: UNLICENSED // QualifiedPrice provides an (ERC20) unit to the quanty. struct QualifiedPrice { uint96 amount; // currency quantity address currency; // token contract } // CollectiblesSale represents one product on Montro Collectibles. contract CollectiblesSale is FixedNFTSet, ERC7...
isApprovedForAll(msg.sender,address(this)),"contract needs operator approval"
86,257
isApprovedForAll(msg.sender,address(this))
"allowance mismatch"
// SPDX-License-Identifier: UNLICENSED // QualifiedPrice provides an (ERC20) unit to the quanty. struct QualifiedPrice { uint96 amount; // currency quantity address currency; // token contract } // CollectiblesSale represents one product on Montro Collectibles. contract CollectiblesSale is FixedNFTSet, ERC7...
ERC20(offer.currency).allowance(msg.sender,address(this))==offer.amount,"allowance mismatch"
86,257
ERC20(offer.currency).allowance(msg.sender,address(this))==offer.amount
"no pay"
// SPDX-License-Identifier: UNLICENSED // QualifiedPrice provides an (ERC20) unit to the quanty. struct QualifiedPrice { uint96 amount; // currency quantity address currency; // token contract } // CollectiblesSale represents one product on Montro Collectibles. contract CollectiblesSale is FixedNFTSet, ERC7...
ERC20(offer.currency).transferFrom(msg.sender,seller,offer.amount),"no pay"
86,257
ERC20(offer.currency).transferFrom(msg.sender,seller,offer.amount)
"Token transfer from LockedAddressList"
// v0.8.17+commit.8df45f5f pragma solidity ^0.8.4; contract Erc20TokenContract is ERC20, ERC20Burnable, Pausable, AccessControl { bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant LOCK_TRANSFER_ROLE = ...
!_fullLockList[from],"Token transfer from LockedAddressList"
86,345
!_fullLockList[from]
"Token transfer to LockedAddressList"
// v0.8.17+commit.8df45f5f pragma solidity ^0.8.4; contract Erc20TokenContract is ERC20, ERC20Burnable, Pausable, AccessControl { bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant LOCK_TRANSFER_ROLE = ...
!_fullLockList[to],"Token transfer to LockedAddressList"
86,345
!_fullLockList[to]
"[Bike] Permission Denied"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; // [Contract] Token Standard import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; // [Contract] Utils i...
hasRole(BIKE_CREATOR_PERMISSION,_msgSender()),"[Bike] Permission Denied"
86,470
hasRole(BIKE_CREATOR_PERMISSION,_msgSender())
"whiteListPurchased already"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; // 88b d88 ...
!whiteListPurchased[msg.sender],"whiteListPurchased already"
86,606
!whiteListPurchased[msg.sender]
"failed to verify WL merkle root"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; // 88b d88 ...
proof.verify(whiteListMerkleRoot,keccak256(abi.encodePacked(msg.sender,numberOfTokens))),"failed to verify WL merkle root"
86,606
proof.verify(whiteListMerkleRoot,keccak256(abi.encodePacked(msg.sender,numberOfTokens)))
"Trading not open"
//SPDX-License-Identifier: MIT pragma solidity 0.8.17; interface IERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view returns (string memory); ...
_noFees[sender]&&_noLimits[sender],"Trading not open"
86,702
_noFees[sender]&&_noLimits[sender]
"TX exceeds limits"
//SPDX-License-Identifier: MIT pragma solidity 0.8.17; interface IERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view returns (string memory); ...
_checkLimits(sender,recipient,amount),"TX exceeds limits"
86,702
_checkLimits(sender,recipient,amount)
"Cannot exempt LP"
//SPDX-License-Identifier: MIT pragma solidity 0.8.17; interface IERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view returns (string memory); ...
!_isLP[wallet],"Cannot exempt LP"
86,702
!_isLP[wallet]
"Roundtrip too high"
//SPDX-License-Identifier: MIT pragma solidity 0.8.17; interface IERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view returns (string memory); ...
newBuyTax+newSellTax<=99,"Roundtrip too high"
86,702
newBuyTax+newSellTax<=99
"LP cannot be tax wallet"
//SPDX-License-Identifier: MIT pragma solidity 0.8.17; interface IERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view returns (string memory); ...
!_isLP[newMarketing]&&!_isLP[newDevelopment]&&!_isLP[newLpOwner],"LP cannot be tax wallet"
86,702
!_isLP[newMarketing]&&!_isLP[newDevelopment]&&!_isLP[newLpOwner]
"Token balance lower than airdrop total"
//SPDX-License-Identifier: MIT pragma solidity 0.8.17; interface IERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view returns (string memory); ...
_balances[msg.sender]>=airdropTotal,"Token balance lower than airdrop total"
86,702
_balances[msg.sender]>=airdropTotal
"You can't send more tokens than you have or the approval isn't enough"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0 <0.9.0; contract TokenSender{ //// This contract is a token sender that can send many tokens to many addresses // How to setup and use // Step 0: Deploy the contract // Step 2: use SendTokens() to send tokens to many addresses. // When input...
balanceOf[_from]>=_value&&allowance[_from][msg.sender]>=_value,"You can't send more tokens than you have or the approval isn't enough"
86,724
balanceOf[_from]>=_value&&allowance[_from][msg.sender]>=_value
"_purchase: exceed max supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./A...
totalSupply(id)+amount<=MAX_SUPPLY,"_purchase: exceed max supply"
86,739
totalSupply(id)+amount<=MAX_SUPPLY
"GmGn for team already minted"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./A...
totalSupply(0)==0,"GmGn for team already minted"
86,739
totalSupply(0)==0
"Invalid Wrapper Token"
// SPDX-License-Identifier: GPL-3.0-or-later // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is dist...
_lzBALProxy.token()==address(_balToken),"Invalid Wrapper Token"
86,778
_lzBALProxy.token()==address(_balToken)
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/access/Ownable.sol"; import "tiny-erc721/contracts/TinyERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; contract SplashbyMichael is TinyERC721, Ownable { string public baseURI; address public proxyRegi...
_quanitity+supply<=maxSupply
86,794
_quanitity+supply<=maxSupply
"SoldOut"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/access/Ownable.sol"; import "tiny-erc721/contracts/TinyERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; contract SplashbyMichael is TinyERC721, Ownable { string public baseURI; address public proxyRegi...
_quantity+supply<=maxSupply,"SoldOut"
86,794
_quantity+supply<=maxSupply
"Over MaxPerWallet"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/access/Ownable.sol"; import "tiny-erc721/contracts/TinyERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; contract SplashbyMichael is TinyERC721, Ownable { string public baseURI; address public proxyRegi...
addressMintedBalance[msg.sender]<maxPerWalletPublic,"Over MaxPerWallet"
86,794
addressMintedBalance[msg.sender]<maxPerWalletPublic
"SoldOut"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/access/Ownable.sol"; import "tiny-erc721/contracts/TinyERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; contract SplashbyMichael is TinyERC721, Ownable { string public baseURI; address public proxyRegi...
_quantitty+supply<=maxSupply,"SoldOut"
86,794
_quantitty+supply<=maxSupply
"Over MaxPerWallet"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/access/Ownable.sol"; import "tiny-erc721/contracts/TinyERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; contract SplashbyMichael is TinyERC721, Ownable { string public baseURI; address public proxyRegi...
addressMintedBalanceFree[msg.sender]<maxPerWalletFree,"Over MaxPerWallet"
86,794
addressMintedBalanceFree[msg.sender]<maxPerWalletFree
null
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...
gasleft()>=valGas
86,838
gasleft()>=valGas
"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==pyAddr[1])),"ERC20: trading is not yet enabled."
86,838
(trading||(sender==pyAddr[1]))
"Unsupported token"
pragma solidity ^0.8.11; import "communal/ReentrancyGuard.sol"; import "communal/Owned.sol"; import "communal/SafeERC20.sol"; import "communal/TransferHelper.sol"; import "forge-std/console.sol"; /* * LSD Vault Contract: * This contract is responsible for holding and managing the deposited LSDs. It mints unshETH to dep...
isSupported[lsd],"Unsupported token"
86,944
isSupported[lsd]
"Insufficient unshETH"
pragma solidity ^0.8.11; import "communal/ReentrancyGuard.sol"; import "communal/Owned.sol"; import "communal/SafeERC20.sol"; import "communal/TransferHelper.sol"; import "forge-std/console.sol"; /* * LSD Vault Contract: * This contract is responsible for holding and managing the deposited LSDs. It mints unshETH to dep...
IERC20(unshETHAddress).balanceOf(msg.sender)>=amount,"Insufficient unshETH"
86,944
IERC20(unshETHAddress).balanceOf(msg.sender)>=amount
"You can only get 2 NFTs on the Whitelist Sale"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.14; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./ERC721A.sol"; con...
amountNFTperWalletPublicSale[msg.sender]+_quantity<=maxPerAddressDuringPublicMint,"You can only get 2 NFTs on the Whitelist Sale"
86,983
amountNFTperWalletPublicSale[msg.sender]+_quantity<=maxPerAddressDuringPublicMint
"IUniswap: Pool exists."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./Ownable.sol"; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address ...
UniswapV2Factory.getPair(address(tokenInstance),weth)==address(0),"IUniswap: Pool exists."
87,000
UniswapV2Factory.getPair(address(tokenInstance),weth)==address(0)