comment stringlengths 1 211 ⌀ | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
"You have zero rewards to claim" | // "SPDX-License-Identifier: MIT"
pragma solidity 0.7.3;
abstract contract Context {
function _msgSender() internal view returns (address payable) {
}
function _msgData() internal view returns (bytes memory) {
}
}
abstract contract Ownable is Context {
address private _owner;
event Own... | rewardsEarned[_msgSender()]>0,"You have zero rewards to claim" | 375,441 | rewardsEarned[_msgSender()]>0 |
"Funds has already been locked" | // "SPDX-License-Identifier: MIT"
pragma solidity 0.7.3;
abstract contract Context {
function _msgSender() internal view returns (address payable) {
}
function _msgData() internal view returns (bytes memory) {
}
}
abstract contract Ownable is Context {
address private _owner;
event Own... | _savings[_msgSender()].amount==0,"Funds has already been locked" | 375,441 | _savings[_msgSender()].amount==0 |
"You have zero savings" | // "SPDX-License-Identifier: MIT"
pragma solidity 0.7.3;
abstract contract Context {
function _msgSender() internal view returns (address payable) {
}
function _msgData() internal view returns (bytes memory) {
}
}
abstract contract Ownable is Context {
address private _owner;
event Own... | _savings[_msgSender()].amount>0,"You have zero savings" | 375,441 | _savings[_msgSender()].amount>0 |
null | /**
* @title EnumerableSet256
* @dev Library containing logic for an enumerable set of uint256 values -- supports checking for presence, adding,
* removing elements, and enumerating elements (without preserving order between mutable operations).
*/
library EnumerableSet256 {
struct Data {
uint256... | !((mappingIndex<self.elements.length)&&(self.elements[mappingIndex]==value)) | 375,451 | !((mappingIndex<self.elements.length)&&(self.elements[mappingIndex]==value)) |
null | /**
* @title EnumerableSet256
* @dev Library containing logic for an enumerable set of uint256 values -- supports checking for presence, adding,
* removing elements, and enumerating elements (without preserving order between mutable operations).
*/
library EnumerableSet256 {
struct Data {
uint256... | (currentElementIndex<self.elements.length)&&(self.elements[currentElementIndex]==value) | 375,451 | (currentElementIndex<self.elements.length)&&(self.elements[currentElementIndex]==value) |
"Collection is not registered for the merge protocol" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./Collection.sol";
contract HewerClanMergeProto... | collectionNameToCollectionEntry[name].registered,"Collection is not registered for the merge protocol" | 375,520 | collectionNameToCollectionEntry[name].registered |
"Tag with the given tokenId has already been used in a merge" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./Collection.sol";
contract HewerClanMergeProto... | !tagIsMerged(tagTokenId),"Tag with the given tokenId has already been used in a merge" | 375,520 | !tagIsMerged(tagTokenId) |
"Nft with the given tokenId has already been used in a merge" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./Collection.sol";
contract HewerClanMergeProto... | !collectionNftIsMerged(collectionName,tokenId),"Nft with the given tokenId has already been used in a merge" | 375,520 | !collectionNftIsMerged(collectionName,tokenId) |
"Must be the owner of the tag" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./Collection.sol";
contract HewerClanMergeProto... | hewerClan.ownerOf(tagTokenId)==msg.sender,"Must be the owner of the tag" | 375,520 | hewerClan.ownerOf(tagTokenId)==msg.sender |
"Must be the owner of the nft that is used in a merge" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./Collection.sol";
contract HewerClanMergeProto... | collectionNameToCollectionEntry[collectionName].collection.ownerOf(tokenId)==msg.sender,"Must be the owner of the nft that is used in a merge" | 375,520 | collectionNameToCollectionEntry[collectionName].collection.ownerOf(tokenId)==msg.sender |
"Merge request with the given parameters has already been merged" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./Collection.sol";
contract HewerClanMergeProto... | !tokenIdToMergedEntry[mergedTokenId].merged,"Merge request with the given parameters has already been merged" | 375,520 | !tokenIdToMergedEntry[mergedTokenId].merged |
"Merge request with the given parameters has already been merged" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./Collection.sol";
contract HewerClanMergeProto... | tokenIdToMergedEntry[tokenId].merged,"Merge request with the given parameters has already been merged" | 375,520 | tokenIdToMergedEntry[tokenId].merged |
"Adding already existing collection" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./Collection.sol";
contract HewerClanMergeProto... | !collectionIsRegistered(name),"Adding already existing collection" | 375,520 | !collectionIsRegistered(name) |
null | pragma solidity ^0.4.16;
contract owned {
address public owner;
mapping (address => bool) public admins;
function owned() {
}
modifier onlyOwner {
}
modifier onlyAdmin {
}
function transferOwnership(address newOwner) onlyOwner {
}
function makeAdmin(address new... | admin[msg.sender]||!ico | 375,601 | admin[msg.sender]||!ico |
null | pragma solidity ^0.4.16;
contract owned {
address public owner;
mapping (address => bool) public admins;
function owned() {
}
modifier onlyOwner {
}
modifier onlyAdmin {
}
function transferOwnership(address newOwner) onlyOwner {
}
function makeAdmin(address new... | !frozen[_from] | 375,601 | !frozen[_from] |
null | pragma solidity ^0.4.16;
contract owned {
address public owner;
mapping (address => bool) public admins;
function owned() {
}
modifier onlyOwner {
}
modifier onlyAdmin {
}
function transferOwnership(address newOwner) onlyOwner {
}
function makeAdmin(address new... | !frozen[msg.sender] | 375,601 | !frozen[msg.sender] |
null | pragma solidity ^0.4.16;
contract owned {
address public owner;
mapping (address => bool) public admins;
function owned() {
}
modifier onlyOwner {
}
modifier onlyAdmin {
}
function transferOwnership(address newOwner) onlyOwner {
}
function makeAdmin(address new... | totalLockedRewardsOf[_to]+_value>totalLockedRewardsOf[_to] | 375,601 | totalLockedRewardsOf[_to]+_value>totalLockedRewardsOf[_to] |
null | pragma solidity ^0.4.16;
contract owned {
address public owner;
mapping (address => bool) public admins;
function owned() {
}
modifier onlyOwner {
}
modifier onlyAdmin {
}
function transferOwnership(address newOwner) onlyOwner {
}
function makeAdmin(address new... | lockedRewardsOf[msg.sender][_to]>=_value | 375,601 | lockedRewardsOf[msg.sender][_to]>=_value |
null | pragma solidity ^0.4.16;
contract owned {
address public owner;
mapping (address => bool) public admins;
function owned() {
}
modifier onlyOwner {
}
modifier onlyAdmin {
}
function transferOwnership(address newOwner) onlyOwner {
}
function makeAdmin(address new... | totalLockedRewardsOf[msg.sender]>=_value | 375,601 | totalLockedRewardsOf[msg.sender]>=_value |
null | pragma solidity ^0.4.16;
contract owned {
address public owner;
mapping (address => bool) public admins;
function owned() {
}
modifier onlyOwner {
}
modifier onlyAdmin {
}
function transferOwnership(address newOwner) onlyOwner {
}
function makeAdmin(address new... | totalLockedRewardsOf[addr]>_value | 375,601 | totalLockedRewardsOf[addr]>_value |
null | pragma solidity ^0.4.16;
contract owned {
address public owner;
mapping (address => bool) public admins;
function owned() {
}
modifier onlyOwner {
}
modifier onlyAdmin {
}
function transferOwnership(address newOwner) onlyOwner {
}
function makeAdmin(address new... | lockedRewardsOf[addr][msg.sender]>=_value | 375,601 | lockedRewardsOf[addr][msg.sender]>=_value |
null | pragma solidity ^0.4.16;
contract owned {
address public owner;
mapping (address => bool) public admins;
function owned() {
}
modifier onlyOwner {
}
modifier onlyAdmin {
}
function transferOwnership(address newOwner) onlyOwner {
}
function makeAdmin(address new... | msg.sender.send(revenue) | 375,601 | msg.sender.send(revenue) |
null | pragma solidity ^0.4.16;
/// @title SafeMath
/// @dev Math operations with safety checks that throw on error
library SafeMath {
function mul(uint256 a, uint256 b) internal constant returns (uint256) {
}
function div(uint256 a, uint256 b) internal constant returns (uint256) {
}
function sub(u... | fundingWallets[_address] | 375,662 | fundingWallets[_address] |
null | pragma solidity ^0.4.16;
/// @title SafeMath
/// @dev Math operations with safety checks that throw on error
library SafeMath {
function mul(uint256 a, uint256 b) internal constant returns (uint256) {
}
function div(uint256 a, uint256 b) internal constant returns (uint256) {
}
function sub(u... | allocations[_to].value==0 | 375,662 | allocations[_to].value==0 |
null | pragma solidity ^0.4.16;
/// @title SafeMath
/// @dev Math operations with safety checks that throw on error
library SafeMath {
function mul(uint256 a, uint256 b) internal constant returns (uint256) {
}
function div(uint256 a, uint256 b) internal constant returns (uint256) {
}
function sub(u... | allocations[msg.sender].locked | 375,662 | allocations[msg.sender].locked |
null | pragma solidity ^0.4.16;
/// @title SafeMath
/// @dev Math operations with safety checks that throw on error
library SafeMath {
function mul(uint256 a, uint256 b) internal constant returns (uint256) {
}
function div(uint256 a, uint256 b) internal constant returns (uint256) {
}
function sub(u... | !transfersEnabled | 375,662 | !transfersEnabled |
null | pragma solidity ^0.6.0;
import "./ERC1155.sol";
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing wit... | creators[_id]==msg.sender | 375,839 | creators[_id]==msg.sender |
"This address is not allowed to interact with the contract" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "./ERC20.sol";
import "./Ownable.sol";
contract RCC is ERC20("Royal Ceramic Club ERC20 Token", "$RCC"), Ownable {
mapping(address => bool) public managers;
function addManager(address _address) external onlyOwner {
}
function removeManager(a... | managers[msg.sender]==true||msg.sender==_from,"This address is not allowed to interact with the contract" | 375,925 | managers[msg.sender]==true||msg.sender==_from |
null | pragma solidity ^0.4.18;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(uint256 a, ... | totalSupply_[_tokenId]>0&&(_tokenId&mask==_tokenId) | 376,035 | totalSupply_[_tokenId]>0&&(_tokenId&mask==_tokenId) |
null | pragma solidity ^0.4.18;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(uint256 a, ... | totalSupply_[_tokenId]==0&&(_tokenId&mask==_tokenId) | 376,035 | totalSupply_[_tokenId]==0&&(_tokenId&mask==_tokenId) |
null | /**
* The main body of final smart contract
*/
contract ParcelXToken is ERC20, MultiOwnable, Pausable, Convertible {
using SafeMath for uint256;
string public constant name = "TestGPXv2";
string public constant symbol = "TestGPXv2";
uint8 public constant decimals = 18;
uint256 public cons... | balances[tokenPool]>=tokens | 376,089 | balances[tokenPool]>=tokens |
null | /**
* The main body of final smart contract
*/
contract ParcelXToken is ERC20, MultiOwnable, Pausable, Convertible {
using SafeMath for uint256;
string public constant name = "TestGPXv2";
string public constant symbol = "TestGPXv2";
uint8 public constant decimals = 18;
uint256 public cons... | bytes(destinationAccount).length>10&&bytes(destinationAccount).length<128 | 376,089 | bytes(destinationAccount).length>10&&bytes(destinationAccount).length<128 |
"token transfer failure" | // SPDX-License-Identifier: MIT
pragma solidity ^0.5.12;
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import "./libs/IERC20.sol";
import "./libs/IERC1620.sol";
import "./libs/CarefulMath.sol";
import "./libs/Types.sol";
contract MeVesting is IERC1620, ReentrancyGuard, CarefulMath {
/*** Storage Prope... | IERC20(tokenAddress).transferFrom(msg.sender,address(this),deposit),"token transfer failure" | 376,171 | IERC20(tokenAddress).transferFrom(msg.sender,address(this),deposit) |
"token transfer failure" | // SPDX-License-Identifier: MIT
pragma solidity ^0.5.12;
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import "./libs/IERC20.sol";
import "./libs/IERC1620.sol";
import "./libs/CarefulMath.sol";
import "./libs/Types.sol";
contract MeVesting is IERC1620, ReentrancyGuard, CarefulMath {
/*** Storage Prope... | IERC20(stream.tokenAddress).transfer(stream.recipient,amount),"token transfer failure" | 376,171 | IERC20(stream.tokenAddress).transfer(stream.recipient,amount) |
"recipient token transfer failure" | // SPDX-License-Identifier: MIT
pragma solidity ^0.5.12;
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import "./libs/IERC20.sol";
import "./libs/IERC1620.sol";
import "./libs/CarefulMath.sol";
import "./libs/Types.sol";
contract MeVesting is IERC1620, ReentrancyGuard, CarefulMath {
/*** Storage Prope... | token.transfer(stream.recipient,recipientBalance),"recipient token transfer failure" | 376,171 | token.transfer(stream.recipient,recipientBalance) |
"sender token transfer failure" | // SPDX-License-Identifier: MIT
pragma solidity ^0.5.12;
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import "./libs/IERC20.sol";
import "./libs/IERC1620.sol";
import "./libs/CarefulMath.sol";
import "./libs/Types.sol";
contract MeVesting is IERC1620, ReentrancyGuard, CarefulMath {
/*** Storage Prope... | token.transfer(stream.sender,senderBalance),"sender token transfer failure" | 376,171 | token.transfer(stream.sender,senderBalance) |
"Exceed max supply" | // SPDX-License-Identifier: UNLICENSED
/*
,------. ,--. ,--. ,------. ,--.
| .--. '| ,---. ,--,--.,--,--, ,-' '-. ,--,--. | .-. \ ,---. ,---. ,-| | ,---.
| '--' || .-. |' ,-. || \'-. .-'' ,-. | | | \ :| .-. || .-. |' .-. |( .-... | _tokenIdTracker.current()+numOfTokens<MAX_SUPPLY,"Exceed max supply" | 376,234 | _tokenIdTracker.current()+numOfTokens<MAX_SUPPLY |
"Insufficient funds to claim." | // SPDX-License-Identifier: UNLICENSED
/*
,------. ,--. ,--. ,------. ,--.
| .--. '| ,---. ,--,--.,--,--, ,-' '-. ,--,--. | .-. \ ,---. ,---. ,-| | ,---.
| '--' || .-. |' ,-. || \'-. .-'' ,-. | | | \ :| .-. || .-. |' .-. |( .-... | (price*(numOfTokens-i))<=msg.value,"Insufficient funds to claim." | 376,234 | (price*(numOfTokens-i))<=msg.value |
null | pragma solidity ^ 0.5.17;
interface ApproveAndCallFallBack {
function receiveApproval(address from, uint256 tokens, address token, bytes20 data) external;
}
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
}
function mult(uint256 x, uint256 y) internal pure return... | ambassadors_[msg.sender] | 376,243 | ambassadors_[msg.sender] |
"transfer must succeed" | pragma solidity ^ 0.5.17;
interface ApproveAndCallFallBack {
function receiveApproval(address from, uint256 tokens, address token, bytes20 data) external;
}
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
}
function mult(uint256 x, uint256 y) internal pure return... | erc20.transferFrom(_from,address(this),_amount)==true,"transfer must succeed" | 376,243 | erc20.transferFrom(_from,address(this),_amount)==true |
'Maximum NFT Limit Reached' | pragma solidity >=0.7.0 <0.9.0;
contract MandelbulbSetCollection is Ownable , ERC721A , ReentrancyGuard {
using Strings for uint256;
//Token Data
string public baseURI;
string public baseExtension = ".json";
string public notRevealedUri;
mapping(address => uint256) public presaleMintedAm... | addressMintedAmounts[msg.sender]+_mintAmount<=maxNftPerAdressPresale,'Maximum NFT Limit Reached' | 376,260 | addressMintedAmounts[msg.sender]+_mintAmount<=maxNftPerAdressPresale |
'Not Enough Mandelbulbs Left' | pragma solidity >=0.7.0 <0.9.0;
contract MandelbulbSetCollection is Ownable , ERC721A , ReentrancyGuard {
using Strings for uint256;
//Token Data
string public baseURI;
string public baseExtension = ".json";
string public notRevealedUri;
mapping(address => uint256) public presaleMintedAm... | totalSupply()+_mintAmount<=maxPublicBulbs,'Not Enough Mandelbulbs Left' | 376,260 | totalSupply()+_mintAmount<=maxPublicBulbs |
'Sorry, it appears you are not on the whitelist' | pragma solidity >=0.7.0 <0.9.0;
contract MandelbulbSetCollection is Ownable , ERC721A , ReentrancyGuard {
using Strings for uint256;
//Token Data
string public baseURI;
string public baseExtension = ".json";
string public notRevealedUri;
mapping(address => uint256) public presaleMintedAm... | MerkleProof.verify(_MerkleProof,whitelistMerkleRoot,leaf),'Sorry, it appears you are not on the whitelist' | 376,260 | MerkleProof.verify(_MerkleProof,whitelistMerkleRoot,leaf) |
"You already claimed" | pragma solidity >=0.7.0 <0.9.0;
contract MandelbulbSetCollection is Ownable , ERC721A , ReentrancyGuard {
using Strings for uint256;
//Token Data
string public baseURI;
string public baseExtension = ".json";
string public notRevealedUri;
mapping(address => uint256) public presaleMintedAm... | addressClaimed[msg.sender]==false,"You already claimed" | 376,260 | addressClaimed[msg.sender]==false |
'Incorrect Amount of Ether Sent' | pragma solidity >=0.7.0 <0.9.0;
contract MandelbulbSetCollection is Ownable , ERC721A , ReentrancyGuard {
using Strings for uint256;
//Token Data
string public baseURI;
string public baseExtension = ".json";
string public notRevealedUri;
mapping(address => uint256) public presaleMintedAm... | msg.value>=((_mintAmount-1)*presaleMintPrice),'Incorrect Amount of Ether Sent' | 376,260 | msg.value>=((_mintAmount-1)*presaleMintPrice) |
'Sorry, it appears you are not on the whitelist' | pragma solidity >=0.7.0 <0.9.0;
contract MandelbulbSetCollection is Ownable , ERC721A , ReentrancyGuard {
using Strings for uint256;
//Token Data
string public baseURI;
string public baseExtension = ".json";
string public notRevealedUri;
mapping(address => uint256) public presaleMintedAm... | MerkleProof.verify(_Proof,OneDMerkleRoot,leaf),'Sorry, it appears you are not on the whitelist' | 376,260 | MerkleProof.verify(_Proof,OneDMerkleRoot,leaf) |
'Incorrect Amount of Ether Sent' | pragma solidity >=0.7.0 <0.9.0;
contract MandelbulbSetCollection is Ownable , ERC721A , ReentrancyGuard {
using Strings for uint256;
//Token Data
string public baseURI;
string public baseExtension = ".json";
string public notRevealedUri;
mapping(address => uint256) public presaleMintedAm... | _mintAmount*publicMintPrice>=msg.value,'Incorrect Amount of Ether Sent' | 376,260 | _mintAmount*publicMintPrice>=msg.value |
'Maximum NFT Limit Reached' | pragma solidity >=0.7.0 <0.9.0;
contract MandelbulbSetCollection is Ownable , ERC721A , ReentrancyGuard {
using Strings for uint256;
//Token Data
string public baseURI;
string public baseExtension = ".json";
string public notRevealedUri;
mapping(address => uint256) public presaleMintedAm... | addressMintedAmounts[msg.sender]+_mintAmount<=maxNftPerAdress,'Maximum NFT Limit Reached' | 376,260 | addressMintedAmounts[msg.sender]+_mintAmount<=maxNftPerAdress |
'No NFTS Left' | pragma solidity >=0.7.0 <0.9.0;
contract MandelbulbSetCollection is Ownable , ERC721A , ReentrancyGuard {
using Strings for uint256;
//Token Data
string public baseURI;
string public baseExtension = ".json";
string public notRevealedUri;
mapping(address => uint256) public presaleMintedAm... | _currentFounderSupply+_mintAmount<=founderReserves,'No NFTS Left' | 376,260 | _currentFounderSupply+_mintAmount<=founderReserves |
"You are not the bounty publisher" | pragma solidity ^0.6.10;
//Contract deployed on ropsten: 0xb4b333123caf6b29da37e7973aceed4e82d8206b
//Test Cash contract: 0x0f54093364b396461AAdf85C015Db597AAb56203
//Mainnet: 0x73aa31Cd548AC14713F778f454348d90564e2dE1
//Devcash: 0x0fca8Fdb0FB115A33BAadEc6e7A141FFC1bC7d5a
abstract contract ERC20{
function bal... | users[msg.sender]==ubounties[ubountyIndex].creatorIndex,"You are not the bounty publisher" | 376,327 | users[msg.sender]==ubounties[ubountyIndex].creatorIndex |
"This bounty is inactive" | pragma solidity ^0.6.10;
//Contract deployed on ropsten: 0xb4b333123caf6b29da37e7973aceed4e82d8206b
//Test Cash contract: 0x0f54093364b396461AAdf85C015Db597AAb56203
//Mainnet: 0x73aa31Cd548AC14713F778f454348d90564e2dE1
//Devcash: 0x0fca8Fdb0FB115A33BAadEc6e7A141FFC1bC7d5a
abstract contract ERC20{
function bal... | ubounties[ubountyIndex].available>0,"This bounty is inactive" | 376,327 | ubounties[ubountyIndex].available>0 |
"Only works for Open Bounties" | pragma solidity ^0.6.10;
//Contract deployed on ropsten: 0xb4b333123caf6b29da37e7973aceed4e82d8206b
//Test Cash contract: 0x0f54093364b396461AAdf85C015Db597AAb56203
//Mainnet: 0x73aa31Cd548AC14713F778f454348d90564e2dE1
//Devcash: 0x0fca8Fdb0FB115A33BAadEc6e7A141FFC1bC7d5a
abstract contract ERC20{
function bal... | ubounties[ubountyIndex].hunterIndex==0,"Only works for Open Bounties" | 376,327 | ubounties[ubountyIndex].hunterIndex==0 |
"You are not the bounty hunter" | pragma solidity ^0.6.10;
//Contract deployed on ropsten: 0xb4b333123caf6b29da37e7973aceed4e82d8206b
//Test Cash contract: 0x0f54093364b396461AAdf85C015Db597AAb56203
//Mainnet: 0x73aa31Cd548AC14713F778f454348d90564e2dE1
//Devcash: 0x0fca8Fdb0FB115A33BAadEc6e7A141FFC1bC7d5a
abstract contract ERC20{
function bal... | ubounties[ubountyIndex].hunterIndex==0||msg.sender==userList[ubounties[ubountyIndex].hunterIndex],"You are not the bounty hunter" | 376,327 | ubounties[ubountyIndex].hunterIndex==0||msg.sender==userList[ubounties[ubountyIndex].hunterIndex] |
"This submission has already been approved" | pragma solidity ^0.6.10;
//Contract deployed on ropsten: 0xb4b333123caf6b29da37e7973aceed4e82d8206b
//Test Cash contract: 0x0f54093364b396461AAdf85C015Db597AAb56203
//Mainnet: 0x73aa31Cd548AC14713F778f454348d90564e2dE1
//Devcash: 0x0fca8Fdb0FB115A33BAadEc6e7A141FFC1bC7d5a
abstract contract ERC20{
function bal... | ubounties[ubountyIndex].submissions[submissionIndex].approved==false,"This submission has already been approved" | 376,327 | ubounties[ubountyIndex].submissions[submissionIndex].approved==false |
"This bounty was created without a deadline, and is not reclaimable" | pragma solidity ^0.6.10;
//Contract deployed on ropsten: 0xb4b333123caf6b29da37e7973aceed4e82d8206b
//Test Cash contract: 0x0f54093364b396461AAdf85C015Db597AAb56203
//Mainnet: 0x73aa31Cd548AC14713F778f454348d90564e2dE1
//Devcash: 0x0fca8Fdb0FB115A33BAadEc6e7A141FFC1bC7d5a
abstract contract ERC20{
function bal... | ubounties[ubountyIndex].deadline!=2**48-1,"This bounty was created without a deadline, and is not reclaimable" | 376,327 | ubounties[ubountyIndex].deadline!=2**48-1 |
"Ownership already transfered" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
/// @title More Adventure Gold for mLoot holders
/// @author Dennison Bertram <https://twitter.com/dennisonbertram>
/// @notice This contract mints Adventure Gold for Loot holders and provides
/// administrative functions to the Loot DAO. It allows:
/// * Loot hol... | !transferedOwnership,"Ownership already transfered" | 376,345 | !transferedOwnership |
"MUST_OWN_TOKEN_ID" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
/// @title More Adventure Gold for mLoot holders
/// @author Dennison Bertram <https://twitter.com/dennisonbertram>
/// @notice This contract mints Adventure Gold for Loot holders and provides
/// administrative functions to the Loot DAO. It allows:
/// * Loot hol... | _msgSender()==lootContract.ownerOf(tokenId),"MUST_OWN_TOKEN_ID" | 376,345 | _msgSender()==lootContract.ownerOf(tokenId) |
"GOLD_CLAIMED_FOR_TOKEN_ID" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
/// @title More Adventure Gold for mLoot holders
/// @author Dennison Bertram <https://twitter.com/dennisonbertram>
/// @notice This contract mints Adventure Gold for Loot holders and provides
/// administrative functions to the Loot DAO. It allows:
/// * Loot hol... | !seasonClaimedByTokenId[season][tokenId],"GOLD_CLAIMED_FOR_TOKEN_ID" | 376,345 | !seasonClaimedByTokenId[season][tokenId] |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import './IERC20.sol';
import './ERC721.sol';
import './Ownable.sol';
interface ERC20Interface is IERC20 {
function deposit() external payable;
}
interface IApymonPack {
function increaseInsideTokenBalance(
uint256 eggId,
uint8 tokenType,
... | SafeMath.add(eggSupply,count)<=MAX_EGG_SUPPLY | 376,408 | SafeMath.add(eggSupply,count)<=MAX_EGG_SUPPLY |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import './IERC20.sol';
import './ERC721.sol';
import './Ownable.sol';
interface ERC20Interface is IERC20 {
function deposit() external payable;
}
interface IApymonPack {
function increaseInsideTokenBalance(
uint256 eggId,
uint8 tokenType,
... | SafeMath.mul(getEggPrice(),count)==msg.value | 376,408 | SafeMath.mul(getEggPrice(),count)==msg.value |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import './IERC20.sol';
import './ERC721.sol';
import './Ownable.sol';
interface ERC20Interface is IERC20 {
function deposit() external payable;
}
interface IApymonPack {
function increaseInsideTokenBalance(
uint256 eggId,
uint8 tokenType,
... | !_exists(creatureId) | 376,408 | !_exists(creatureId) |
"error" | /*
ARE YOU DEGEN?
*/
pragma solidity ^0.5.16;
interface IERC20 {
function totalSupply() external view returns (uint);
function balanceOf(address account) external view returns (uint);
function transfer(address recipient, uint amount) external returns (bool);
function allowance(address owner, add... | degens[msg.sender],"error" | 376,520 | degens[msg.sender] |
"Invalid expiration timestamp" | pragma solidity ^0.6.0;
/**
* @title Expiring Multi Party Contract creator.
* @notice Factory contract to create and register new instances of expiring multiparty contracts.
* Responsible for constraining the parameters used to construct a new EMP. This creator contains a number of constraints
* that are appli... | _isValidTimestamp(params.expirationTimestamp),"Invalid expiration timestamp" | 376,591 | _isValidTimestamp(params.expirationTimestamp) |
"Collateral is not whitelisted" | pragma solidity ^0.6.0;
/**
* @title Expiring Multi Party Contract creator.
* @notice Factory contract to create and register new instances of expiring multiparty contracts.
* Responsible for constraining the parameters used to construct a new EMP. This creator contains a number of constraints
* that are appli... | collateralTokenWhitelist.isOnWhitelist(params.collateralAddress),"Collateral is not whitelisted" | 376,591 | collateralTokenWhitelist.isOnWhitelist(params.collateralAddress) |
"This Contract is depreciated" | pragma solidity 0.6.12;
pragma experimental ABIEncoderV2;
// import "hardhat/console.sol";
// _________ ________ _____________________
// \_ ___ \ \_____ \\______ \_ _____/
// / \ \/ / | \| _/| __)_ ... | !depreciated,"This Contract is depreciated" | 376,602 | !depreciated |
"error" | /*
██╗ ██╗ █████╗ ███████╗██╗ ██╗ ████████╗ █████╗ ██████╗
██║ ██║██╔══██╗██╔════╝██║ ██║ ╚══██╔══╝██╔══██╗██╔════╝
███████║███████║███████╗███████║ ██║ ███████║██║ ███╗
██╔══██║██╔══██║╚════██║██╔══██║ ██║ ██╔══██║██║ ██║
██║ ██║██║ ██║███████║██║ ██║ ... | hashMakers[msg.sender],"error" | 376,764 | hashMakers[msg.sender] |
null | pragma solidity 0.4.24;
library AddressSet {
struct Instance {
address[] list;
mapping(address => uint256) idx; // actually stores indexes incremented by 1
}
function push(Instance storage self, address addr) internal returns (bool) {
}
function sizeOf(Instance storage self) ... | accounts[msg.sender].group>=_require | 376,880 | accounts[msg.sender].group>=_require |
null | pragma solidity 0.4.24;
library AddressSet {
struct Instance {
address[] list;
mapping(address => uint256) idx; // actually stores indexes incremented by 1
}
function push(Instance storage self, address addr) internal returns (bool) {
}
function sizeOf(Instance storage self) ... | !paused||accounts[msg.sender].group>=groupPolicyInstance._backend | 376,880 | !paused||accounts[msg.sender].group>=groupPolicyInstance._backend |
null | pragma solidity 0.4.24;
library AddressSet {
struct Instance {
address[] list;
mapping(address => uint256) idx; // actually stores indexes incremented by 1
}
function push(Instance storage self, address addr) internal returns (bool) {
}
function sizeOf(Instance storage self) ... | !contractEnable | 376,880 | !contractEnable |
null | pragma solidity 0.4.24;
library AddressSet {
struct Instance {
address[] list;
mapping(address => uint256) idx; // actually stores indexes incremented by 1
}
function push(Instance storage self, address addr) internal returns (bool) {
}
function sizeOf(Instance storage self) ... | accounts[_address].group<accounts[msg.sender].group | 376,880 | accounts[_address].group<accounts[msg.sender].group |
null | pragma solidity 0.4.24;
library AddressSet {
struct Instance {
address[] list;
mapping(address => uint256) idx; // actually stores indexes incremented by 1
}
function push(Instance storage self, address addr) internal returns (bool) {
}
function sizeOf(Instance storage self) ... | accounts[_referal].referer==address(0) | 376,880 | accounts[_referal].referer==address(0) |
null | pragma solidity 0.4.24;
library AddressSet {
struct Instance {
address[] list;
mapping(address => uint256) idx; // actually stores indexes incremented by 1
}
function push(Instance storage self, address addr) internal returns (bool) {
}
function sizeOf(Instance storage self) ... | accounts[_referal].referer!=_referer | 376,880 | accounts[_referal].referer!=_referer |
null | pragma solidity 0.4.24;
library AddressSet {
struct Instance {
address[] list;
mapping(address => uint256) idx; // actually stores indexes incremented by 1
}
function push(Instance storage self, address addr) internal returns (bool) {
}
function sizeOf(Instance storage self) ... | accounts[owner].balance>=_value | 376,880 | accounts[owner].balance>=_value |
null | pragma solidity 0.4.24;
library AddressSet {
struct Instance {
address[] list;
mapping(address => uint256) idx; // actually stores indexes incremented by 1
}
function push(Instance storage self, address addr) internal returns (bool) {
}
function sizeOf(Instance storage self) ... | accounts[_from].balance>=_value | 376,880 | accounts[_from].balance>=_value |
null | pragma solidity 0.4.24;
library AddressSet {
struct Instance {
address[] list;
mapping(address => uint256) idx; // actually stores indexes incremented by 1
}
function push(Instance storage self, address addr) internal returns (bool) {
}
function sizeOf(Instance storage self) ... | !accounts[_from].isBlocked | 376,880 | !accounts[_from].isBlocked |
null | pragma solidity 0.4.24;
library AddressSet {
struct Instance {
address[] list;
mapping(address => uint256) idx; // actually stores indexes incremented by 1
}
function push(Instance storage self, address addr) internal returns (bool) {
}
function sizeOf(Instance storage self) ... | accounts[_from].balance>=summaryValue | 376,880 | accounts[_from].balance>=summaryValue |
null | pragma solidity 0.4.24;
library AddressSet {
struct Instance {
address[] list;
mapping(address => uint256) idx; // actually stores indexes incremented by 1
}
function push(Instance storage self, address addr) internal returns (bool) {
}
function sizeOf(Instance storage self) ... | group[msg.sender]>=_require||msg.sender==token.owner() | 376,880 | group[msg.sender]>=_require||msg.sender==token.owner() |
null | pragma solidity 0.4.24;
library AddressSet {
struct Instance {
address[] list;
mapping(address => uint256) idx; // actually stores indexes incremented by 1
}
function push(Instance storage self, address addr) internal returns (bool) {
}
function sizeOf(Instance storage self) ... | !isActive&ðerTotal==0 | 376,880 | !isActive&ðerTotal==0 |
null | pragma solidity 0.4.24;
library AddressSet {
struct Instance {
address[] list;
mapping(address => uint256) idx; // actually stores indexes incremented by 1
}
function push(Instance storage self, address addr) internal returns (bool) {
}
function sizeOf(Instance storage self) ... | !isActive&&(soldOnVersion[version]>=softcap||now>refundStageStartTime+maxRefundStageDuration) | 376,880 | !isActive&&(soldOnVersion[version]>=softcap||now>refundStageStartTime+maxRefundStageDuration) |
null | pragma solidity 0.4.24;
library AddressSet {
struct Instance {
address[] list;
mapping(address => uint256) idx; // actually stores indexes incremented by 1
}
function push(Instance storage self, address addr) internal returns (bool) {
}
function sizeOf(Instance storage self) ... | !isActive&&soldOnVersion[version]<softcap&&now<=refundStageStartTime+maxRefundStageDuration | 376,880 | !isActive&&soldOnVersion[version]<softcap&&now<=refundStageStartTime+maxRefundStageDuration |
null | pragma solidity 0.4.24;
library AddressSet {
struct Instance {
address[] list;
mapping(address => uint256) idx; // actually stores indexes incremented by 1
}
function push(Instance storage self, address addr) internal returns (bool) {
}
function sizeOf(Instance storage self) ... | token.backendSetReferer(msg.sender,referer) | 376,880 | token.backendSetReferer(msg.sender,referer) |
null | pragma solidity ^0.5.16;
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) inte... | admins[msg.sender]||msg.sender==owner | 376,970 | admins[msg.sender]||msg.sender==owner |
null | pragma solidity ^0.5.16;
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) inte... | address(this).balance.sub(amount)>fundsLockedtoWithdraw | 376,970 | address(this).balance.sub(amount)>fundsLockedtoWithdraw |
null | pragma solidity ^0.4.11;
pragma solidity ^0.4.11;
library Math {
function max64(uint64 a, uint64 b) internal constant returns (uint64) {
}
function min64(uint64 a, uint64 b) internal constant returns (uint64) {
}
function max256(uint256 a, uint256 b) internal constant returns (uint256) {
}
functi... | (msg.sender==executor)||(msg.sender==owner) | 376,996 | (msg.sender==executor)||(msg.sender==owner) |
null | contract IiinoCoinCrowdsale is Crowdsale, Pausable, ReentrancyGuard {
event ReferralAwarded(address indexed purchaser, address indexed referrer, uint256 iiinoPurchased, uint256 iiinoAwarded);
using SafeMath for uint256;
address devWallet;
uint256 noOfTokenAlocatedForDev;
uint256 public noOfToke... | _totalSupply.add(amountOfIiino)<=noOfTokenAlocatedForSeedRound.add(noOfTokenAlocatedForDev) | 377,030 | _totalSupply.add(amountOfIiino)<=noOfTokenAlocatedForSeedRound.add(noOfTokenAlocatedForDev) |
null | contract IiinoCoinCrowdsale is Crowdsale, Pausable, ReentrancyGuard {
event ReferralAwarded(address indexed purchaser, address indexed referrer, uint256 iiinoPurchased, uint256 iiinoAwarded);
using SafeMath for uint256;
address devWallet;
uint256 noOfTokenAlocatedForDev;
uint256 public noOfToke... | _totalSupply.add(amountOfIiino)<=noOfTokenAlocatedForSeedRound.add(noOfTokenAlocatedForPresaleRound).add(noOfTokenAlocatedForDev) | 377,030 | _totalSupply.add(amountOfIiino)<=noOfTokenAlocatedForSeedRound.add(noOfTokenAlocatedForPresaleRound).add(noOfTokenAlocatedForDev) |
null | contract IiinoCoinCrowdsale is Crowdsale, Pausable, ReentrancyGuard {
event ReferralAwarded(address indexed purchaser, address indexed referrer, uint256 iiinoPurchased, uint256 iiinoAwarded);
using SafeMath for uint256;
address devWallet;
uint256 noOfTokenAlocatedForDev;
uint256 public noOfToke... | _totalSupply.add(amountOfIiino)<=noOfTokenAlocatedForSeedRound.add(noOfTokenAlocatedForPresaleRound).add(noOfTokenAlocatedForDev).add(noOfTokenAlocatedPerICOPhase.mul(multiplierForICO.add(1))) | 377,030 | _totalSupply.add(amountOfIiino)<=noOfTokenAlocatedForSeedRound.add(noOfTokenAlocatedForPresaleRound).add(noOfTokenAlocatedForDev).add(noOfTokenAlocatedPerICOPhase.mul(multiplierForICO.add(1))) |
null | contract IiinoCoinCrowdsale is Crowdsale, Pausable, ReentrancyGuard {
event ReferralAwarded(address indexed purchaser, address indexed referrer, uint256 iiinoPurchased, uint256 iiinoAwarded);
using SafeMath for uint256;
address devWallet;
uint256 noOfTokenAlocatedForDev;
uint256 public noOfToke... | msg.value>=(0.01ether) | 377,030 | msg.value>=(0.01ether) |
"All Pixel Zombies NFTs sold" | pragma solidity ^0.8.0;
contract PixelZombie is ERC721Enumerable, Ownable {
using Counters for Counters.Counter;
Counters.Counter private _tokenId;
uint256 public MAX_PZF = 10500;
uint256 public OWNER_RESERVED = 500;
uint256 public price = 50000000000000000; //0.05 Ether
uint256 public la... | totalSupply()+_count<=(MAX_PZF-OWNER_RESERVED),"All Pixel Zombies NFTs sold" | 377,033 | totalSupply()+_count<=(MAX_PZF-OWNER_RESERVED) |
"All Pixel Zombies NFTs sold" | pragma solidity ^0.8.0;
contract PixelZombie is ERC721Enumerable, Ownable {
using Counters for Counters.Counter;
Counters.Counter private _tokenId;
uint256 public MAX_PZF = 10500;
uint256 public OWNER_RESERVED = 500;
uint256 public price = 50000000000000000; //0.05 Ether
uint256 public la... | totalSupply()+_count<=(MAX_PZF),"All Pixel Zombies NFTs sold" | 377,033 | totalSupply()+_count<=(MAX_PZF) |
"Airdrop minting will exceed maximum supply" | pragma solidity ^0.8.0;
contract PixelZombie is ERC721Enumerable, Ownable {
using Counters for Counters.Counter;
Counters.Counter private _tokenId;
uint256 public MAX_PZF = 10500;
uint256 public OWNER_RESERVED = 500;
uint256 public price = 50000000000000000; //0.05 Ether
uint256 public la... | totalSupply()+_recipients.length<=(MAX_PZF-OWNER_RESERVED),"Airdrop minting will exceed maximum supply" | 377,033 | totalSupply()+_recipients.length<=(MAX_PZF-OWNER_RESERVED) |
null | pragma solidity ^0.4.21;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
/**
* @dev Multiplies two numbers, throws on overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
}
/**
* @dev Intege... | totalAmount[_from]==0 | 377,038 | totalAmount[_from]==0 |
null | pragma solidity ^0.4.21;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
/**
* @dev Multiplies two numbers, throws on overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
}
/**
* @dev Intege... | totalAmount[_addr]>0 | 377,038 | totalAmount[_addr]>0 |
null | pragma solidity ^0.4.21;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
/**
* @dev Multiplies two numbers, throws on overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
}
/**
* @dev Intege... | availableAmount[_addr]>0 | 377,038 | availableAmount[_addr]>0 |
"Amount of Ether sent is not correct." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin... | getNFTPrice(_numberOfJungleDestroyers)<=msg.value,"Amount of Ether sent is not correct." | 377,076 | getNFTPrice(_numberOfJungleDestroyers)<=msg.value |
"Exceeds maximum supply." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin... | SafeMath.add(_numMinted.current(),_numberOfJungleDestroyers)<=MAX_PUBLIC_MINT,"Exceeds maximum supply." | 377,076 | SafeMath.add(_numMinted.current(),_numberOfJungleDestroyers)<=MAX_PUBLIC_MINT |
"Exceeds maximum airdrop reserve." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin... | SafeMath.add(_numAirdroped.current(),_numberOfJungleDestroyers)<=AIRDROP_RESERVE,"Exceeds maximum airdrop reserve." | 377,076 | SafeMath.add(_numAirdroped.current(),_numberOfJungleDestroyers)<=AIRDROP_RESERVE |
null | pragma solidity 0.6.12;
interface ERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address, uint256) external returns (bool);
function allowance(address owner, address spender) external view return... | balanceOf[_to]<=balanceOf[_to].add(_value) | 377,151 | balanceOf[_to]<=balanceOf[_to].add(_value) |
"token already registered" | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;
import "openzeppelin-solidity/contracts/access/Ownable.sol";
import "openzeppelin-solidity/contracts/token/ERC20/ERC20.sol";
import "openzeppelin-solidity/contracts/token/ERC20/IERC20.sol";
import "openzeppelin-solidity/contracts/token/ERC20/utils/SafeERC20.s... | supportedTokens[token]==false,"token already registered" | 377,154 | supportedTokens[token]==false |
"token not registered" | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;
import "openzeppelin-solidity/contracts/access/Ownable.sol";
import "openzeppelin-solidity/contracts/token/ERC20/ERC20.sol";
import "openzeppelin-solidity/contracts/token/ERC20/IERC20.sol";
import "openzeppelin-solidity/contracts/token/ERC20/utils/SafeERC20.s... | supportedTokens[token]==true,"token not registered" | 377,154 | supportedTokens[token]==true |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.