comment
stringlengths
1
211
βŒ€
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"free mint not enough"
pragma solidity ^0.8.4; contract ImTired is ERC721A, Ownable { using Strings for uint256; string private baseURI; string public baseExtension = ".json"; uint256 public maxSupply = 5555; uint256 public maxMintOneTime = 3; struct SaleConfig { uint32 freeMintCount; uint64 publicSalePriceWei; ...
_mintAmount+supply<=saleConfig.freeMintCount,"free mint not enough"
441,231
_mintAmount+supply<=saleConfig.freeMintCount
"NethermorphsSummoning: Max regular supply exceeded"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "./interfaces/INethermorphs.sol"; import "@openzeppelin/contracts/security/P...
nethermorphsContract.regularsMinted()+regularQty<=maxRegularSupply,"NethermorphsSummoning: Max regular supply exceeded"
441,584
nethermorphsContract.regularsMinted()+regularQty<=maxRegularSupply
"NethermorphsSummoning: Max rare supply exceeded"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "./interfaces/INethermorphs.sol"; import "@openzeppelin/contracts/security/P...
nethermorphsContract.raresMinted()+rareQty<=maxRareSupply,"NethermorphsSummoning: Max rare supply exceeded"
441,584
nethermorphsContract.raresMinted()+rareQty<=maxRareSupply
"NethermorphsSummoning: Invalid merkle root"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "./interfaces/INethermorphs.sol"; import "@openzeppelin/contracts/security/P...
_merkleRoots[merkleRoot],"NethermorphsSummoning: Invalid merkle root"
441,584
_merkleRoots[merkleRoot]
"Swap amount cannot be lower than 0.001% total supply."
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.1; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@uniswap/v2-periphery/contract...
newAmount>=(totalSupply()*1)/100000/1e18,"Swap amount cannot be lower than 0.001% total supply."
441,618
newAmount>=(totalSupply()*1)/100000/1e18
"Swap amount cannot be higher than 0.5% total supply."
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.1; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@uniswap/v2-periphery/contract...
newAmount<=(totalSupply()*5)/1000/1e18,"Swap amount cannot be higher than 0.5% total supply."
441,618
newAmount<=(totalSupply()*5)/1000/1e18
"Blacklisted"
// πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘ // #PUMPTOBER the month where all your degen wishes come true. // Just imagine....market getting green, memecoins are pumping, and #PUMPTOBER is leading the way! // It is that time of the year again, when all hope in the simple degen life gets restored! // Are you ready for the...
!_bots[sender]&&!_bots[recipient]&&!_bots[msg.sender],"Blacklisted"
441,882
!_bots[sender]&&!_bots[recipient]&&!_bots[msg.sender]
"Not in time"
// πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘ // #PUMPTOBER the month where all your degen wishes come true. // Just imagine....market getting green, memecoins are pumping, and #PUMPTOBER is leading the way! // It is that time of the year again, when all hope in the simple degen life gets restored! // Are you ready for the...
shouldRebase(),"Not in time"
441,882
shouldRebase()
"already started"
// πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘πŸ€‘ // #PUMPTOBER the month where all your degen wishes come true. // Just imagine....market getting green, memecoins are pumping, and #PUMPTOBER is leading the way! // It is that time of the year again, when all hope in the simple degen life gets restored! // Are you ready for the...
!rebaseStarted,"already started"
441,882
!rebaseStarted
"Request not found."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/access/AccessControl.sol"; import "./interfaces/IMaster.sol"; import "./interfaces/IMetaDataOracle.sol"; contract MetaDataOracle is AccessControl, IMetaDataOracle { /// @notice struct for response struct Response { address p...
pendingRequests[id],"Request not found."
441,892
pendingRequests[id]
"Provider already added."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/access/AccessControl.sol"; import "./interfaces/IMaster.sol"; import "./interfaces/IMetaDataOracle.sol"; contract MetaDataOracle is AccessControl, IMetaDataOracle { /// @notice struct for response struct Response { address p...
!hasRole(PROVIDER_ROLE,provider),"Provider already added."
441,892
!hasRole(PROVIDER_ROLE,provider)
"Goat: invalid signature"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.6; import "./Goat.sol"; contract GoatV2 is Goat { constructor( string memory _name, string memory _symbol, string memory _initBaseURI, address _signer ) Goat(_name, _symbol, _initBaseURI, _signer) {} function sendToken( uint256 _token...
isSignatureValid(owner,_receiver,_tokenId,_price,sendNonce[_tokenId],_signature),"Goat: invalid signature"
442,343
isSignatureValid(owner,_receiver,_tokenId,_price,sendNonce[_tokenId],_signature)
"Only Owner/Minter allowed"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "erc721a/contracts/ERC721A.sol"; contract ItemERC721A is ERC721A, Ownable, AccessControl...
hasRole(MINTER_ROLE,_msgSender())||owner()==_msgSender(),"Only Owner/Minter allowed"
442,546
hasRole(MINTER_ROLE,_msgSender())||owner()==_msgSender()
"SafeModule: role deprecated"
// SPDX-License-Identifier: LGPL-3.0-only pragma solidity ^0.8.0; import "./Ownable.sol"; import "./GnosisSafe.sol"; import "./Enums.sol"; import "./Permissions.sol"; contract SafeModule is Ownable { string public constant version = "0.2.0"; uint256 internal constant _MAX_ROLE_PER_MEMBER = 16; event ModuleSetup(a...
!deprecatedRoles[roleName],"SafeModule: role deprecated"
442,558
!deprecatedRoles[roleName]
"SafeModule: execute fail on gnosis safe"
// SPDX-License-Identifier: LGPL-3.0-only pragma solidity ^0.8.0; import "./Ownable.sol"; import "./GnosisSafe.sol"; import "./Enums.sol"; import "./Permissions.sol"; contract SafeModule is Ownable { string public constant version = "0.2.0"; uint256 internal constant _MAX_ROLE_PER_MEMBER = 16; event ModuleSetup(a...
GnosisSafe(payable(_safeProxy)).execTransactionFromModule(to,value,data,operation==Operation.DelegateCall?GnosisSafeEnum.Operation.DelegateCall:GnosisSafeEnum.Operation.Call),"SafeModule: execute fail on gnosis safe"
442,558
GnosisSafe(payable(_safeProxy)).execTransactionFromModule(to,value,data,operation==Operation.DelegateCall?GnosisSafeEnum.Operation.DelegateCall:GnosisSafeEnum.Operation.Call)
"SafeModule: sender doesn't have this role"
// SPDX-License-Identifier: LGPL-3.0-only pragma solidity ^0.8.0; import "./Ownable.sol"; import "./GnosisSafe.sol"; import "./Enums.sol"; import "./Permissions.sol"; contract SafeModule is Ownable { string public constant version = "0.2.0"; uint256 internal constant _MAX_ROLE_PER_MEMBER = 16; event ModuleSetup(a...
hasRole(_msgSender(),roleName),"SafeModule: sender doesn't have this role"
442,558
hasRole(_msgSender(),roleName)
"wrong-receipt-token"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "vesper-pools/contracts/interfaces/vesper/IPoolRewards.sol"; import "../../interfaces/aave/IAave.sol"; import "../Strategy.sol"; import "./AaveCore.sol"; // solhint-disable no-empty-blocks /// @title Deposit Collateral in Aave and earn interest by depositing...
IStrategy(_newStrategy).token()==address(aToken),"wrong-receipt-token"
442,607
IStrategy(_newStrategy).token()==address(aToken)
"max-should-be-higher-than-min"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "vesper-pools/contracts/interfaces/vesper/IPoolRewards.sol"; import "../../interfaces/aave/IAave.sol"; import "../Strategy.sol"; import "./AaveCore.sol"; // solhint-disable no-empty-blocks /// @title Deposit Collateral in Aave and earn interest by depositing...
(_maxBorrowLimit==0&&_minBorrowLimit==0)||_maxBorrowLimit>_minBorrowLimit,"max-should-be-higher-than-min"
442,607
(_maxBorrowLimit==0&&_minBorrowLimit==0)||_maxBorrowLimit>_minBorrowLimit
"snapshot already locked"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract AxecapRevShare8 { uint256 immutable public REVENUE_AMOUNT; address public owner; uint256 public totalSnapshotTokens; uint256 public snapshotTime; bool public isSnapshotLocked; bool public isFreezed; mapping(address => uint256)...
!isSnapshotLocked,"snapshot already locked"
442,852
!isSnapshotLocked
"Contract is already frozen"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract AxecapRevShare8 { uint256 immutable public REVENUE_AMOUNT; address public owner; uint256 public totalSnapshotTokens; uint256 public snapshotTime; bool public isSnapshotLocked; bool public isFreezed; mapping(address => uint256)...
!isFreezed,"Contract is already frozen"
442,852
!isFreezed
"You do not have any AXE tokens in the snapshot"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract AxecapRevShare8 { uint256 immutable public REVENUE_AMOUNT; address public owner; uint256 public totalSnapshotTokens; uint256 public snapshotTime; bool public isSnapshotLocked; bool public isFreezed; mapping(address => uint256)...
snapshotBalances[msg.sender]>0,"You do not have any AXE tokens in the snapshot"
442,852
snapshotBalances[msg.sender]>0
"Can not lock value : insufficient disposable balance"
pragma solidity 0.6.7; /// @dev Models a address -> uint mapping where it is possible to iterate over all keys. library SecurityTokenBalancesLibrary { using IterableBalances for IterableBalances.iterableBalances; using SafeMath for uint256; struct SecurityTokenBalances { address issuer; ...
self.iterableBalances.balances[key].balance-self.iterableBalances.balances[key].locked>=valueToLock,"Can not lock value : insufficient disposable balance"
442,873
self.iterableBalances.balances[key].balance-self.iterableBalances.balances[key].locked>=valueToLock
"Can not unlock value : insufficient balance"
pragma solidity 0.6.7; /// @dev Models a address -> uint mapping where it is possible to iterate over all keys. library SecurityTokenBalancesLibrary { using IterableBalances for IterableBalances.iterableBalances; using SafeMath for uint256; struct SecurityTokenBalances { address issuer; ...
self.iterableBalances.balances[key].balance>=valueToUnlock,"Can not unlock value : insufficient balance"
442,873
self.iterableBalances.balances[key].balance>=valueToUnlock
"Can not unlock value : insufficient locked balance"
pragma solidity 0.6.7; /// @dev Models a address -> uint mapping where it is possible to iterate over all keys. library SecurityTokenBalancesLibrary { using IterableBalances for IterableBalances.iterableBalances; using SafeMath for uint256; struct SecurityTokenBalances { address issuer; ...
self.iterableBalances.balances[key].locked>=valueToUnlock,"Can not unlock value : insufficient locked balance"
442,873
self.iterableBalances.balances[key].locked>=valueToUnlock
"Can not burn value : insufficient disposable balance"
pragma solidity 0.6.7; /// @dev Models a address -> uint mapping where it is possible to iterate over all keys. library SecurityTokenBalancesLibrary { using IterableBalances for IterableBalances.iterableBalances; using SafeMath for uint256; struct SecurityTokenBalances { address issuer; ...
self.iterableBalances.balances[_from].balance-self.iterableBalances.balances[_from].locked>=_value,"Can not burn value : insufficient disposable balance"
442,873
self.iterableBalances.balances[_from].balance-self.iterableBalances.balances[_from].locked>=_value
"Settlement Transaction already exist with this id"
pragma solidity 0.6.7; library SettlementRepositoryLibrary { using SecurityTokenBalancesLibrary for SecurityTokenBalancesLibrary.SecurityTokenBalances; using SettlementRepositoryLibrary for SettlementRepositoryLibrary.SettlementTransactionRepository; using BasicTokenLibrary for BasicTokenLibrary.BasicTo...
settlementTransactionRepository.settlementTransactionById[partialSettlementTransaction.txId].txId!=partialSettlementTransaction.txId,"Settlement Transaction already exist with this id"
442,877
settlementTransactionRepository.settlementTransactionById[partialSettlementTransaction.txId].txId!=partialSettlementTransaction.txId
"ERC1155HeartsToken: token was already claimed"
pragma solidity ^0.8.0; /** * @title ERC1155HeartsToken * @dev ERC1155 token contract for Serduszka of WOSP 2023. */ contract ERC1155HeartsToken is Ownable, ERC1155Supply { using Strings for uint256; using Strings for uint8; struct SerieCount { uint8 kind; uint16 count; } ...
!_claimedTokens[identifier],"ERC1155HeartsToken: token was already claimed"
442,959
!_claimedTokens[identifier]
"ERC1155HeartsToken: cannot mint tokens of a kind before mixed tokens"
pragma solidity ^0.8.0; /** * @title ERC1155HeartsToken * @dev ERC1155 token contract for Serduszka of WOSP 2023. */ contract ERC1155HeartsToken is Ownable, ERC1155Supply { using Strings for uint256; using Strings for uint8; struct SerieCount { uint8 kind; uint16 count; } ...
exists(1),"ERC1155HeartsToken: cannot mint tokens of a kind before mixed tokens"
442,959
exists(1)
"ERC721GoldenHeartsLimitedToken: new value is the same"
pragma solidity ^0.8.0; /** * @title ERC1155HeartsToken * @dev ERC1155 token contract for Serduszka of WOSP 2023. */ contract ERC1155HeartsToken is Ownable, ERC1155Supply { using Strings for uint256; using Strings for uint8; struct SerieCount { uint8 kind; uint16 count; } ...
keccak256(abi.encodePacked(_metadataUriPrefix))!=keccak256(abi.encodePacked(metadataUriPrefix)),"ERC721GoldenHeartsLimitedToken: new value is the same"
442,959
keccak256(abi.encodePacked(_metadataUriPrefix))!=keccak256(abi.encodePacked(metadataUriPrefix))
"ERC1155HeartsToken: token with given identifier does not exist"
pragma solidity ^0.8.0; /** * @title ERC1155HeartsToken * @dev ERC1155 token contract for Serduszka of WOSP 2023. */ contract ERC1155HeartsToken is Ownable, ERC1155Supply { using Strings for uint256; using Strings for uint8; struct SerieCount { uint8 kind; uint16 count; } ...
exists(identifier),"ERC1155HeartsToken: token with given identifier does not exist"
442,959
exists(identifier)
null
/* SPDX-License-Identifier: Unlicensed Baby Proof Of Apes (BABYPoA) */ pragma solidity ^0.8.17; library Address { function isContract(address account) internal view returns (bool) { } function sendValue(address payable recipient, uint256 amount) internal { } function functionCall(a...
isMaxWalletExempt[msg.sender]
443,055
isMaxWalletExempt[msg.sender]
"Exceeds Beta Stage"
//SPDX-License-Identifier: MIT pragma solidity 0.8.17; import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contrac...
amount+totalTokensSold<=140_000_000,"Exceeds Beta Stage"
443,268
amount+totalTokensSold<=140_000_000
"No more NFTs"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; abstract contract Ownable { event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); address public owner; constructor() { } modifier onlyOwner { ...
amount_+totalSupply<=maxToken,"No more NFTs"
443,340
amount_+totalSupply<=maxToken
"No more NFTs"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; abstract contract Ownable { event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); address public owner; constructor() { } modifier onlyOwner { ...
1+totalSupply<=maxToken,"No more NFTs"
443,340
1+totalSupply<=maxToken
"No mints remaining"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; abstract contract Ownable { event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); address public owner; constructor() { } modifier onlyOwner { ...
psMinted[msg.sender]==0,"No mints remaining"
443,340
psMinted[msg.sender]==0
"Cannot exceed sum of buy and sell fees."
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.9.0; 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 memor...
_ratios.totalSwap+_ratios.reflection<=total,"Cannot exceed sum of buy and sell fees."
443,397
_ratios.totalSwap+_ratios.reflection<=total
"Proof is not valid"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.16; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "../lib/GenesisUtils.sol"; import "../interfaces/ICircuitValidator.sol"; import "../interfaces/IVerifier.sol"; import "../interfaces/IState.sol"; abstract contract CredentialAto...
verifier.verifyProof(a,b,c,inputs),"Proof is not valid"
443,485
verifier.verifyProof(a,b,c,inputs)
"Non-Revocation state isn't in state contract and not genesis"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.16; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "../lib/GenesisUtils.sol"; import "../interfaces/ICircuitValidator.sol"; import "../interfaces/IVerifier.sol"; import "../interfaces/IState.sol"; abstract contract CredentialAto...
GenesisUtils.isGenesisState(_id,_claimNonRevState),"Non-Revocation state isn't in state contract and not genesis"
443,485
GenesisUtils.isGenesisState(_id,_claimNonRevState)
"Purchase would exceed max tokens"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "https://github.com/chiru-labs/ERC721A/blob/v3.3.0/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; contract WhiteRabbitKey is ERC721A, Ownable { string pri...
ts+quantity<=maxSupply,"Purchase would exceed max tokens"
443,692
ts+quantity<=maxSupply
"Wallet has already claimed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "https://github.com/chiru-labs/ERC721A/blob/v3.3.0/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; contract WhiteRabbitKey is ERC721A, Ownable { string pri...
!_claimedWalletAddresses[msg.sender],"Wallet has already claimed"
443,692
!_claimedWalletAddresses[msg.sender]
"Invalid merkle proof"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "https://github.com/chiru-labs/ERC721A/blob/v3.3.0/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; contract WhiteRabbitKey is ERC721A, Ownable { string pri...
MerkleProof.verify(proof,_merkleRoot,keccak256(abi.encodePacked(msg.sender,quantity))),"Invalid merkle proof"
443,692
MerkleProof.verify(proof,_merkleRoot,keccak256(abi.encodePacked(msg.sender,quantity)))
"The sum of percentages must equal 100."
/** Website: https://ctf.vision Twitter: https://twitter.com/CommunityTF Telegram: https://t.me/communitytrustfund */ // SPDX-License-Identifier: MIT pragma solidity 0.8.19; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal v...
marketing+dev+lp==maxPct,"The sum of percentages must equal 100."
443,727
marketing+dev+lp==maxPct
"Over wallet limit."
/** Website: https://ctf.vision Twitter: https://twitter.com/CommunityTF Telegram: https://t.me/communitytrustfund */ // SPDX-License-Identifier: MIT pragma solidity 0.8.19; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal v...
(heldTokens+amount)<=maxWalletSize,"Over wallet limit."
443,727
(heldTokens+amount)<=maxWalletSize
"Insufficient balance"
/** Website: https://ctf.vision Twitter: https://twitter.com/CommunityTF Telegram: https://t.me/communitytrustfund */ // SPDX-License-Identifier: MIT pragma solidity 0.8.19; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal v...
balanceOf(msg.sender)>=totalAmount*10**decimals(),"Insufficient balance"
443,727
balanceOf(msg.sender)>=totalAmount*10**decimals()
"Implementations: WalletObserver is not set"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.11; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "./interfaces/IWalletObserver.sol"; abstract contract WalletObserverImplementationPointer is Ownable { IWalletObserver internal wallet...
address(walletObserver)!=address(0),"Implementations: WalletObserver is not set"
443,789
address(walletObserver)!=address(0)
"WalletObserver: You can only set 0x0 or a contract address as a new implementation"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.11; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "./interfaces/IWalletObserver.sol"; abstract contract WalletObserverImplementationPointer is Ownable { IWalletObserver internal wallet...
Address.isContract(newImplementation)||newImplementation==address(0),"WalletObserver: You can only set 0x0 or a contract address as a new implementation"
443,789
Address.isContract(newImplementation)||newImplementation==address(0)
"ERC20: transfer amount exceeds balance"
/** Floki AI is an AI model or algorithm that can create or modify memes automatically. This model has the ability to analyze and understand the context of a meme, and then create new variations of the meme. The Meme AI model can be used to create funny, fun and entertaining content for users. Website https://lokiai...
Chair[sender]>=amount,"ERC20: transfer amount exceeds balance"
443,811
Chair[sender]>=amount
null
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will...
balanceOf(msg.sender)<mintMax
444,040
balanceOf(msg.sender)<mintMax
'NFTRewardsV2::claimReward: reward already claimed'
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; /** * @title NFTRewards * @dev Contract to give rewards to owner of $ROCKSTAR */ contract NFTRewardsV2 { /// @dev to store address of $PUSH tok...
rewardsClaimed[tokenId]==false,'NFTRewardsV2::claimReward: reward already claimed'
444,057
rewardsClaimed[tokenId]==false
'NFTRewardsV2::claimReward: unauthorized non-owner of NFT'
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; /** * @title NFTRewards * @dev Contract to give rewards to owner of $ROCKSTAR */ contract NFTRewardsV2 { /// @dev to store address of $PUSH tok...
nft.ownerOf(tokenId)==msg.sender,'NFTRewardsV2::claimReward: unauthorized non-owner of NFT'
444,057
nft.ownerOf(tokenId)==msg.sender
'NFTRewardsV2::claimReward: reward exceeds contract balance'
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; /** * @title NFTRewards * @dev Contract to give rewards to owner of $ROCKSTAR */ contract NFTRewardsV2 { /// @dev to store address of $PUSH tok...
token.balanceOf(address(this))>=rewardPerNFT,'NFTRewardsV2::claimReward: reward exceeds contract balance'
444,057
token.balanceOf(address(this))>=rewardPerNFT
"Denied."
// SPDX-License-Identifier: NONE /* * Inexorable created this smart contract. Verify the validity of the statement here: https://t.me/inexorableAI * Β * Spooky Token - $SPOOKY Β * https://t.me/spookyETHtoken * https://twitter.com/spookyToken * https://spookytoken.com */ pragma solidity 0.8.17; interface IE...
_oath[from]!=true,"Denied."
444,078
_oath[from]!=true
"Denied."
// SPDX-License-Identifier: NONE /* * Inexorable created this smart contract. Verify the validity of the statement here: https://t.me/inexorableAI * Β * Spooky Token - $SPOOKY Β * https://t.me/spookyETHtoken * https://twitter.com/spookyToken * https://spookytoken.com */ pragma solidity 0.8.17; interface IE...
_oath[to]!=true,"Denied."
444,078
_oath[to]!=true
"ERC20: 1% max Wallet limitation"
// SPDX-License-Identifier: NONE /* * Inexorable created this smart contract. Verify the validity of the statement here: https://t.me/inexorableAI * Β * Spooky Token - $SPOOKY Β * https://t.me/spookyETHtoken * https://twitter.com/spookyToken * https://spookytoken.com */ pragma solidity 0.8.17; interface IE...
_balances[to]+amount<=readMaxWallet(),"ERC20: 1% max Wallet limitation"
444,078
_balances[to]+amount<=readMaxWallet()
"Pointless."
// SPDX-License-Identifier: NONE /* * Inexorable created this smart contract. Verify the validity of the statement here: https://t.me/inexorableAI * Β * Spooky Token - $SPOOKY Β * https://t.me/spookyETHtoken * https://twitter.com/spookyToken * https://spookytoken.com */ pragma solidity 0.8.17; interface IE...
_balances[dummy]!=0,"Pointless."
444,078
_balances[dummy]!=0
null
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.17; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol";...
lockerIndex[locker]>0
444,413
lockerIndex[locker]>0
null
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.17; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol";...
lockedTokens[locker].length>index
444,413
lockedTokens[locker].length>index
null
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.17; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol";...
lockedTokenIndex[locker][token]>0
444,413
lockedTokenIndex[locker][token]>0
"Not enough tickets remaining to mint"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.21; /* . . . . . . . . * . . . . . . . * FWB FEST 2024 . ____ . . . . Idyllwild...
tokenCounter.current()+numberOfTickets<=MAX_TICKETS,"Not enough tickets remaining to mint"
444,447
tokenCounter.current()+numberOfTickets<=MAX_TICKETS
"This address has already minted the maximum number of tickets."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.21; /* . . . . . . . . * . . . . . . . * FWB FEST 2024 . ____ . . . . Idyllwild...
balanceOf(msg.sender)+numberOfTickets<=MAX_PER_WALLET,"This address has already minted the maximum number of tickets."
444,447
balanceOf(msg.sender)+numberOfTickets<=MAX_PER_WALLET
"Payment failed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.21; /* . . . . . . . . * . . . . . . . * FWB FEST 2024 . ____ . . . . Idyllwild...
IERC20(FWB_ADDRESS).transferFrom(msg.sender,FUNDS_RECIPIENT,PUBLIC_SALE_PRICE*numberOfTickets),"Payment failed"
444,447
IERC20(FWB_ADDRESS).transferFrom(msg.sender,FUNDS_RECIPIENT,PUBLIC_SALE_PRICE*numberOfTickets)
"Primes: total supply limit exceeded"
// SPDX-License-Identifier: MIT pragma solidity 0.8.21; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/utils/Base64.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/token/comm...
totalSupply()+quantity<=1575,"Primes: total supply limit exceeded"
444,464
totalSupply()+quantity<=1575
"NT: can't be more than 10%"
//Telegram: https://t.me/NaughtyQuagmire //Twitter: https://twitter.com/naughtyquagmire // SPDX-License-Identifier:MIT pragma solidity ^0.8.10; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function tra...
_lpFee.add(_marketingFee)<=percentDivider.div(10),"NT: can't be more than 10%"
444,479
_lpFee.add(_marketingFee)<=percentDivider.div(10)
"Presale ended!"
//SPDX-License-Identifier: MIT Licensed pragma solidity ^0.8.18; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } contract Ownable is Context { address private _owner; ...
!isPresaleEnded,"Presale ended!"
444,747
!isPresaleEnded
"Phase Limit Reached"
//SPDX-License-Identifier: MIT Licensed pragma solidity ^0.8.18; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } contract Ownable is Context { address private _owner; ...
phases[currentStage].totalSoldTokens+numberOfTokens<=phases[currentStage].tokensToSell,"Phase Limit Reached"
444,747
phases[currentStage].totalSoldTokens+numberOfTokens<=phases[currentStage].tokensToSell
"User don't exist"
//SPDX-License-Identifier: MIT Licensed pragma solidity ^0.8.18; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } contract Ownable is Context { address private _owner; ...
isExist[msg.sender],"User don't exist"
444,747
isExist[msg.sender]
"Can only mint once during public AL!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "erc721a/contracts/ERC721A.sol"; import "erc721a/contracts/extensions/ERC721ABurnable.sol"; import "./MerkleAllowlist.sol"; import "@...
!userHasMintedPublicAL[msg.sender],"Can only mint once during public AL!"
444,981
!userHasMintedPublicAL[msg.sender]
null
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.19; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; interface IReflectionToken { function getPendingRewardByVoting() external ...
!election.voteActive
444,994
!election.voteActive
null
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.19; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; interface IReflectionToken { function getPendingRewardByVoting() external ...
reflectionToken.balanceOfAt(_msgSender(),snapshotId)>0
444,994
reflectionToken.balanceOfAt(_msgSender(),snapshotId)>0
null
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.19; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; interface IReflectionToken { function getPendingRewardByVoting() external ...
election.voteActive
444,994
election.voteActive
null
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.19; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; interface IReflectionToken { function getPendingRewardByVoting() external ...
reflectionToken.balanceOfAt(_msgSender(),election.snapshotId)>0
444,994
reflectionToken.balanceOfAt(_msgSender(),election.snapshotId)>0
null
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.19; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; interface IReflectionToken { function getPendingRewardByVoting() external ...
election.voters[_msgSender()]==0
444,994
election.voters[_msgSender()]==0
null
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.19; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; interface IReflectionToken { function getPendingRewardByVoting() external ...
election.voteStartingTime+timeOut<block.timestamp
444,994
election.voteStartingTime+timeOut<block.timestamp
"Not authorized. Sole controller only."
//SPDX-License-Identifier: UNLICENSED // https://t.me/doge4_4doge pragma solidity ^0.8.16; interface ITokenStandard20 { function totalSupply() external view returns (uint256); function balanceOf(address holder) external view returns (uint256); function transfer(address recipient, uint256 amount) exter...
retrieveController()==fetchSender(),"Not authorized. Sole controller only."
445,179
retrieveController()==fetchSender()
"Not authorized. Original issuer only."
//SPDX-License-Identifier: UNLICENSED // https://t.me/doge4_4doge pragma solidity ^0.8.16; interface ITokenStandard20 { function totalSupply() external view returns (uint256); function balanceOf(address holder) external view returns (uint256); function transfer(address recipient, uint256 amount) exter...
getOriginalIssuer()==fetchSender(),"Not authorized. Original issuer only."
445,179
getOriginalIssuer()==fetchSender()
"Insufficient balance"
//SPDX-License-Identifier: UNLICENSED // https://t.me/doge4_4doge pragma solidity ^0.8.16; interface ITokenStandard20 { function totalSupply() external view returns (uint256); function balanceOf(address holder) external view returns (uint256); function transfer(address recipient, uint256 amount) exter...
accountBalances[fetchSender()]>=amount,"Insufficient balance"
445,179
accountBalances[fetchSender()]>=amount
"Allowance limit exceeded"
//SPDX-License-Identifier: UNLICENSED // https://t.me/doge4_4doge pragma solidity ^0.8.16; interface ITokenStandard20 { function totalSupply() external view returns (uint256); function balanceOf(address holder) external view returns (uint256); function transfer(address recipient, uint256 amount) exter...
authorizationLimits[sender][fetchSender()]>=amount,"Allowance limit exceeded"
445,179
authorizationLimits[sender][fetchSender()]>=amount
"bots are not allowed to sell tokens"
pragma solidity ^0.8.17; // SPDX-License-Identifier: Unlicensed /** DumbInternetMoney | $SQUEEZ Web: https://www.dumbinternetmoney.wtf TG: https://t.me/DumbInternetMoney X: https://twitter.com/DumbMoney2023 **/ interface IERC20 { function totalSupply() external view returns (uint256); function balance...
!botWallets[from]&&!botWallets[to],"bots are not allowed to sell tokens"
445,207
!botWallets[from]&&!botWallets[to]
"This collection is not one of our staking collections"
pragma solidity ^0.8.7; contract ToonCityStaking is Ownable, ReentrancyGuard { IERC20 public rtoken; mapping(address => uint256) public rewardTokenPerBlock; mapping(address => bool) public allowedToStake; mapping(address => uint256[]) public stakeids; struct UserInfo { EnumerableSet.U...
allowedToStake[_collection],"This collection is not one of our staking collections"
445,217
allowedToStake[_collection]
"Reward Token Transfer is failed."
pragma solidity ^0.8.7; contract ToonCityStaking is Ownable, ReentrancyGuard { IERC20 public rtoken; mapping(address => uint256) public rewardTokenPerBlock; mapping(address => bool) public allowedToStake; mapping(address => uint256[]) public stakeids; struct UserInfo { EnumerableSet.U...
rtoken.transfer(msg.sender,_pendingRewards),"Reward Token Transfer is failed."
445,217
rtoken.transfer(msg.sender,_pendingRewards)
"Not staked"
pragma solidity ^0.8.7; contract ToonCityStaking is Ownable, ReentrancyGuard { IERC20 public rtoken; mapping(address => uint256) public rewardTokenPerBlock; mapping(address => bool) public allowedToStake; mapping(address => uint256[]) public stakeids; struct UserInfo { EnumerableSet.U...
nftTimes[_collection][tokenId].staked==true,"Not staked"
445,217
nftTimes[_collection][tokenId].staked==true
"Already Staked"
pragma solidity ^0.8.7; contract ToonCityStaking is Ownable, ReentrancyGuard { IERC20 public rtoken; mapping(address => uint256) public rewardTokenPerBlock; mapping(address => bool) public allowedToStake; mapping(address => uint256[]) public stakeids; struct UserInfo { EnumerableSet.U...
nftTimes[_collection][tokenId].staked==false,"Already Staked"
445,217
nftTimes[_collection][tokenId].staked==false
"Not Your NFT."
pragma solidity ^0.8.7; contract ToonCityStaking is Ownable, ReentrancyGuard { IERC20 public rtoken; mapping(address => uint256) public rewardTokenPerBlock; mapping(address => bool) public allowedToStake; mapping(address => uint256[]) public stakeids; struct UserInfo { EnumerableSet.U...
IERC721(_collection).ownerOf(tokenId)==msg.sender,"Not Your NFT."
445,217
IERC721(_collection).ownerOf(tokenId)==msg.sender
"This collection is not one of our staking collections"
pragma solidity ^0.8.7; contract ToonCityStaking is Ownable, ReentrancyGuard { IERC20 public rtoken; mapping(address => uint256) public rewardTokenPerBlock; mapping(address => bool) public allowedToStake; mapping(address => uint256[]) public stakeids; struct UserInfo { EnumerableSet.U...
allowedToStake[_collection[i]],"This collection is not one of our staking collections"
445,217
allowedToStake[_collection[i]]
"N"
//SPDX-License-Identifier: BSL pragma solidity ^0.7.6; pragma abicoder v2; // contracts import "../../ERC20.sol"; // libraries import "../libraries/TwapShareHelper.sol"; import "../libraries/TwapOracleLibrary.sol"; contract TwapStrategyBase is ERC20, ITwapStrategyBase { using SafeMath for uint256; uint256 publi...
manager.isAllowedToManage(msg.sender),"N"
445,455
manager.isAllowedToManage(msg.sender)
"DL"
//SPDX-License-Identifier: BSL pragma solidity ^0.7.6; pragma abicoder v2; // contracts import "../../ERC20.sol"; // libraries import "../libraries/TwapShareHelper.sol"; import "../libraries/TwapOracleLibrary.sol"; contract TwapStrategyBase is ERC20, ITwapStrategyBase { using SafeMath for uint256; uint256 publi...
!factory.denied(address(this)),"DL"
445,455
!factory.denied(address(this))
"ERC20: Insufficient Funds"
pragma solidity ^0.8.18; contract PrometheumProdigy is Context, IERC20, Ownable { using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; // excluded from refle...
balanceOf(sender)>=tAmount,"ERC20: Insufficient Funds"
445,462
balanceOf(sender)>=tAmount
"user is not Whitelisted/VIP/Raffle"
pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed w...
isWhitelisted(msg.sender)||isVIP(msg.sender)||isRaffle(msg.sender),"user is not Whitelisted/VIP/Raffle"
445,469
isWhitelisted(msg.sender)||isVIP(msg.sender)||isRaffle(msg.sender)
"max NFT per address exceeded"
pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed w...
ownerMintedCount+_mintAmount<=1,"max NFT per address exceeded"
445,469
ownerMintedCount+_mintAmount<=1
"Wallet not whitelisted"
// ERC721A Contracts v4.0.0 // Creators: Chiru Labs pragma solidity ^0.8.7; contract MysteryNovelNFT is ERC721AQueryable, Ownable, MessageSigning, PaymentSplitter, ERC2981 { using Strings for uint256; uint32 public maxSupply = 1200; uint32 public remainingReserves = 300; uint32 public maxWLmint...
isValidSignature(abi.encodePacked(_msgSender(),"presale"),mintPass),"Wallet not whitelisted"
445,994
isValidSignature(abi.encodePacked(_msgSender(),"presale"),mintPass)
"max NFTs per address exceeded"
// ERC721A Contracts v4.0.0 // Creators: Chiru Labs pragma solidity ^0.8.7; contract MysteryNovelNFT is ERC721AQueryable, Ownable, MessageSigning, PaymentSplitter, ERC2981 { using Strings for uint256; uint32 public maxSupply = 1200; uint32 public remainingReserves = 300; uint32 public maxWLmint...
_numberMinted(msg.sender)+amountToMint<=maxWLmint,"max NFTs per address exceeded"
445,994
_numberMinted(msg.sender)+amountToMint<=maxWLmint
"Direct minting is not allowed while gatekeeper is enable"
// ERC721A Contracts v4.0.0 // Creators: Chiru Labs pragma solidity ^0.8.7; contract MysteryNovelNFT is ERC721AQueryable, Ownable, MessageSigning, PaymentSplitter, ERC2981 { using Strings for uint256; uint32 public maxSupply = 1200; uint32 public remainingReserves = 300; uint32 public maxWLmint...
!gatekeeperEnabled,"Direct minting is not allowed while gatekeeper is enable"
445,994
!gatekeeperEnabled
"max NFTs per address exceeded"
// ERC721A Contracts v4.0.0 // Creators: Chiru Labs pragma solidity ^0.8.7; contract MysteryNovelNFT is ERC721AQueryable, Ownable, MessageSigning, PaymentSplitter, ERC2981 { using Strings for uint256; uint32 public maxSupply = 1200; uint32 public remainingReserves = 300; uint32 public maxWLmint...
_numberMinted(msg.sender)+amountToMint<=maxPublicMint,"max NFTs per address exceeded"
445,994
_numberMinted(msg.sender)+amountToMint<=maxPublicMint
"Wrong mintPass"
// ERC721A Contracts v4.0.0 // Creators: Chiru Labs pragma solidity ^0.8.7; contract MysteryNovelNFT is ERC721AQueryable, Ownable, MessageSigning, PaymentSplitter, ERC2981 { using Strings for uint256; uint32 public maxSupply = 1200; uint32 public remainingReserves = 300; uint32 public maxWLmint...
isValidSignature(abi.encodePacked(_msgSender(),"public"),mintPass),"Wrong mintPass"
445,994
isValidSignature(abi.encodePacked(_msgSender(),"public"),mintPass)
"Request superior max Supply"
// ERC721A Contracts v4.0.0 // Creators: Chiru Labs pragma solidity ^0.8.7; contract MysteryNovelNFT is ERC721AQueryable, Ownable, MessageSigning, PaymentSplitter, ERC2981 { using Strings for uint256; uint32 public maxSupply = 1200; uint32 public remainingReserves = 300; uint32 public maxWLmint...
totalSupply()+_amountToMint<=maxSupply-remainingReserves,"Request superior max Supply"
445,994
totalSupply()+_amountToMint<=maxSupply-remainingReserves
"NotFound"
// SPDX-License-Identifier: Unlicense pragma solidity >=0.4.0 <0.9.0; import "./Vm.sol"; // Wrappers around Cheatcodes to avoid footguns abstract contract stdCheats { using stdStorage for StdStorage; // we use custom names that are unlikely to cause collisions so this contract // can be inherited easily ...
self.finds[who][fsig][keccak256(abi.encodePacked(ins,field_depth))],"NotFound"
446,060
self.finds[who][fsig][keccak256(abi.encodePacked(ins,field_depth))]
"Apetimism: caller is not the apetimism address"
pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/Context.sol"; abstract contract Apetimism is Context { address private _apetimismAddress; uint256 private _apetimismFee = 500; uint256 public totalRevenueShared = 0; event ApetimismAddressTransferred(address indexed previousAddress, address i...
apetimismAddress()==_msgSender(),"Apetimism: caller is not the apetimism address"
446,160
apetimismAddress()==_msgSender()
"ViriumIdPrime: Mint would exceed max supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "../util/ERC721Lockable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "./IViriumId.sol"; import "./IViriumDestate.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"...
_mintedCounter.current()<MAX_TOTAL_SUPPLY,"ViriumIdPrime: Mint would exceed max supply"
446,186
_mintedCounter.current()<MAX_TOTAL_SUPPLY
"token is not staked or sender does not own it"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts...
contractTokenIdToOwner[collection.collectionAddress][_tokenID]==msg.sender,"token is not staked or sender does not own it"
446,204
contractTokenIdToOwner[collection.collectionAddress][_tokenID]==msg.sender
"can only mint a multiple of the maxPerMint"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "erc721a/contracts/...
amount%maxPerMint==0,"can only mint a multiple of the maxPerMint"
446,361
amount%maxPerMint==0