diff --git a/package.json b/package.json index 3df8665..a4de233 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@codex-data/sdk", - "version": "2.3.2", + "version": "2.3.3", "engines": { "node": ">=17.5.0" }, @@ -23,7 +23,7 @@ "build:cjs": "tsc", "build:esm": "tsc -p tsconfig.esm.json", "build:rename-esm": "find dist-esm -name '*.js' -exec sh -c 'mv \"$1\" \"${1%.js}.mjs\"' _ {} \\; && cp -r dist-esm/* dist/ && rm -rf dist-esm", - "fetch:schema": "curl -s https://graph.codex.io/schema/latest.graphql --output src/resources/schema.graphql", + "fetch:schema": "mkdir -p src/resources && curl -s https://graph.codex.io/schema/latest.graphql --output src/resources/schema.graphql", "generate:configs": "tsx src/scripts/generateNetworkConfigs.ts", "generate:graphql": "tsx src/scripts/generateGraphql.ts", "build:sdk": "tsx src/scripts/buildSdk.ts", diff --git a/src/scripts/generateGraphql.ts b/src/scripts/generateGraphql.ts index 7106084..3ccb64e 100644 --- a/src/scripts/generateGraphql.ts +++ b/src/scripts/generateGraphql.ts @@ -33,6 +33,11 @@ type SchemaType = { type Fields = Array; +// Max times a single type may appear on a recursion path before we stop +// descending. Controls how deep recursive fields (e.g. Asset.assetDeployments +// .asset) expand in generated queries. +const MAX_TYPE_RECURSION = 2; + function capitalize(str: string) { return str.charAt(0).toUpperCase() + str.slice(1); } @@ -43,14 +48,20 @@ export const getLeafType = ( result: Fields, currentName: string, level = 0, + visited: string[] = [], ): Fields => { - if (level > 8 || !type?.kind || type.isDeprecated) return result; + if (!type?.kind || type.isDeprecated) return result; // If it's a scalar, return the name if (type.kind === "SCALAR" || type.kind === "ENUM") return [...result, currentName!]; if (type.kind === "UNION") { + // Allow a type to appear up to MAX_TYPE_RECURSION times on the same path. + const seen = type.name ? visited.filter((n) => n === type.name).length : 0; + if (seen >= MAX_TYPE_RECURSION) return result; + const nextVisited = type.name ? [...visited, type.name] : visited; + // Find all the possible types const possibleTypes = allTypes.find( (t) => t.name === type.name, @@ -68,6 +79,7 @@ export const getLeafType = ( [], `... on ${f.name}`, level + 1, + nextVisited, ); }) .flat(); @@ -82,14 +94,24 @@ export const getLeafType = ( // If it's an object resolve it. if (type.kind === "OBJECT") { + // Allow a type to appear up to MAX_TYPE_RECURSION times on the same path. + const seen = type.name ? visited.filter((n) => n === type.name).length : 0; + if (seen >= MAX_TYPE_RECURSION) return result; + const nextVisited = type.name ? [...visited, type.name] : visited; + // For each of the fields of the subtype, resolve them const subType = allTypes.find((t) => t.name === type.name); const subTypeLeaves = (subType?.fields ?? []) .filter((t) => !t.isDeprecated) .map((f: SchemaType) => - getLeafType(f.type, allTypes, [], f.name, level + 1), + getLeafType(f.type, allTypes, [], f.name, level + 1, nextVisited), ) .flat(); + + // Drop fields whose only children were cycles — GraphQL rejects empty + // selection sets. At the root level we still return whatever we found. + if (level > 0 && subTypeLeaves.length === 0) return result; + return [ ...result, ...(level === 0 ? subTypeLeaves : [{ [currentName]: subTypeLeaves }]), @@ -98,11 +120,25 @@ export const getLeafType = ( // If it's a list, resolve the first object type if (type.kind === "LIST") - return getLeafType(type.ofType!, allTypes, [...result], currentName, level); + return getLeafType( + type.ofType!, + allTypes, + [...result], + currentName, + level, + visited, + ); // If it's required, resolve the first object type if (type.kind === "NON_NULL") - return getLeafType(type.ofType!, allTypes, [...result], currentName, level); + return getLeafType( + type.ofType!, + allTypes, + [...result], + currentName, + level, + visited, + ); throw new Error(`Unknown type ${type.name} ${type.kind}`); }; @@ -332,4 +368,6 @@ async function run() { ); } -run().then(() => process.exit()); +if (require.main === module) { + run().then(() => process.exit()); +} diff --git a/src/sdk/Subscribe.ts b/src/sdk/Subscribe.ts index 890927a..eed564e 100644 --- a/src/sdk/Subscribe.ts +++ b/src/sdk/Subscribe.ts @@ -22,8 +22,6 @@ import { OnEventsCreatedSubscriptionVariables, OnFilterTokensUpdatedSubscription, OnFilterTokensUpdatedSubscriptionVariables, - OnFilterTokenUpdatedSubscription, - OnFilterTokenUpdatedSubscriptionVariables, OnHoldersUpdatedSubscription, OnHoldersUpdatedSubscriptionVariables, OnLatestPairUpdatedSubscription, @@ -76,7 +74,7 @@ export class Subscribe { this.sdk.subscribe( `subscription OnBalanceUpdated($walletAddress: String!) { onBalanceUpdated (walletAddress: $walletAddress) { - address, balance, balanceUsd, firstHeldTimestamp, liquidityUsd, networkId, shiftedBalance, token { address, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, id, info { address, circulatingSupply, cmcId, description, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent }, tokenAddress, tokenId, tokenPriceUsd, walletId + address, balance, balanceUsd, firstHeldTimestamp, liquidityUsd, networkId, shiftedBalance, token { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard, token { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent } }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard, token { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent } }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent }, tokenAddress, tokenId, tokenPriceUsd, walletId } }`, vars, @@ -87,9 +85,9 @@ export class Subscribe { sink: Sink>, ) => this.sdk.subscribe( - `subscription OnBarsUpdated($pairId: String, $quoteToken: QuoteToken) { - onBarsUpdated (pairId: $pairId, quoteToken: $quoteToken) { - aggregates { r1 { t, token { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken }, usd { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken } }, r1D { t, token { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken }, usd { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken } }, r1S { t, token { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken }, usd { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken } }, r5 { t, token { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken }, usd { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken } }, r5S { t, token { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken }, usd { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken } }, r7D { t, token { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken }, usd { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken } }, r15 { t, token { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken }, usd { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken } }, r15S { t, token { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken }, usd { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken } }, r30 { t, token { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken }, usd { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken } }, r30S { t, token { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken }, usd { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken } }, r60 { t, token { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken }, usd { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken } }, r240 { t, token { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken }, usd { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken } }, r720 { t, token { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken }, usd { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken } } }, eventSortKey, networkId, pairAddress, pairId, quoteToken, quoteTokenAddress, statsType, timestamp + `subscription OnBarsUpdated($commitmentLevel: [BarCommitmentLevel!], $pairId: String, $quoteToken: QuoteToken) { + onBarsUpdated (commitmentLevel: $commitmentLevel, pairId: $pairId, quoteToken: $quoteToken) { + aggregates { r1 { t, token { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken }, usd { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken } }, r1D { t, token { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken }, usd { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken } }, r1S { t, token { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken }, usd { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken } }, r5 { t, token { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken }, usd { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken } }, r5S { t, token { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken }, usd { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken } }, r7D { t, token { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken }, usd { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken } }, r15 { t, token { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken }, usd { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken } }, r15S { t, token { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken }, usd { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken } }, r30 { t, token { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken }, usd { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken } }, r30S { t, token { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken }, usd { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken } }, r60 { t, token { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken }, usd { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken } }, r240 { t, token { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken }, usd { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken } }, r720 { t, token { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken }, usd { baseFees, builderTips, buyVolume, buyers, buys, c, h, l, l1DataFees, liquidity, o, poolFees, priorityFees, sellVolume, sellers, sells, t, traders, transactions, v, volume, volumeNativeToken } } }, commitmentLevel, eventSortKey, networkId, pairAddress, pairId, quoteToken, quoteTokenAddress, statsType, timestamp } }`, vars, @@ -187,9 +185,9 @@ export class Subscribe { sink: Sink>, ) => this.sdk.subscribe( - `subscription OnEventsCreated($address: String, $id: String, $networkId: Int, $quoteToken: QuoteToken) { - onEventsCreated (address: $address, id: $id, networkId: $networkId, quoteToken: $quoteToken) { - address, events { address, baseTokenPrice, blockHash, blockNumber, data { ... on BurnEventData { amount0, amount0Shifted, amount1, amount1Shifted, tickLower, tickUpper, type }, ... on MintEventData { amount0, amount0Shifted, amount1, amount1Shifted, tickLower, tickUpper, type }, ... on PoolBalanceChangedEventData { amount0, amount0Shifted, amount1, amount1Shifted, liquidity0, liquidity1, protocolFeeAmount0, protocolFeeAmount1, sender, token0, token1, type }, ... on SwapEventData { amount0, amount0In, amount0Out, amount1, amount1In, amount1Out, amountNonLiquidityToken, priceBaseToken, priceBaseTokenTotal, priceUsd, priceUsdTotal, tick, type } }, eventDisplayType, eventType, feeData { baseFeeNativeUnit, builderTipNativeUnit, dynamicFee, estimatedPoolFee, gasUsed, l1DataFeeNativeUnit, poolFeeAmountRaw, poolFeeBps, poolFeeRateRaw, priorityFeeNativeUnit, supplementalFeeData { ... on PumpAmmCashbackFeeData { cashbackAmountLamports, cashbackFeeBps, type }, ... on PumpCashbackFeeData { cashbackAmountLamports, cashbackFeeBps, type } }, txEventCount }, id, labels { sandwich { label, sandwichType, token0DrainedAmount, token1DrainedAmount }, washtrade { label } }, liquidityToken, logIndex, maker, networkId, quoteToken, timestamp, token0Address, token0PoolValueUsd, token0SwapValueUsd, token0ValueBase, token1Address, token1PoolValueUsd, token1SwapValueUsd, token1ValueBase, transactionHash, transactionIndex, walletAge, walletLabels }, id, networkId, quoteToken + `subscription OnEventsCreated($address: String, $commitmentLevel: [EventCommitmentLevel!], $id: String, $networkId: Int, $quoteToken: QuoteToken) { + onEventsCreated (address: $address, commitmentLevel: $commitmentLevel, id: $id, networkId: $networkId, quoteToken: $quoteToken) { + address, events { address, baseTokenPrice, blockHash, blockNumber, commitmentLevel, data { ... on BurnEventData { amount0, amount0Shifted, amount1, amount1Shifted, tickLower, tickUpper, type }, ... on MintEventData { amount0, amount0Shifted, amount1, amount1Shifted, tickLower, tickUpper, type }, ... on PoolBalanceChangedEventData { amount0, amount0Shifted, amount1, amount1Shifted, liquidity0, liquidity1, protocolFeeAmount0, protocolFeeAmount1, sender, token0, token1, type }, ... on SwapEventData { amount0, amount0In, amount0Out, amount1, amount1In, amount1Out, amountNonLiquidityToken, priceBaseToken, priceBaseTokenTotal, priceUsd, priceUsdTotal, tick, type } }, eventDisplayType, eventType, feeData { baseFeeNativeUnit, builderTipNativeUnit, dynamicFee, estimatedPoolFee, gasUsed, l1DataFeeNativeUnit, poolFeeAmountRaw, poolFeeBps, poolFeeRateRaw, priorityFeeNativeUnit, supplementalFeeData { ... on PumpAmmCashbackFeeData { cashbackAmountLamports, cashbackFeeBps, type }, ... on PumpCashbackFeeData { cashbackAmountLamports, cashbackFeeBps, type } }, txEventCount }, id, labels { sandwich { label, sandwichType, token0DrainedAmount, token1DrainedAmount }, washtrade { label } }, liquidityToken, logIndex, maker, networkId, quoteToken, supplementalIndex, timestamp, token0Address, token0PoolValueUsd, token0SwapValueUsd, token0ValueBase, token1Address, token1PoolValueUsd, token1SwapValueUsd, token1ValueBase, transactionHash, transactionIndex, walletAge, walletLabels }, id, networkId, quoteToken } }`, vars, @@ -200,22 +198,9 @@ export class Subscribe { sink: Sink>, ) => this.sdk.subscribe( - `subscription OnEventsCreatedByMaker($input: OnEventsCreatedByMakerInput!) { - onEventsCreatedByMaker (input: $input) { - events { address, baseTokenPrice, blockHash, blockNumber, data { ... on BurnEventData { amount0, amount0Shifted, amount1, amount1Shifted, tickLower, tickUpper, type }, ... on MintEventData { amount0, amount0Shifted, amount1, amount1Shifted, tickLower, tickUpper, type }, ... on PoolBalanceChangedEventData { amount0, amount0Shifted, amount1, amount1Shifted, liquidity0, liquidity1, protocolFeeAmount0, protocolFeeAmount1, sender, token0, token1, type }, ... on SwapEventData { amount0, amount0In, amount0Out, amount1, amount1In, amount1Out, amountNonLiquidityToken, priceBaseToken, priceBaseTokenTotal, priceUsd, priceUsdTotal, tick, type } }, eventDisplayType, eventType, feeData { baseFeeNativeUnit, builderTipNativeUnit, dynamicFee, estimatedPoolFee, gasUsed, l1DataFeeNativeUnit, poolFeeAmountRaw, poolFeeBps, poolFeeRateRaw, priorityFeeNativeUnit, supplementalFeeData { ... on PumpAmmCashbackFeeData { cashbackAmountLamports, cashbackFeeBps, type }, ... on PumpCashbackFeeData { cashbackAmountLamports, cashbackFeeBps, type } }, txEventCount }, id, labels { sandwich { label, sandwichType, token0DrainedAmount, token1DrainedAmount }, washtrade { label } }, liquidityToken, logIndex, maker, networkId, quoteToken, timestamp, token0Address, token0PoolValueUsd, token0SwapValueUsd, token0ValueBase, token1Address, token1PoolValueUsd, token1SwapValueUsd, token1ValueBase, transactionHash, transactionIndex, walletAge, walletLabels }, makerAddress - } -}`, - vars, - sink, - ); - onFilterTokenUpdated = ( - vars: OnFilterTokenUpdatedSubscriptionVariables, - sink: Sink>, - ) => - this.sdk.subscribe( - `subscription OnFilterTokenUpdated($excludeTokens: [String], $filters: TokenFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [TokenRanking], $statsType: TokenPairStatisticsType, $tokens: [String], $updatePeriod: Int, $useAggregatedStats: Boolean) { - onFilterTokensUpdated (excludeTokens: $excludeTokens, filters: $filters, limit: $limit, offset: $offset, phrase: $phrase, rankings: $rankings, statsType: $statsType, tokens: $tokens, updatePeriod: $updatePeriod, useAggregatedStats: $useAggregatedStats) { - updates { bundlerCount, bundlerHeldPercentage, buyCount1, buyCount4, buyCount5m, buyCount12, buyCount24, buyVolume1, buyVolume4, buyVolume5m, buyVolume12, buyVolume24, change1, change4, change5m, change12, change24, circulatingMarketCap, createdAt, devHeldPercentage, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, high1, high4, high5m, high12, high24, holders, insiderCount, insiderHeldPercentage, isScam, lastTransaction, liquidPair { address, createdAt, exchangeHash, fee, id, networkId, pooled { token0, token1 }, protocol, protocolData { ... on ArenaTradeData { tokenId, type }, ... on PumpData { creator, type }, ... on UniswapV4Data { isDynamicFee, isToken0NetworkToken, type, uniswapV4HookAddress } }, tickSpacing, token0, token0Data { address, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, id, info { address, circulatingSupply, cmcId, description, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent }, token1, token1Data { address, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, id, info { address, circulatingSupply, cmcId, description, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent }, virtualPooled { token0, token1 } }, liquidPairLiquidity, liquidPairPriceUSD, liquidity, low1, low4, low5m, low12, low24, marketCap, pair { address, createdAt, exchangeHash, fee, id, networkId, pooled { token0, token1 }, protocol, protocolData { ... on ArenaTradeData { tokenId, type }, ... on PumpData { creator, type }, ... on UniswapV4Data { isDynamicFee, isToken0NetworkToken, type, uniswapV4HookAddress } }, tickSpacing, token0, token0Data { address, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, id, info { address, circulatingSupply, cmcId, description, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent }, token1, token1Data { address, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, id, info { address, circulatingSupply, cmcId, description, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent }, virtualPooled { token0, token1 } }, potentialScamReasons, priceUSD, quoteToken, sellCount1, sellCount4, sellCount5m, sellCount12, sellCount24, sellVolume1, sellVolume4, sellVolume5m, sellVolume12, sellVolume24, sniperCount, sniperHeldPercentage, swapPct1dOldWallet, swapPct7dOldWallet, token { address, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, id, info { address, circulatingSupply, cmcId, description, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent }, top10HoldersPercent, trendingScore, txnCount1, txnCount4, txnCount5m, txnCount12, txnCount24, uniqueBuys1, uniqueBuys4, uniqueBuys5m, uniqueBuys12, uniqueBuys24, uniqueSells1, uniqueSells4, uniqueSells5m, uniqueSells12, uniqueSells24, uniqueTransactions1, uniqueTransactions4, uniqueTransactions5m, uniqueTransactions12, uniqueTransactions24, volume1, volume4, volume5m, volume12, volume24, volumeChange1, volumeChange4, volumeChange5m, volumeChange12, volumeChange24, walletAgeAvg, walletAgeStd } + `subscription OnEventsCreatedByMaker($commitmentLevel: [EventCommitmentLevel!], $input: OnEventsCreatedByMakerInput!) { + onEventsCreatedByMaker (commitmentLevel: $commitmentLevel, input: $input) { + events { address, baseTokenPrice, blockHash, blockNumber, commitmentLevel, data { ... on BurnEventData { amount0, amount0Shifted, amount1, amount1Shifted, tickLower, tickUpper, type }, ... on MintEventData { amount0, amount0Shifted, amount1, amount1Shifted, tickLower, tickUpper, type }, ... on PoolBalanceChangedEventData { amount0, amount0Shifted, amount1, amount1Shifted, liquidity0, liquidity1, protocolFeeAmount0, protocolFeeAmount1, sender, token0, token1, type }, ... on SwapEventData { amount0, amount0In, amount0Out, amount1, amount1In, amount1Out, amountNonLiquidityToken, priceBaseToken, priceBaseTokenTotal, priceUsd, priceUsdTotal, tick, type } }, eventDisplayType, eventType, feeData { baseFeeNativeUnit, builderTipNativeUnit, dynamicFee, estimatedPoolFee, gasUsed, l1DataFeeNativeUnit, poolFeeAmountRaw, poolFeeBps, poolFeeRateRaw, priorityFeeNativeUnit, supplementalFeeData { ... on PumpAmmCashbackFeeData { cashbackAmountLamports, cashbackFeeBps, type }, ... on PumpCashbackFeeData { cashbackAmountLamports, cashbackFeeBps, type } }, txEventCount }, id, labels { sandwich { label, sandwichType, token0DrainedAmount, token1DrainedAmount }, washtrade { label } }, liquidityToken, logIndex, maker, networkId, quoteToken, supplementalIndex, timestamp, token0Address, token0PoolValueUsd, token0SwapValueUsd, token0ValueBase, token1Address, token1PoolValueUsd, token1SwapValueUsd, token1ValueBase, transactionHash, transactionIndex, walletAge, walletLabels }, makerAddress } }`, vars, @@ -228,7 +213,7 @@ export class Subscribe { this.sdk.subscribe( `subscription OnFilterTokensUpdated($excludeTokens: [String], $filters: TokenFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [TokenRanking], $statsType: TokenPairStatisticsType, $tokens: [String], $updatePeriod: Int, $useAggregatedStats: Boolean) { onFilterTokensUpdated (excludeTokens: $excludeTokens, filters: $filters, limit: $limit, offset: $offset, phrase: $phrase, rankings: $rankings, statsType: $statsType, tokens: $tokens, updatePeriod: $updatePeriod, useAggregatedStats: $useAggregatedStats) { - updates { baseFees1, baseFees4, baseFees5m, baseFees12, baseFees24, builderTips1, builderTips4, builderTips5m, builderTips12, builderTips24, bundlerCount, bundlerHeldPercentage, buyCount1, buyCount4, buyCount5m, buyCount12, buyCount24, buyVolume1, buyVolume4, buyVolume5m, buyVolume12, buyVolume24, change1, change4, change5m, change12, change24, circulatingMarketCap, createdAt, devHeldPercentage, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, feeToVolumeRatio1, feeToVolumeRatio4, feeToVolumeRatio5m, feeToVolumeRatio12, feeToVolumeRatio24, high1, high4, high5m, high12, high24, holders, insiderCount, insiderHeldPercentage, isScam, l1DataFees1, l1DataFees4, l1DataFees5m, l1DataFees12, l1DataFees24, lastTransaction, liquidPair { address, createdAt, exchangeHash, fee, id, networkId, pooled { token0, token1 }, protocol, protocolData { ... on ArenaTradeData { tokenId, type }, ... on PumpData { creator, type }, ... on UniswapV4Data { isDynamicFee, isToken0NetworkToken, type, uniswapV4HookAddress } }, tickSpacing, token0, token0Data { address, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, id, info { address, circulatingSupply, cmcId, description, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent }, token1, token1Data { address, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, id, info { address, circulatingSupply, cmcId, description, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent }, virtualPooled { token0, token1 } }, liquidPairLiquidity, liquidPairPriceUSD, liquidity, low1, low4, low5m, low12, low24, marketCap, pair { address, createdAt, exchangeHash, fee, id, networkId, pooled { token0, token1 }, protocol, protocolData { ... on ArenaTradeData { tokenId, type }, ... on PumpData { creator, type }, ... on UniswapV4Data { isDynamicFee, isToken0NetworkToken, type, uniswapV4HookAddress } }, tickSpacing, token0, token0Data { address, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, id, info { address, circulatingSupply, cmcId, description, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent }, token1, token1Data { address, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, id, info { address, circulatingSupply, cmcId, description, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent }, virtualPooled { token0, token1 } }, poolFees1, poolFees4, poolFees5m, poolFees12, poolFees24, potentialScamReasons, priceUSD, priorityFees1, priorityFees4, priorityFees5m, priorityFees12, priorityFees24, quoteToken, sellCount1, sellCount4, sellCount5m, sellCount12, sellCount24, sellVolume1, sellVolume4, sellVolume5m, sellVolume12, sellVolume24, sniperCount, sniperHeldPercentage, swapPct1dOldWallet, swapPct7dOldWallet, token { address, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, id, info { address, circulatingSupply, cmcId, description, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent }, top10HoldersPercent, totalFees1, totalFees4, totalFees5m, totalFees12, totalFees24, trendingScore, txnCount1, txnCount4, txnCount5m, txnCount12, txnCount24, uniqueBuys1, uniqueBuys4, uniqueBuys5m, uniqueBuys12, uniqueBuys24, uniqueSells1, uniqueSells4, uniqueSells5m, uniqueSells12, uniqueSells24, uniqueTransactions1, uniqueTransactions4, uniqueTransactions5m, uniqueTransactions12, uniqueTransactions24, volume1, volume4, volume5m, volume12, volume24, volumeChange1, volumeChange4, volumeChange5m, volumeChange12, volumeChange24, walletAgeAvg, walletAgeStd } + updates { baseFees1, baseFees4, baseFees5m, baseFees12, baseFees24, builderTips1, builderTips4, builderTips5m, builderTips12, builderTips24, bundlerCount, bundlerHeldPercentage, buyCount1, buyCount4, buyCount5m, buyCount12, buyCount24, buyVolume1, buyVolume4, buyVolume5m, buyVolume12, buyVolume24, change1, change4, change5m, change12, change24, circulatingMarketCap, createdAt, devHeldPercentage, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, feeToVolumeRatio1, feeToVolumeRatio4, feeToVolumeRatio5m, feeToVolumeRatio12, feeToVolumeRatio24, high1, high4, high5m, high12, high24, holders, insiderCount, insiderHeldPercentage, isScam, l1DataFees1, l1DataFees4, l1DataFees5m, l1DataFees12, l1DataFees24, lastTransaction, liquidPair { address, createdAt, exchangeHash, fee, id, networkId, pooled { token0, token1 }, protocol, protocolData { ... on ArenaTradeData { tokenId, type }, ... on PumpData { creator, type }, ... on UniswapV4Data { isDynamicFee, isToken0NetworkToken, type, uniswapV4HookAddress } }, tickSpacing, token0, token0Data { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard, token { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent } }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard, token { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent } }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent }, token1, token1Data { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard, token { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent } }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard, token { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent } }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent }, virtualPooled { token0, token1 } }, liquidPairLiquidity, liquidPairPriceUSD, liquidity, low1, low4, low5m, low12, low24, marketCap, pair { address, createdAt, exchangeHash, fee, id, networkId, pooled { token0, token1 }, protocol, protocolData { ... on ArenaTradeData { tokenId, type }, ... on PumpData { creator, type }, ... on UniswapV4Data { isDynamicFee, isToken0NetworkToken, type, uniswapV4HookAddress } }, tickSpacing, token0, token0Data { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard, token { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent } }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard, token { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent } }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent }, token1, token1Data { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard, token { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent } }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard, token { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent } }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent }, virtualPooled { token0, token1 } }, poolFees1, poolFees4, poolFees5m, poolFees12, poolFees24, potentialScamReasons, priceUSD, priorityFees1, priorityFees4, priorityFees5m, priorityFees12, priorityFees24, quoteToken, sellCount1, sellCount4, sellCount5m, sellCount12, sellCount24, sellVolume1, sellVolume4, sellVolume5m, sellVolume12, sellVolume24, sniperCount, sniperHeldPercentage, swapPct1dOldWallet, swapPct7dOldWallet, token { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard, token { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent } }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard, token { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent } }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent }, top10HoldersPercent, totalFees1, totalFees4, totalFees5m, totalFees12, totalFees24, trendingScore, txnCount1, txnCount4, txnCount5m, txnCount12, txnCount24, uniqueBuys1, uniqueBuys4, uniqueBuys5m, uniqueBuys12, uniqueBuys24, uniqueSells1, uniqueSells4, uniqueSells5m, uniqueSells12, uniqueSells24, uniqueTransactions1, uniqueTransactions4, uniqueTransactions5m, uniqueTransactions12, uniqueTransactions24, volume1, volume4, volume5m, volume12, volume24, volumeChange1, volumeChange4, volumeChange5m, volumeChange12, volumeChange24, walletAgeAvg, walletAgeStd } } }`, vars, @@ -241,7 +226,7 @@ export class Subscribe { this.sdk.subscribe( `subscription OnHoldersUpdated($tokenId: String!) { onHoldersUpdated (tokenId: $tokenId) { - balances { address, balance, balanceUsd, firstHeldTimestamp, liquidityUsd, networkId, shiftedBalance, token { address, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, id, info { address, circulatingSupply, cmcId, description, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent }, tokenAddress, tokenId, tokenPriceUsd, walletId }, holders, networkId, tokenAddress, tokenId + balances { address, balance, balanceUsd, firstHeldTimestamp, liquidityUsd, networkId, shiftedBalance, token { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard, token { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent } }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard, token { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent } }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent }, tokenAddress, tokenId, tokenPriceUsd, walletId }, holders, networkId, tokenAddress, tokenId } }`, vars, @@ -280,7 +265,7 @@ export class Subscribe { this.sdk.subscribe( `subscription OnLaunchpadTokenEvent($input: OnLaunchpadTokenEventInput) { onLaunchpadTokenEvent (input: $input) { - address, bundlerCount, bundlerHeldPercentage, buyCount1, devHeldPercentage, eventType, holders, insiderCount, insiderHeldPercentage, launchpadName, liquidity, marketCap, networkId, price, protocol, sellCount1, sniperCount, sniperHeldPercentage, token { address, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, id, info { address, circulatingSupply, cmcId, description, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent }, top10HoldersPercent, transactions1, volume1 + address, bundlerCount, bundlerHeldPercentage, buyCount1, devHeldPercentage, eventType, holders, insiderCount, insiderHeldPercentage, launchpadName, liquidity, marketCap, networkId, price, protocol, sellCount1, sniperCount, sniperHeldPercentage, token { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard, token { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent } }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard, token { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent } }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent }, top10HoldersPercent, transactions1, volume1 } }`, vars, @@ -293,7 +278,7 @@ export class Subscribe { this.sdk.subscribe( `subscription OnLaunchpadTokenEventBatch($input: OnLaunchpadTokenEventBatchInput) { onLaunchpadTokenEventBatch (input: $input) { - address, bundlerCount, bundlerHeldPercentage, buyCount1, devHeldPercentage, eventType, holders, insiderCount, insiderHeldPercentage, launchpadName, liquidity, marketCap, networkId, price, protocol, sellCount1, sniperCount, sniperHeldPercentage, token { address, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, id, info { address, circulatingSupply, cmcId, description, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent }, top10HoldersPercent, transactions1, volume1 + address, bundlerCount, bundlerHeldPercentage, buyCount1, devHeldPercentage, eventType, holders, insiderCount, insiderHeldPercentage, launchpadName, liquidity, marketCap, networkId, price, protocol, sellCount1, sniperCount, sniperHeldPercentage, token { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard, token { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent } }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard, token { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent } }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent }, top10HoldersPercent, transactions1, volume1 } }`, vars, @@ -345,7 +330,7 @@ export class Subscribe { this.sdk.subscribe( `subscription OnPairMetadataUpdated($id: String, $quoteToken: QuoteToken, $useNonLiquidityTokenAsQuoteToken: Boolean) { onPairMetadataUpdated (id: $id, quoteToken: $quoteToken, useNonLiquidityTokenAsQuoteToken: $useNonLiquidityTokenAsQuoteToken) { - createdAt, enhancedToken0 { address, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, id, info { address, circulatingSupply, cmcId, description, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent }, enhancedToken1 { address, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, id, info { address, circulatingSupply, cmcId, description, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent }, exchangeId, fee, highPrice1, highPrice4, highPrice5m, highPrice12, highPrice24, id, liquidity, liquidityToken, lowPrice1, lowPrice4, lowPrice5m, lowPrice12, lowPrice24, networkId, nonLiquidityToken, pairAddress, price, priceChange1, priceChange4, priceChange5m, priceChange12, priceChange24, priceNonQuoteToken, quoteToken, statsType, tickSpacing, token0 { address, decimals, labels { createdAt, subType, type }, name, networkId, pooled, price, symbol }, token1 { address, decimals, labels { createdAt, subType, type }, name, networkId, pooled, price, symbol }, top10HoldersPercent, volume1, volume4, volume5m, volume12, volume24, walletActivity { bundlerCount, bundlerHeldPercentage, devHeldPercentage, insiderCount, insiderHeldPercentage, sniperCount, sniperHeldPercentage } + createdAt, enhancedToken0 { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard, token { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent } }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard, token { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent } }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent }, enhancedToken1 { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard, token { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent } }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard, token { address, asset { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, bluechipRating, cmcId, createBlockNumber, createTransactionHash, createdAt, creatorAddress, decimals, exchanges { address, color, exchangeVersion, iconUrl, id, name, networkId, tradeUrl }, freezable, gridAssetId, id, info { address, bluechipRating, circulatingSupply, cmcId, description, gridAssetId, id, imageBannerUrl, imageLargeUrl, imageSmallUrl, imageThumbHash, imageThumbUrl, isScam, name, networkId, symbol, totalSupply, videoExternalUrl }, isFreezableValid, isMintableValid, isScam, launchpad { completed, completedAt, completedSlot, graduationPercent, isCashbackEnabled, launchpadIconUrl, launchpadName, launchpadProtocol, migrated, migratedAt, migratedPoolAddress, migratedSlot, poolAddress }, mintable, name, networkId, organization { assets { assetDeployments { address, assetId, id, networkId, rootId, standard }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent } }, description, icon, id, name, rootId, status, ticker, type }, descriptionLong, descriptionShort, foundingDate, header, icon, logo, name, rootId, sector, socials { type, url }, tagLine, type, urls { type, url } }, profanity, socialLinks { bitcointalk, blog, coingecko, coinmarketcap, discord, email, facebook, github, instagram, linkedin, reddit, slack, telegram, twitch, twitter, website, wechat, whitepaper, youtube }, symbol, top10HoldersPercent }, exchangeId, fee, highPrice1, highPrice4, highPrice5m, highPrice12, highPrice24, id, liquidity, liquidityToken, lowPrice1, lowPrice4, lowPrice5m, lowPrice12, lowPrice24, networkId, nonLiquidityToken, pairAddress, price, priceChange1, priceChange4, priceChange5m, priceChange12, priceChange24, priceNonQuoteToken, quoteToken, statsType, tickSpacing, token0 { address, decimals, labels { createdAt, subType, type }, name, networkId, pooled, price, symbol }, token1 { address, decimals, labels { createdAt, subType, type }, name, networkId, pooled, price, symbol }, top10HoldersPercent, volume1, volume4, volume5m, volume12, volume24, walletActivity { bundlerCount, bundlerHeldPercentage, devHeldPercentage, insiderCount, insiderHeldPercentage, sniperCount, sniperHeldPercentage } } }`, vars, @@ -436,7 +421,7 @@ export class Subscribe { this.sdk.subscribe( `subscription OnTokenEventsCreated($input: OnTokenEventsCreatedInput!) { onTokenEventsCreated (input: $input) { - events { address, baseTokenPrice, blockHash, blockNumber, data { ... on BurnEventData { amount0, amount0Shifted, amount1, amount1Shifted, tickLower, tickUpper, type }, ... on MintEventData { amount0, amount0Shifted, amount1, amount1Shifted, tickLower, tickUpper, type }, ... on PoolBalanceChangedEventData { amount0, amount0Shifted, amount1, amount1Shifted, liquidity0, liquidity1, protocolFeeAmount0, protocolFeeAmount1, sender, token0, token1, type }, ... on SwapEventData { amount0, amount0In, amount0Out, amount1, amount1In, amount1Out, amountNonLiquidityToken, priceBaseToken, priceBaseTokenTotal, priceUsd, priceUsdTotal, tick, type } }, eventDisplayType, eventType, feeData { baseFeeNativeUnit, builderTipNativeUnit, dynamicFee, estimatedPoolFee, gasUsed, l1DataFeeNativeUnit, poolFeeAmountRaw, poolFeeBps, poolFeeRateRaw, priorityFeeNativeUnit, supplementalFeeData { ... on PumpAmmCashbackFeeData { cashbackAmountLamports, cashbackFeeBps, type }, ... on PumpCashbackFeeData { cashbackAmountLamports, cashbackFeeBps, type } }, txEventCount }, id, labels { sandwich { label, sandwichType, token0DrainedAmount, token1DrainedAmount }, washtrade { label } }, liquidityToken, logIndex, maker, networkId, quoteToken, timestamp, token0Address, token0PoolValueUsd, token0SwapValueUsd, token0ValueBase, token1Address, token1PoolValueUsd, token1SwapValueUsd, token1ValueBase, transactionHash, transactionIndex, walletAge, walletLabels }, id + events { address, baseTokenPrice, blockHash, blockNumber, commitmentLevel, data { ... on BurnEventData { amount0, amount0Shifted, amount1, amount1Shifted, tickLower, tickUpper, type }, ... on MintEventData { amount0, amount0Shifted, amount1, amount1Shifted, tickLower, tickUpper, type }, ... on PoolBalanceChangedEventData { amount0, amount0Shifted, amount1, amount1Shifted, liquidity0, liquidity1, protocolFeeAmount0, protocolFeeAmount1, sender, token0, token1, type }, ... on SwapEventData { amount0, amount0In, amount0Out, amount1, amount1In, amount1Out, amountNonLiquidityToken, priceBaseToken, priceBaseTokenTotal, priceUsd, priceUsdTotal, tick, type } }, eventDisplayType, eventType, feeData { baseFeeNativeUnit, builderTipNativeUnit, dynamicFee, estimatedPoolFee, gasUsed, l1DataFeeNativeUnit, poolFeeAmountRaw, poolFeeBps, poolFeeRateRaw, priorityFeeNativeUnit, supplementalFeeData { ... on PumpAmmCashbackFeeData { cashbackAmountLamports, cashbackFeeBps, type }, ... on PumpCashbackFeeData { cashbackAmountLamports, cashbackFeeBps, type } }, txEventCount }, id, labels { sandwich { label, sandwichType, token0DrainedAmount, token1DrainedAmount }, washtrade { label } }, liquidityToken, logIndex, maker, networkId, quoteToken, supplementalIndex, timestamp, token0Address, token0PoolValueUsd, token0SwapValueUsd, token0ValueBase, token1Address, token1PoolValueUsd, token1SwapValueUsd, token1ValueBase, transactionHash, transactionIndex, walletAge, walletLabels }, id } }`, vars, diff --git a/src/sdk/generated/gql.ts b/src/sdk/generated/gql.ts index 59f89bb..eacec2c 100644 --- a/src/sdk/generated/gql.ts +++ b/src/sdk/generated/gql.ts @@ -19,10 +19,10 @@ type Documents = { "mutation CreateWebhooks($input: CreateWebhooksInput!) {\n createWebhooks(input: $input) {\n nftEventWebhooks {\n alertRecurrence\n bucketId\n bucketSortkey\n callbackUrl\n conditions {\n ... on NftEventWebhookCondition {\n contractAddress {\n eq\n }\n eventType {\n eq\n }\n exchangeAddress {\n eq\n }\n fillSource {\n oneOf\n }\n ignoreTransfers\n individualBaseTokenPrice {\n eq\n gt\n gte\n lt\n lte\n }\n maker {\n eq\n }\n networkId {\n oneOf\n }\n nftTokenAddress: tokenAddress {\n eq\n }\n tokenId {\n eq\n }\n }\n ... on PriceEventWebhookCondition {\n priceNetworkId: networkId {\n eq\n }\n priceUsd {\n eq\n gt\n gte\n lt\n lte\n }\n priceTokenAddress: tokenAddress {\n eq\n }\n }\n ... on RawTransactionWebhookCondition {\n from {\n eq\n }\n ignoreNftEvents\n ignoreTokenPairEvents\n input {\n contains\n notContains\n }\n networkId {\n oneOf\n }\n to {\n eq\n }\n toOrFrom {\n eq\n }\n }\n ... on TokenPairEventWebhookCondition {\n eventType {\n oneOf\n }\n exchangeAddress {\n eq\n }\n maker {\n eq\n }\n networkId {\n oneOf\n }\n pairAddress {\n eq\n }\n swapValue {\n eq\n gt\n gte\n lt\n lte\n }\n tokenAddress {\n eq\n }\n }\n }\n created\n groupId\n id\n name\n publishingType\n retrySettings {\n maxRetries\n maxRetryDelay\n maxTimeElapsed\n minRetryDelay\n }\n status\n webhookType\n }\n priceWebhooks {\n alertRecurrence\n bucketId\n bucketSortkey\n callbackUrl\n conditions {\n ... on NftEventWebhookCondition {\n contractAddress {\n eq\n }\n eventType {\n eq\n }\n exchangeAddress {\n eq\n }\n fillSource {\n oneOf\n }\n ignoreTransfers\n individualBaseTokenPrice {\n eq\n gt\n gte\n lt\n lte\n }\n maker {\n eq\n }\n networkId {\n oneOf\n }\n nftTokenAddress: tokenAddress {\n eq\n }\n tokenId {\n eq\n }\n }\n ... on PriceEventWebhookCondition {\n priceNetworkId: networkId {\n eq\n }\n priceUsd {\n eq\n gt\n gte\n lt\n lte\n }\n priceTokenAddress: tokenAddress {\n eq\n }\n }\n ... on RawTransactionWebhookCondition {\n from {\n eq\n }\n ignoreNftEvents\n ignoreTokenPairEvents\n input {\n contains\n notContains\n }\n networkId {\n oneOf\n }\n to {\n eq\n }\n toOrFrom {\n eq\n }\n }\n ... on TokenPairEventWebhookCondition {\n eventType {\n oneOf\n }\n exchangeAddress {\n eq\n }\n maker {\n eq\n }\n networkId {\n oneOf\n }\n pairAddress {\n eq\n }\n swapValue {\n eq\n gt\n gte\n lt\n lte\n }\n tokenAddress {\n eq\n }\n }\n }\n created\n groupId\n id\n name\n publishingType\n retrySettings {\n maxRetries\n maxRetryDelay\n maxTimeElapsed\n minRetryDelay\n }\n status\n webhookType\n }\n rawTransactionWebhooks {\n alertRecurrence\n bucketId\n bucketSortkey\n callbackUrl\n conditions {\n ... on NftEventWebhookCondition {\n contractAddress {\n eq\n }\n eventType {\n eq\n }\n exchangeAddress {\n eq\n }\n fillSource {\n oneOf\n }\n ignoreTransfers\n individualBaseTokenPrice {\n eq\n gt\n gte\n lt\n lte\n }\n maker {\n eq\n }\n networkId {\n oneOf\n }\n tokenAddress {\n eq\n }\n tokenId {\n eq\n }\n }\n ... on PriceEventWebhookCondition {\n priceEventNetworkId: networkId {\n eq\n }\n priceUsd {\n eq\n gt\n gte\n lt\n lte\n }\n priceEventTokenAddress: tokenAddress {\n eq\n }\n }\n ... on RawTransactionWebhookCondition {\n from {\n eq\n }\n ignoreNftEvents\n ignoreTokenPairEvents\n input {\n contains\n notContains\n }\n networkId {\n oneOf\n }\n to {\n eq\n }\n toOrFrom {\n eq\n }\n }\n ... on TokenPairEventWebhookCondition {\n eventType {\n oneOf\n }\n exchangeAddress {\n eq\n }\n maker {\n eq\n }\n networkId {\n oneOf\n }\n pairAddress {\n eq\n }\n swapValue {\n eq\n gt\n gte\n lt\n lte\n }\n tokenAddress {\n eq\n }\n }\n }\n created\n groupId\n id\n name\n publishingType\n retrySettings {\n maxRetries\n maxRetryDelay\n maxTimeElapsed\n minRetryDelay\n }\n status\n webhookType\n }\n tokenPairEventWebhooks {\n alertRecurrence\n bucketId\n bucketSortkey\n callbackUrl\n conditions {\n ... on NftEventWebhookCondition {\n contractAddress {\n eq\n }\n eventType {\n eq\n }\n exchangeAddress {\n eq\n }\n fillSource {\n oneOf\n }\n ignoreTransfers\n individualBaseTokenPrice {\n eq\n gt\n gte\n lt\n lte\n }\n maker {\n eq\n }\n networkId {\n oneOf\n }\n tokenAddress {\n eq\n }\n tokenId {\n eq\n }\n }\n ... on PriceEventWebhookCondition {\n priceEventNetworkId: networkId {\n eq\n }\n priceUsd {\n eq\n gt\n gte\n lt\n lte\n }\n priceEventTokenAddress: tokenAddress {\n eq\n }\n }\n ... on RawTransactionWebhookCondition {\n from {\n eq\n }\n ignoreNftEvents\n ignoreTokenPairEvents\n input {\n contains\n notContains\n }\n networkId {\n oneOf\n }\n to {\n eq\n }\n toOrFrom {\n eq\n }\n }\n ... on TokenPairEventWebhookCondition {\n eventType {\n oneOf\n }\n exchangeAddress {\n eq\n }\n maker {\n eq\n }\n networkId {\n oneOf\n }\n pairAddress {\n eq\n }\n swapValue {\n eq\n gt\n gte\n lt\n lte\n }\n tokenAddress {\n eq\n }\n }\n }\n created\n groupId\n id\n name\n publishingType\n retrySettings {\n maxRetries\n maxRetryDelay\n maxTimeElapsed\n minRetryDelay\n }\n status\n webhookType\n }\n }\n}": typeof types.CreateWebhooksDocument, "mutation DeleteApiToken($id: String!) {\n deleteApiToken(id: $id)\n}": typeof types.DeleteApiTokenDocument, "mutation DeleteWebhooks($input: DeleteWebhooksInput!) {\n deleteWebhooks(input: $input) {\n deletedIds\n }\n}": typeof types.DeleteWebhooksDocument, - "mutation RefreshBalances($input: [RefreshBalancesInput!]!) {\n refreshBalances(input: $input) {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n}": typeof types.RefreshBalancesDocument, + "mutation RefreshBalances($input: [RefreshBalancesInput!]!) {\n refreshBalances(input: $input) {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n}": typeof types.RefreshBalancesDocument, "query ApiToken($token: String!) {\n apiToken(token: $token) {\n expiresTimeString\n id\n remaining\n requestLimit\n token\n }\n}": typeof types.ApiTokenDocument, "query ApiTokens {\n apiTokens {\n expiresTimeString\n id\n remaining\n requestLimit\n token\n }\n}": typeof types.ApiTokensDocument, - "query Balances($input: BalancesInput!) {\n balances(input: $input) {\n cursor\n items {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n }\n}": typeof types.BalancesDocument, + "query Balances($input: BalancesInput!) {\n balances(input: $input) {\n cursor\n items {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n }\n}": typeof types.BalancesDocument, "query Blocks($input: BlocksInput!) {\n blocks(input: $input) {\n blockNumber\n hash\n timestamp\n }\n}": typeof types.BlocksDocument, "query ChartUrls($input: ChartInput!) {\n chartUrls(input: $input) {\n pair {\n url\n }\n }\n}": typeof types.ChartUrlsDocument, "query DetailedPredictionEventStats($input: DetailedPredictionEventStatsInput!) {\n detailedPredictionEventStats(input: $input) {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n eventId\n lastTransactionAt\n lifecycle {\n ageSeconds\n expectedLifespanSeconds\n isResolved\n timeToResolutionSeconds\n winningOutcomeId\n }\n predictionEvent {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n marketIds\n networkId\n opensAt\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rulesPrimary\n rulesSecondary\n status\n tags\n updatedAt\n url\n venueEventId\n venueSeriesId\n }\n predictionMarkets {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n eventId\n eventLabel\n exchangeAddress\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n label\n networkId\n observedAt\n opensAt\n outcomeIds\n outcomeLabels\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rules\n rules2\n updatedAt\n venueEventId\n venueMarketId\n venueMarketSlug\n venueOutcomeIds\n winningOutcomeId\n }\n relevanceScores {\n score1\n score1w\n score4\n score5m\n score12\n score24\n }\n statsDay1 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n buySell {\n buyVolume {\n ct\n usd\n }\n sellVolume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n buyVolumeChange\n liquidityChange\n openInterestChange\n sellVolumeChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsHour1 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n buySell {\n buyVolume {\n ct\n usd\n }\n sellVolume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n buyVolumeChange\n liquidityChange\n openInterestChange\n sellVolumeChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsHour4 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n buySell {\n buyVolume {\n ct\n usd\n }\n sellVolume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n buyVolumeChange\n liquidityChange\n openInterestChange\n sellVolumeChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsHour12 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n buySell {\n buyVolume {\n ct\n usd\n }\n sellVolume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n buyVolumeChange\n liquidityChange\n openInterestChange\n sellVolumeChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsMin5 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n buySell {\n buyVolume {\n ct\n usd\n }\n sellVolume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n buyVolumeChange\n liquidityChange\n openInterestChange\n sellVolumeChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsWeek1 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n buySell {\n buyVolume {\n ct\n usd\n }\n sellVolume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n buyVolumeChange\n liquidityChange\n openInterestChange\n sellVolumeChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n trendingScores {\n score1\n score1w\n score4\n score5m\n score12\n score24\n }\n }\n}": typeof types.DetailedPredictionEventStatsDocument, @@ -30,18 +30,18 @@ type Documents = { "query DetailedPredictionTraderStats($input: DetailedPredictionTraderStatsInput!) {\n detailedPredictionTraderStats(input: $input) {\n allTimeStats {\n totalProfitCT\n totalProfitUsd\n totalVolumeCT\n totalVolumeUsd\n }\n lastTransactionAt\n statsDay1 {\n end\n lastTransactionAt\n start\n statsChange {\n buyVolumeChange\n lossesChange\n realizedPnlChange\n sellVolumeChange\n tradesChange\n uniqueMarketsChange\n volumeChange\n winsChange\n }\n statsCurrency {\n averageProfitCTPerTrade\n averageProfitUsdPerTrade\n averageSwapAmountCT\n averageSwapAmountUsd\n buyVolumeCT\n buyVolumeUsd\n heldTokenAcquisitionCostCT\n heldTokenAcquisitionCostUsd\n realizedPnlCT\n realizedPnlUsd\n realizedProfitPercentage\n sellVolumeCT\n sellVolumeUsd\n soldTokenAcquisitionCostCT\n soldTokenAcquisitionCostUsd\n volumeCT\n volumeUsd\n }\n statsNonCurrency {\n buys\n losses\n sells\n trades\n uniqueMarkets\n wins\n }\n }\n statsDay30 {\n end\n lastTransactionAt\n start\n statsChange {\n buyVolumeChange\n lossesChange\n realizedPnlChange\n sellVolumeChange\n tradesChange\n uniqueMarketsChange\n volumeChange\n winsChange\n }\n statsCurrency {\n averageProfitCTPerTrade\n averageProfitUsdPerTrade\n averageSwapAmountCT\n averageSwapAmountUsd\n buyVolumeCT\n buyVolumeUsd\n heldTokenAcquisitionCostCT\n heldTokenAcquisitionCostUsd\n realizedPnlCT\n realizedPnlUsd\n realizedProfitPercentage\n sellVolumeCT\n sellVolumeUsd\n soldTokenAcquisitionCostCT\n soldTokenAcquisitionCostUsd\n volumeCT\n volumeUsd\n }\n statsNonCurrency {\n buys\n losses\n sells\n trades\n uniqueMarkets\n wins\n }\n }\n statsHour1 {\n end\n lastTransactionAt\n start\n statsChange {\n buyVolumeChange\n lossesChange\n realizedPnlChange\n sellVolumeChange\n tradesChange\n uniqueMarketsChange\n volumeChange\n winsChange\n }\n statsCurrency {\n averageProfitCTPerTrade\n averageProfitUsdPerTrade\n averageSwapAmountCT\n averageSwapAmountUsd\n buyVolumeCT\n buyVolumeUsd\n heldTokenAcquisitionCostCT\n heldTokenAcquisitionCostUsd\n realizedPnlCT\n realizedPnlUsd\n realizedProfitPercentage\n sellVolumeCT\n sellVolumeUsd\n soldTokenAcquisitionCostCT\n soldTokenAcquisitionCostUsd\n volumeCT\n volumeUsd\n }\n statsNonCurrency {\n buys\n losses\n sells\n trades\n uniqueMarkets\n wins\n }\n }\n statsHour4 {\n end\n lastTransactionAt\n start\n statsChange {\n buyVolumeChange\n lossesChange\n realizedPnlChange\n sellVolumeChange\n tradesChange\n uniqueMarketsChange\n volumeChange\n winsChange\n }\n statsCurrency {\n averageProfitCTPerTrade\n averageProfitUsdPerTrade\n averageSwapAmountCT\n averageSwapAmountUsd\n buyVolumeCT\n buyVolumeUsd\n heldTokenAcquisitionCostCT\n heldTokenAcquisitionCostUsd\n realizedPnlCT\n realizedPnlUsd\n realizedProfitPercentage\n sellVolumeCT\n sellVolumeUsd\n soldTokenAcquisitionCostCT\n soldTokenAcquisitionCostUsd\n volumeCT\n volumeUsd\n }\n statsNonCurrency {\n buys\n losses\n sells\n trades\n uniqueMarkets\n wins\n }\n }\n statsHour12 {\n end\n lastTransactionAt\n start\n statsChange {\n buyVolumeChange\n lossesChange\n realizedPnlChange\n sellVolumeChange\n tradesChange\n uniqueMarketsChange\n volumeChange\n winsChange\n }\n statsCurrency {\n averageProfitCTPerTrade\n averageProfitUsdPerTrade\n averageSwapAmountCT\n averageSwapAmountUsd\n buyVolumeCT\n buyVolumeUsd\n heldTokenAcquisitionCostCT\n heldTokenAcquisitionCostUsd\n realizedPnlCT\n realizedPnlUsd\n realizedProfitPercentage\n sellVolumeCT\n sellVolumeUsd\n soldTokenAcquisitionCostCT\n soldTokenAcquisitionCostUsd\n volumeCT\n volumeUsd\n }\n statsNonCurrency {\n buys\n losses\n sells\n trades\n uniqueMarkets\n wins\n }\n }\n statsWeek1 {\n end\n lastTransactionAt\n start\n statsChange {\n buyVolumeChange\n lossesChange\n realizedPnlChange\n sellVolumeChange\n tradesChange\n uniqueMarketsChange\n volumeChange\n winsChange\n }\n statsCurrency {\n averageProfitCTPerTrade\n averageProfitUsdPerTrade\n averageSwapAmountCT\n averageSwapAmountUsd\n buyVolumeCT\n buyVolumeUsd\n heldTokenAcquisitionCostCT\n heldTokenAcquisitionCostUsd\n realizedPnlCT\n realizedPnlUsd\n realizedProfitPercentage\n sellVolumeCT\n sellVolumeUsd\n soldTokenAcquisitionCostCT\n soldTokenAcquisitionCostUsd\n volumeCT\n volumeUsd\n }\n statsNonCurrency {\n buys\n losses\n sells\n trades\n uniqueMarkets\n wins\n }\n }\n trader {\n activeMarketsCount\n alias\n allTimeProfitCT\n allTimeProfitUsd\n biggestLossCT\n biggestLossUsd\n biggestWinCT\n biggestWinUsd\n createdAt\n firstTradeTimestamp\n id\n labels\n lastTradeTimestamp\n linkedAddresses\n primaryAddress\n profileImageUrl\n profileUrl\n protocol\n totalTradesCount\n totalVolumeCT\n totalVolumeUsd\n updatedAt\n venueTraderId\n }\n traderId\n }\n}": typeof types.DetailedPredictionTraderStatsDocument, "query DetailedWalletStats($input: DetailedWalletStatsInput!) {\n detailedWalletStats(input: $input) {\n botScore\n labels\n lastTransactionAt\n networkBreakdown {\n nativeTokenBalance\n networkId\n statsDay1 {\n end\n lastTransactionAt\n networkId\n start\n statsNonCurrency {\n losses\n swaps\n uniqueTokens\n wins\n }\n statsUsd {\n averageProfitUsdPerTrade\n averageSwapAmountUsd\n heldTokenAcquisitionCostUsd\n realizedProfitPercentage\n realizedProfitUsd\n soldTokenAcquisitionCostUsd\n volumeUsd\n volumeUsdAll\n }\n walletAddress\n }\n statsDay30 {\n end\n lastTransactionAt\n networkId\n start\n statsNonCurrency {\n losses\n swaps\n uniqueTokens\n wins\n }\n statsUsd {\n averageProfitUsdPerTrade\n averageSwapAmountUsd\n heldTokenAcquisitionCostUsd\n realizedProfitPercentage\n realizedProfitUsd\n soldTokenAcquisitionCostUsd\n volumeUsd\n volumeUsdAll\n }\n walletAddress\n }\n statsWeek1 {\n end\n lastTransactionAt\n networkId\n start\n statsNonCurrency {\n losses\n swaps\n uniqueTokens\n wins\n }\n statsUsd {\n averageProfitUsdPerTrade\n averageSwapAmountUsd\n heldTokenAcquisitionCostUsd\n realizedProfitPercentage\n realizedProfitUsd\n soldTokenAcquisitionCostUsd\n volumeUsd\n volumeUsdAll\n }\n walletAddress\n }\n statsYear1 {\n end\n lastTransactionAt\n networkId\n start\n statsNonCurrency {\n losses\n swaps\n uniqueTokens\n wins\n }\n statsUsd {\n averageProfitUsdPerTrade\n averageSwapAmountUsd\n heldTokenAcquisitionCostUsd\n realizedProfitPercentage\n realizedProfitUsd\n soldTokenAcquisitionCostUsd\n volumeUsd\n volumeUsdAll\n }\n walletAddress\n }\n }\n scammerScore\n statsDay1 {\n end\n lastTransactionAt\n networkId\n start\n statsNonCurrency {\n losses\n swaps\n uniqueTokens\n wins\n }\n statsUsd {\n averageProfitUsdPerTrade\n averageSwapAmountUsd\n heldTokenAcquisitionCostUsd\n realizedProfitPercentage\n realizedProfitUsd\n soldTokenAcquisitionCostUsd\n volumeUsd\n volumeUsdAll\n }\n walletAddress\n }\n statsDay30 {\n end\n lastTransactionAt\n networkId\n start\n statsNonCurrency {\n losses\n swaps\n uniqueTokens\n wins\n }\n statsUsd {\n averageProfitUsdPerTrade\n averageSwapAmountUsd\n heldTokenAcquisitionCostUsd\n realizedProfitPercentage\n realizedProfitUsd\n soldTokenAcquisitionCostUsd\n volumeUsd\n volumeUsdAll\n }\n walletAddress\n }\n statsWeek1 {\n end\n lastTransactionAt\n networkId\n start\n statsNonCurrency {\n losses\n swaps\n uniqueTokens\n wins\n }\n statsUsd {\n averageProfitUsdPerTrade\n averageSwapAmountUsd\n heldTokenAcquisitionCostUsd\n realizedProfitPercentage\n realizedProfitUsd\n soldTokenAcquisitionCostUsd\n volumeUsd\n volumeUsdAll\n }\n walletAddress\n }\n statsYear1 {\n end\n lastTransactionAt\n networkId\n start\n statsNonCurrency {\n losses\n swaps\n uniqueTokens\n wins\n }\n statsUsd {\n averageProfitUsdPerTrade\n averageSwapAmountUsd\n heldTokenAcquisitionCostUsd\n realizedProfitPercentage\n realizedProfitUsd\n soldTokenAcquisitionCostUsd\n volumeUsd\n volumeUsdAll\n }\n walletAddress\n }\n wallet {\n address\n avatarUrl\n description\n discordId\n discordUsername\n displayName\n ethosLevel\n ethosScore\n ethosVerified\n farcasterId\n farcasterUsername\n firstFunding {\n amount\n fundedAt\n fundedByAddress\n fundedByLabel\n networkId\n tokenAddress\n transactionHash\n }\n firstSeenTimestamp\n githubId\n githubUsername\n identityLabels\n identitySource\n identityUpdatedAt\n telegramId\n telegramUsername\n twitterId\n twitterUsername\n website\n }\n walletAddress\n }\n}": typeof types.DetailedWalletStatsDocument, "query FilterExchanges($filters: ExchangeFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [ExchangeRanking]) {\n filterExchanges(\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n ) {\n count\n offset\n results {\n dailyActiveUsers\n exchange {\n address\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n monthlyActiveUsers\n txnCount1\n txnCount4\n txnCount12\n txnCount24\n volumeNBT1\n volumeNBT4\n volumeNBT12\n volumeNBT24\n volumeUSD1\n volumeUSD4\n volumeUSD12\n volumeUSD24\n }\n }\n}": typeof types.FilterExchangesDocument, - "query FilterPairs($filters: PairFilters, $limit: Int, $matchTokens: PairFilterMatchTokens, $offset: Int, $pairs: [String], $phrase: String, $rankings: [PairRanking], $statsType: TokenPairStatisticsType) {\n filterPairs(\n filters: $filters\n limit: $limit\n matchTokens: $matchTokens\n offset: $offset\n pairs: $pairs\n phrase: $phrase\n rankings: $rankings\n statsType: $statsType\n ) {\n count\n offset\n results {\n buyCount1\n buyCount4\n buyCount12\n buyCount24\n buyVolumeUSD1\n buyVolumeUSD4\n buyVolumeUSD12\n buyVolumeUSD24\n createdAt\n exchange {\n address\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n highPrice1\n highPrice4\n highPrice12\n highPrice24\n lastTransaction\n liquidity\n liquidityToken\n lockedLiquidityPercentage\n lowPrice1\n lowPrice4\n lowPrice12\n lowPrice24\n marketCap\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n potentialScamReasons\n price\n priceChange1\n priceChange4\n priceChange12\n priceChange24\n priceScale\n quoteToken\n sellCount1\n sellCount4\n sellCount12\n sellCount24\n sellVolumeUSD1\n sellVolumeUSD4\n sellVolumeUSD12\n sellVolumeUSD24\n swapPct1dOldWallet\n swapPct7dOldWallet\n token0 {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1 {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n txnCount1\n txnCount4\n txnCount12\n txnCount24\n uniqueBuys1\n uniqueBuys4\n uniqueBuys12\n uniqueBuys24\n uniqueSells1\n uniqueSells4\n uniqueSells12\n uniqueSells24\n uniqueTransactions1\n uniqueTransactions4\n uniqueTransactions12\n uniqueTransactions24\n volumeChange1\n volumeChange4\n volumeChange12\n volumeChange24\n volumeUSD1\n volumeUSD4\n volumeUSD12\n volumeUSD24\n walletAgeAvg\n walletAgeStd\n }\n }\n}": typeof types.FilterPairsDocument, - "query FilterPredictionEvents($eventIds: [String!], $excludeEventIds: [String!], $filters: PredictionEventFilters, $limit: Int, $marketSort: PredictionEventMarketSort, $offset: Int, $phrase: String, $rankings: [PredictionEventRanking!]) {\n filterPredictionEvents(\n eventIds: $eventIds\n excludeEventIds: $excludeEventIds\n filters: $filters\n limit: $limit\n marketSort: $marketSort\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n ) {\n count\n page\n results {\n age\n categories\n closesAt\n createdAt\n event {\n closesAt\n createdAt\n description\n exchangeAddress\n id\n imageThumbUrl\n networkId\n opensAt\n protocol\n question\n resolvedAt\n resolvesAt\n slug\n status\n tags\n venueEventId\n venueSeriesId\n venueUrl\n }\n expectedLifespan\n id\n lastTransactionAt\n liquidityCT\n liquidityChange1h\n liquidityChange1w\n liquidityChange4h\n liquidityChange5m\n liquidityChange12h\n liquidityChange24h\n liquidityUsd\n marketCount\n markets {\n id\n label\n }\n openInterestCT\n openInterestChange1h\n openInterestChange1w\n openInterestChange4h\n openInterestChange5m\n openInterestChange12h\n openInterestChange24h\n openInterestUsd\n opensAt\n predictionEvent {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n marketIds\n networkId\n opensAt\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rulesPrimary\n rulesSecondary\n status\n tags\n updatedAt\n url\n venueEventId\n venueSeriesId\n }\n protocol\n relatedEventIds\n relevanceScore1h\n relevanceScore1w\n relevanceScore4h\n relevanceScore5m\n relevanceScore12h\n relevanceScore24h\n resolutionSource\n resolvedAt\n resolvesAt\n status\n timestamp\n topMarkets {\n label\n marketId\n outcome0BidCT\n outcome0Label\n outcome1BidCT\n outcome1Label\n volumeCT1d\n volumeCT1w\n volumeCTAll\n }\n trades1h\n trades1w\n trades4h\n trades5m\n trades12h\n trades24h\n tradesChange1h\n tradesChange1w\n tradesChange4h\n tradesChange5m\n tradesChange12h\n tradesChange24h\n trendingScore1h\n trendingScore1w\n trendingScore4h\n trendingScore5m\n trendingScore12h\n trendingScore24h\n uniqueTraders1h\n uniqueTraders1w\n uniqueTraders4h\n uniqueTraders5m\n uniqueTraders12h\n uniqueTraders24h\n uniqueTradersChange1h\n uniqueTradersChange1w\n uniqueTradersChange4h\n uniqueTradersChange5m\n uniqueTradersChange12h\n uniqueTradersChange24h\n venueVolumeCT\n venueVolumeUsd\n volumeCTAll\n volumeChange1h\n volumeChange1w\n volumeChange4h\n volumeChange5m\n volumeChange12h\n volumeChange24h\n volumeUsd1h\n volumeUsd1w\n volumeUsd4h\n volumeUsd5m\n volumeUsd12h\n volumeUsd24h\n volumeUsdAll\n }\n }\n}": typeof types.FilterPredictionEventsDocument, + "query FilterPairs($filters: PairFilters, $limit: Int, $matchTokens: PairFilterMatchTokens, $offset: Int, $pairs: [String], $phrase: String, $rankings: [PairRanking], $statsType: TokenPairStatisticsType) {\n filterPairs(\n filters: $filters\n limit: $limit\n matchTokens: $matchTokens\n offset: $offset\n pairs: $pairs\n phrase: $phrase\n rankings: $rankings\n statsType: $statsType\n ) {\n count\n offset\n results {\n buyCount1\n buyCount4\n buyCount12\n buyCount24\n buyVolumeUSD1\n buyVolumeUSD4\n buyVolumeUSD12\n buyVolumeUSD24\n createdAt\n exchange {\n address\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n highPrice1\n highPrice4\n highPrice12\n highPrice24\n lastTransaction\n liquidity\n liquidityToken\n lockedLiquidityPercentage\n lowPrice1\n lowPrice4\n lowPrice12\n lowPrice24\n marketCap\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n potentialScamReasons\n price\n priceChange1\n priceChange4\n priceChange12\n priceChange24\n priceScale\n quoteToken\n sellCount1\n sellCount4\n sellCount12\n sellCount24\n sellVolumeUSD1\n sellVolumeUSD4\n sellVolumeUSD12\n sellVolumeUSD24\n swapPct1dOldWallet\n swapPct7dOldWallet\n token0 {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1 {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n txnCount1\n txnCount4\n txnCount12\n txnCount24\n uniqueBuys1\n uniqueBuys4\n uniqueBuys12\n uniqueBuys24\n uniqueSells1\n uniqueSells4\n uniqueSells12\n uniqueSells24\n uniqueTransactions1\n uniqueTransactions4\n uniqueTransactions12\n uniqueTransactions24\n volumeChange1\n volumeChange4\n volumeChange12\n volumeChange24\n volumeUSD1\n volumeUSD4\n volumeUSD12\n volumeUSD24\n walletAgeAvg\n walletAgeStd\n }\n }\n}": typeof types.FilterPairsDocument, + "query FilterPredictionEvents($eventIds: [String!], $excludeEventIds: [String!], $filters: PredictionEventFilters, $limit: Int, $marketSort: PredictionEventMarketSort, $offset: Int, $phrase: String, $rankings: [PredictionEventRanking!]) {\n filterPredictionEvents(\n eventIds: $eventIds\n excludeEventIds: $excludeEventIds\n filters: $filters\n limit: $limit\n marketSort: $marketSort\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n ) {\n count\n page\n results {\n age\n categories\n closesAt\n createdAt\n event {\n closesAt\n createdAt\n description\n exchangeAddress\n id\n imageThumbUrl\n networkId\n opensAt\n protocol\n question\n resolvedAt\n resolvesAt\n slug\n status\n tags\n venueEventId\n venueSeriesId\n venueUrl\n }\n expectedLifespan\n id\n lastTransactionAt\n liquidityCT\n liquidityChange1h\n liquidityChange1w\n liquidityChange4h\n liquidityChange5m\n liquidityChange12h\n liquidityChange24h\n liquidityUsd\n marketCount\n markets {\n id\n label\n }\n openInterestCT\n openInterestChange1h\n openInterestChange1w\n openInterestChange4h\n openInterestChange5m\n openInterestChange12h\n openInterestChange24h\n openInterestUsd\n opensAt\n predictionEvent {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n marketIds\n networkId\n opensAt\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rulesPrimary\n rulesSecondary\n status\n tags\n updatedAt\n url\n venueEventId\n venueSeriesId\n }\n protocol\n relatedEventIds\n relevanceScore1h\n relevanceScore1w\n relevanceScore4h\n relevanceScore5m\n relevanceScore12h\n relevanceScore24h\n resolutionSource\n resolvedAt\n resolvesAt\n status\n timestamp\n topMarkets {\n label\n marketId\n outcome0AskCT\n outcome0AskUSD\n outcome0BidCT\n outcome0BidUSD\n outcome0Label\n outcome1AskCT\n outcome1AskUSD\n outcome1BidCT\n outcome1BidUSD\n outcome1Label\n volumeCT1d\n volumeCT1w\n volumeCTAll\n volumeUSD1d\n volumeUSD1w\n volumeUSDAll\n }\n trades1h\n trades1w\n trades4h\n trades5m\n trades12h\n trades24h\n tradesChange1h\n tradesChange1w\n tradesChange4h\n tradesChange5m\n tradesChange12h\n tradesChange24h\n trendingScore1h\n trendingScore1w\n trendingScore4h\n trendingScore5m\n trendingScore12h\n trendingScore24h\n uniqueTraders1h\n uniqueTraders1w\n uniqueTraders4h\n uniqueTraders5m\n uniqueTraders12h\n uniqueTraders24h\n uniqueTradersChange1h\n uniqueTradersChange1w\n uniqueTradersChange4h\n uniqueTradersChange5m\n uniqueTradersChange12h\n uniqueTradersChange24h\n venueVolumeCT\n venueVolumeUsd\n volumeCTAll\n volumeChange1h\n volumeChange1w\n volumeChange4h\n volumeChange5m\n volumeChange12h\n volumeChange24h\n volumeUsd1h\n volumeUsd1w\n volumeUsd4h\n volumeUsd5m\n volumeUsd12h\n volumeUsd24h\n volumeUsdAll\n }\n }\n}": typeof types.FilterPredictionEventsDocument, "query FilterPredictionMarkets($eventIds: [String!], $excludeEventIds: [String!], $excludeMarketIds: [String!], $filters: PredictionMarketFilters, $limit: Int, $marketIds: [String!], $offset: Int, $phrase: String, $rankings: [PredictionMarketRanking!]) {\n filterPredictionMarkets(\n eventIds: $eventIds\n excludeEventIds: $excludeEventIds\n excludeMarketIds: $excludeMarketIds\n filters: $filters\n limit: $limit\n marketIds: $marketIds\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n ) {\n count\n page\n results {\n age\n avgTradeSizeUsd1h\n avgTradeSizeUsd1w\n avgTradeSizeUsd4h\n avgTradeSizeUsd5m\n avgTradeSizeUsd12h\n avgTradeSizeUsd24h\n categories\n closesAt\n competitiveScore1h\n competitiveScore1w\n competitiveScore4h\n competitiveScore5m\n competitiveScore12h\n competitiveScore24h\n eventLabel\n expectedLifespan\n id\n impliedProbabilitySum\n lastTransactionAt\n liquidityAsymmetry\n liquidityCT\n liquidityChange1h\n liquidityChange1w\n liquidityChange4h\n liquidityChange5m\n liquidityChange12h\n liquidityChange24h\n liquidityUsd\n market {\n closesAt\n collateral\n createdAt\n eventId\n exchangeAddress\n id\n imageThumbUrl\n label\n networkId\n opensAt\n protocol\n question\n resolvedAt\n resolvesAt\n status\n tags\n venueEventId\n venueMarketId\n venueMarketSlug\n }\n maxPriceRange1h\n maxPriceRange1w\n maxPriceRange4h\n maxPriceRange5m\n maxPriceRange12h\n maxPriceRange24h\n openInterestCT\n openInterestChange1h\n openInterestChange1w\n openInterestChange4h\n openInterestChange5m\n openInterestChange12h\n openInterestChange24h\n openInterestUsd\n opensAt\n outcome0 {\n bestAskCT\n bestAskUsd\n bestBidCT\n bestBidUsd\n buyVolumeUsd1h\n buyVolumeUsd1w\n buyVolumeUsd4h\n buyVolumeUsd5m\n buyVolumeUsd12h\n buyVolumeUsd24h\n buys1h\n buys1w\n buys4h\n buys5m\n buys12h\n buys24h\n exchangeAddress\n highPriceUsd1h\n highPriceUsd1w\n highPriceUsd4h\n highPriceUsd5m\n highPriceUsd12h\n highPriceUsd24h\n id\n isWinner\n label\n lastPriceCT\n lastPriceUsd\n liquidityCT\n liquidityUsd\n lowPriceUsd1h\n lowPriceUsd1w\n lowPriceUsd4h\n lowPriceUsd5m\n lowPriceUsd12h\n lowPriceUsd24h\n networkId\n priceChange1h\n priceChange1w\n priceChange4h\n priceChange5m\n priceChange12h\n priceChange24h\n priceRange1h\n priceRange1w\n priceRange4h\n priceRange5m\n priceRange12h\n priceRange24h\n sellVolumeUsd1h\n sellVolumeUsd1w\n sellVolumeUsd4h\n sellVolumeUsd5m\n sellVolumeUsd12h\n sellVolumeUsd24h\n sells1h\n sells1w\n sells4h\n sells5m\n sells12h\n sells24h\n spreadCT\n spreadUsd\n tags\n tokenAddress\n trades1h\n trades1w\n trades4h\n trades5m\n trades12h\n trades24h\n tradesChange1h\n tradesChange1w\n tradesChange4h\n tradesChange5m\n tradesChange12h\n tradesChange24h\n twoPercentAskDepthCT\n twoPercentAskDepthUsd\n twoPercentBidDepthCT\n twoPercentBidDepthUsd\n venueOutcomeId\n volumeChange1h\n volumeChange1w\n volumeChange4h\n volumeChange5m\n volumeChange12h\n volumeChange24h\n volumeShares1h\n volumeShares1w\n volumeShares4h\n volumeShares5m\n volumeShares12h\n volumeShares24h\n volumeUsd1h\n volumeUsd1w\n volumeUsd4h\n volumeUsd5m\n volumeUsd12h\n volumeUsd24h\n }\n outcome1 {\n bestAskCT\n bestAskUsd\n bestBidCT\n bestBidUsd\n buyVolumeUsd1h\n buyVolumeUsd1w\n buyVolumeUsd4h\n buyVolumeUsd5m\n buyVolumeUsd12h\n buyVolumeUsd24h\n buys1h\n buys1w\n buys4h\n buys5m\n buys12h\n buys24h\n exchangeAddress\n highPriceUsd1h\n highPriceUsd1w\n highPriceUsd4h\n highPriceUsd5m\n highPriceUsd12h\n highPriceUsd24h\n id\n isWinner\n label\n lastPriceCT\n lastPriceUsd\n liquidityCT\n liquidityUsd\n lowPriceUsd1h\n lowPriceUsd1w\n lowPriceUsd4h\n lowPriceUsd5m\n lowPriceUsd12h\n lowPriceUsd24h\n networkId\n priceChange1h\n priceChange1w\n priceChange4h\n priceChange5m\n priceChange12h\n priceChange24h\n priceRange1h\n priceRange1w\n priceRange4h\n priceRange5m\n priceRange12h\n priceRange24h\n sellVolumeUsd1h\n sellVolumeUsd1w\n sellVolumeUsd4h\n sellVolumeUsd5m\n sellVolumeUsd12h\n sellVolumeUsd24h\n sells1h\n sells1w\n sells4h\n sells5m\n sells12h\n sells24h\n spreadCT\n spreadUsd\n tags\n tokenAddress\n trades1h\n trades1w\n trades4h\n trades5m\n trades12h\n trades24h\n tradesChange1h\n tradesChange1w\n tradesChange4h\n tradesChange5m\n tradesChange12h\n tradesChange24h\n twoPercentAskDepthCT\n twoPercentAskDepthUsd\n twoPercentBidDepthCT\n twoPercentBidDepthUsd\n venueOutcomeId\n volumeChange1h\n volumeChange1w\n volumeChange4h\n volumeChange5m\n volumeChange12h\n volumeChange24h\n volumeShares1h\n volumeShares1w\n volumeShares4h\n volumeShares5m\n volumeShares12h\n volumeShares24h\n volumeUsd1h\n volumeUsd1w\n volumeUsd4h\n volumeUsd5m\n volumeUsd12h\n volumeUsd24h\n }\n predictionMarket {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n eventId\n eventLabel\n exchangeAddress\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n label\n networkId\n observedAt\n opensAt\n outcomeIds\n outcomeLabels\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rules\n rules2\n updatedAt\n venueEventId\n venueMarketId\n venueMarketSlug\n venueOutcomeIds\n winningOutcomeId\n }\n priceCompetitiveness\n protocol\n relevanceScore1h\n relevanceScore1w\n relevanceScore4h\n relevanceScore5m\n relevanceScore12h\n relevanceScore24h\n resolutionSource\n resolvesAt\n status\n timestamp\n trades1h\n trades1w\n trades4h\n trades5m\n trades12h\n trades24h\n tradesChange1h\n tradesChange1w\n tradesChange4h\n tradesChange5m\n tradesChange12h\n tradesChange24h\n trendingScore1h\n trendingScore1w\n trendingScore4h\n trendingScore5m\n trendingScore12h\n trendingScore24h\n uniqueTraders1h\n uniqueTraders1w\n uniqueTraders4h\n uniqueTraders5m\n uniqueTraders12h\n uniqueTraders24h\n uniqueTradersChange1h\n uniqueTradersChange1w\n uniqueTradersChange4h\n uniqueTradersChange5m\n uniqueTradersChange12h\n uniqueTradersChange24h\n venueVolumeCT\n venueVolumeUsd\n volumeCTAll\n volumeChange1h\n volumeChange1w\n volumeChange4h\n volumeChange5m\n volumeChange12h\n volumeChange24h\n volumeImbalance24h\n volumeUsd1h\n volumeUsd1w\n volumeUsd4h\n volumeUsd5m\n volumeUsd12h\n volumeUsd24h\n volumeUsdAll\n winningOutcomeId\n }\n }\n}": typeof types.FilterPredictionMarketsDocument, "query FilterPredictionTraderMarkets($eventIds: [String!], $excludeEventIds: [String!], $excludeMarketIds: [String!], $excludeTraderIds: [String!], $filters: PredictionTraderMarketFilters, $limit: Int, $marketIds: [String!], $offset: Int, $phrase: String, $rankings: [PredictionTraderMarketRanking!], $traderIds: [String!]) {\n filterPredictionTraderMarkets(\n eventIds: $eventIds\n excludeEventIds: $excludeEventIds\n excludeMarketIds: $excludeMarketIds\n excludeTraderIds: $excludeTraderIds\n filters: $filters\n limit: $limit\n marketIds: $marketIds\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n traderIds: $traderIds\n ) {\n count\n page\n results {\n eventId\n firstTradeTimestamp\n hasOpenPosition\n id\n lastTradeTimestamp\n market {\n closesAt\n eventId\n eventLabel\n id\n imageThumbUrl\n label\n outcome0Label\n outcome1Label\n protocol\n question\n resolvedAt\n status\n venueMarketId\n }\n marketId\n outcome0 {\n avgEntryPriceCT\n avgEntryPriceUsd\n buyVolumeCT\n buyVolumeShares\n buyVolumeUsd\n buys\n costBasisCT\n costBasisUsd\n firstTradeTimestamp\n isWinningOutcome\n lastTradeTimestamp\n outcomeId\n pnlStatus\n realizedPnlCT\n realizedPnlUsd\n sellVolumeCT\n sellVolumeShares\n sellVolumeUsd\n sells\n sharesHeld\n }\n outcome1 {\n avgEntryPriceCT\n avgEntryPriceUsd\n buyVolumeCT\n buyVolumeShares\n buyVolumeUsd\n buys\n costBasisCT\n costBasisUsd\n firstTradeTimestamp\n isWinningOutcome\n lastTradeTimestamp\n outcomeId\n pnlStatus\n realizedPnlCT\n realizedPnlUsd\n sellVolumeCT\n sellVolumeShares\n sellVolumeUsd\n sells\n sharesHeld\n }\n pnlPerVolumeMarket\n predictionMarket {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n eventId\n eventLabel\n exchangeAddress\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n label\n networkId\n observedAt\n opensAt\n outcomeIds\n outcomeLabels\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rules\n rules2\n updatedAt\n venueEventId\n venueMarketId\n venueMarketSlug\n venueOutcomeIds\n winningOutcomeId\n }\n predictionTrader {\n activeMarketsCount\n alias\n allTimeProfitCT\n allTimeProfitUsd\n biggestLossCT\n biggestLossUsd\n biggestWinCT\n biggestWinUsd\n createdAt\n firstTradeTimestamp\n id\n labels\n lastTradeTimestamp\n linkedAddresses\n primaryAddress\n profileImageUrl\n profileUrl\n protocol\n totalTradesCount\n totalVolumeCT\n totalVolumeUsd\n updatedAt\n venueTraderId\n }\n profitPerTradeUsd\n timestamp\n totalBuys\n totalCostBasisCT\n totalCostBasisUsd\n totalRealizedPnlCT\n totalRealizedPnlUsd\n totalSells\n totalSharesHeld\n totalTrades\n totalVolumeCT\n totalVolumeShares\n totalVolumeUsd\n trader {\n alias\n id\n labels\n linkedAddresses\n primaryAddress\n profileImageUrl\n profileUrl\n protocol\n venueTraderId\n }\n traderId\n winningOutcomeId\n }\n }\n}": typeof types.FilterPredictionTraderMarketsDocument, "query FilterPredictionTraders($excludeTraderIds: [String!], $filters: PredictionTraderFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [PredictionTraderRanking!], $traderIds: [String!]) {\n filterPredictionTraders(\n excludeTraderIds: $excludeTraderIds\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n traderIds: $traderIds\n ) {\n count\n page\n results {\n activeMarketsCount\n averageProfitUsdPerTrade1m\n averageProfitUsdPerTrade1w\n averageProfitUsdPerTrade12h\n averageProfitUsdPerTrade24h\n averageSwapAmountUsd1m\n averageSwapAmountUsd1w\n averageSwapAmountUsd12h\n averageSwapAmountUsd24h\n biggestLossCT\n biggestLossUsd\n biggestWinCT\n biggestWinUsd\n buyVolumeUsd1m\n buyVolumeUsd1w\n buyVolumeUsd12h\n buyVolumeUsd24h\n buys1m\n buys1w\n buys12h\n buys24h\n firstTradeTimestamp\n heldTokenAcquisitionCostCT\n heldTokenAcquisitionCostUsd\n id\n lastTradeTimestamp\n losses1m\n losses1w\n losses12h\n losses24h\n pnlPerVolumeAll\n predictionTrader {\n activeMarketsCount\n alias\n allTimeProfitCT\n allTimeProfitUsd\n biggestLossCT\n biggestLossUsd\n biggestWinCT\n biggestWinUsd\n createdAt\n firstTradeTimestamp\n id\n labels\n lastTradeTimestamp\n linkedAddresses\n primaryAddress\n profileImageUrl\n profileUrl\n protocol\n totalTradesCount\n totalVolumeCT\n totalVolumeUsd\n updatedAt\n venueTraderId\n }\n profitPerTradeUsdAll\n realizedPnlCT1m\n realizedPnlCT1w\n realizedPnlCT12h\n realizedPnlCT24h\n realizedPnlChange1m\n realizedPnlChange1w\n realizedPnlChange12h\n realizedPnlChange24h\n realizedPnlUsd1m\n realizedPnlUsd1w\n realizedPnlUsd12h\n realizedPnlUsd24h\n realizedProfitPercentage1m\n realizedProfitPercentage1w\n realizedProfitPercentage12h\n realizedProfitPercentage24h\n sellVolumeUsd1m\n sellVolumeUsd1w\n sellVolumeUsd12h\n sellVolumeUsd24h\n sells1m\n sells1w\n sells12h\n sells24h\n timestamp\n totalProfitCTAll\n totalProfitUsdAll\n totalTradesAll\n totalVolumeCTAll\n totalVolumeUsdAll\n trader {\n alias\n id\n labels\n linkedAddresses\n primaryAddress\n profileImageUrl\n profileUrl\n protocol\n venueTraderId\n }\n trades1m\n trades1w\n trades12h\n trades24h\n uniqueMarkets1m\n uniqueMarkets1w\n uniqueMarkets12h\n uniqueMarkets24h\n volumeCT1m\n volumeCT1w\n volumeCT12h\n volumeCT24h\n volumeChange1m\n volumeChange1w\n volumeChange12h\n volumeChange24h\n volumePerTradeUsdAll\n volumeUsd1m\n volumeUsd1w\n volumeUsd12h\n volumeUsd24h\n winRate1m\n winRate1w\n winRate12h\n winRate24h\n wins1m\n wins1w\n wins12h\n wins24h\n }\n }\n}": typeof types.FilterPredictionTradersDocument, "query FilterTokenWallets($input: FilterTokenWalletsInput!) {\n filterTokenWallets(input: $input) {\n count\n offset\n results {\n address\n amountBoughtUsd1d\n amountBoughtUsd1w\n amountBoughtUsd1y\n amountBoughtUsd30d\n amountSoldUsd1d\n amountSoldUsd1w\n amountSoldUsd1y\n amountSoldUsd30d\n amountSoldUsdAll1d\n amountSoldUsdAll1w\n amountSoldUsdAll1y\n amountSoldUsdAll30d\n backfillState\n botScore\n buys1d\n buys1w\n buys1y\n buys30d\n firstTransactionAt\n labels\n lastTransactionAt\n networkId\n purchasedTokenBalance\n realizedProfitPercentage1d\n realizedProfitPercentage1w\n realizedProfitPercentage1y\n realizedProfitPercentage30d\n realizedProfitUsd1d\n realizedProfitUsd1w\n realizedProfitUsd1y\n realizedProfitUsd30d\n scammerScore\n sells1d\n sells1w\n sells1y\n sells30d\n sellsAll1d\n sellsAll1w\n sellsAll1y\n sellsAll30d\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n }\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n }\n tokenAcquisitionCostUsd\n tokenAddress\n tokenAmountBought1d\n tokenAmountBought1w\n tokenAmountBought1y\n tokenAmountBought30d\n tokenAmountSold1d\n tokenAmountSold1w\n tokenAmountSold1y\n tokenAmountSold30d\n tokenAmountSoldAll1d\n tokenAmountSoldAll1w\n tokenAmountSoldAll1y\n tokenAmountSoldAll30d\n tokenBalance\n tokenBalanceLive\n tokenBalanceLiveUsd\n }\n }\n}": typeof types.FilterTokenWalletsDocument, - "query FilterTokens($excludeTokens: [String], $filters: TokenFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [TokenRanking], $statsType: TokenPairStatisticsType, $tokens: [String], $useAggregatedStats: Boolean) {\n filterTokens(\n excludeTokens: $excludeTokens\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n statsType: $statsType\n tokens: $tokens\n useAggregatedStats: $useAggregatedStats\n ) {\n count\n page\n results {\n baseFees1\n baseFees4\n baseFees5m\n baseFees12\n baseFees24\n builderTips1\n builderTips4\n builderTips5m\n builderTips12\n builderTips24\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n buyCount4\n buyCount5m\n buyCount12\n buyCount24\n buyVolume1\n buyVolume4\n buyVolume5m\n buyVolume12\n buyVolume24\n change1\n change4\n change5m\n change12\n change24\n circulatingMarketCap\n createdAt\n devHeldPercentage\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n feeToVolumeRatio1\n feeToVolumeRatio4\n feeToVolumeRatio5m\n feeToVolumeRatio12\n feeToVolumeRatio24\n high1\n high4\n high5m\n high12\n high24\n holders\n insiderCount\n insiderHeldPercentage\n isScam\n l1DataFees1\n l1DataFees4\n l1DataFees5m\n l1DataFees12\n l1DataFees24\n lastTransaction\n liquidPair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n liquidPairLiquidity\n liquidPairPriceUSD\n liquidity\n low1\n low4\n low5m\n low12\n low24\n marketCap\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n poolFees1\n poolFees4\n poolFees5m\n poolFees12\n poolFees24\n potentialScamReasons\n priceUSD\n priorityFees1\n priorityFees4\n priorityFees5m\n priorityFees12\n priorityFees24\n quoteToken\n sellCount1\n sellCount4\n sellCount5m\n sellCount12\n sellCount24\n sellVolume1\n sellVolume4\n sellVolume5m\n sellVolume12\n sellVolume24\n sniperCount\n sniperHeldPercentage\n swapPct1dOldWallet\n swapPct7dOldWallet\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n totalFees1\n totalFees4\n totalFees5m\n totalFees12\n totalFees24\n trendingScore\n txnCount1\n txnCount4\n txnCount5m\n txnCount12\n txnCount24\n uniqueBuys1\n uniqueBuys4\n uniqueBuys5m\n uniqueBuys12\n uniqueBuys24\n uniqueSells1\n uniqueSells4\n uniqueSells5m\n uniqueSells12\n uniqueSells24\n uniqueTransactions1\n uniqueTransactions4\n uniqueTransactions5m\n uniqueTransactions12\n uniqueTransactions24\n volume1\n volume4\n volume5m\n volume12\n volume24\n volumeChange1\n volumeChange4\n volumeChange5m\n volumeChange12\n volumeChange24\n walletAgeAvg\n walletAgeStd\n }\n }\n}": typeof types.FilterTokensDocument, + "query FilterTokens($excludeTokens: [String], $filters: TokenFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [TokenRanking], $statsType: TokenPairStatisticsType, $tokens: [String], $useAggregatedStats: Boolean) {\n filterTokens(\n excludeTokens: $excludeTokens\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n statsType: $statsType\n tokens: $tokens\n useAggregatedStats: $useAggregatedStats\n ) {\n count\n page\n results {\n baseFees1\n baseFees4\n baseFees5m\n baseFees12\n baseFees24\n builderTips1\n builderTips4\n builderTips5m\n builderTips12\n builderTips24\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n buyCount4\n buyCount5m\n buyCount12\n buyCount24\n buyVolume1\n buyVolume4\n buyVolume5m\n buyVolume12\n buyVolume24\n change1\n change4\n change5m\n change12\n change24\n circulatingMarketCap\n createdAt\n devHeldPercentage\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n feeToVolumeRatio1\n feeToVolumeRatio4\n feeToVolumeRatio5m\n feeToVolumeRatio12\n feeToVolumeRatio24\n high1\n high4\n high5m\n high12\n high24\n holders\n insiderCount\n insiderHeldPercentage\n isScam\n l1DataFees1\n l1DataFees4\n l1DataFees5m\n l1DataFees12\n l1DataFees24\n lastTransaction\n liquidPair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n liquidPairLiquidity\n liquidPairPriceUSD\n liquidity\n low1\n low4\n low5m\n low12\n low24\n marketCap\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n poolFees1\n poolFees4\n poolFees5m\n poolFees12\n poolFees24\n potentialScamReasons\n priceUSD\n priorityFees1\n priorityFees4\n priorityFees5m\n priorityFees12\n priorityFees24\n quoteToken\n sellCount1\n sellCount4\n sellCount5m\n sellCount12\n sellCount24\n sellVolume1\n sellVolume4\n sellVolume5m\n sellVolume12\n sellVolume24\n sniperCount\n sniperHeldPercentage\n swapPct1dOldWallet\n swapPct7dOldWallet\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n totalFees1\n totalFees4\n totalFees5m\n totalFees12\n totalFees24\n trendingScore\n txnCount1\n txnCount4\n txnCount5m\n txnCount12\n txnCount24\n uniqueBuys1\n uniqueBuys4\n uniqueBuys5m\n uniqueBuys12\n uniqueBuys24\n uniqueSells1\n uniqueSells4\n uniqueSells5m\n uniqueSells12\n uniqueSells24\n uniqueTransactions1\n uniqueTransactions4\n uniqueTransactions5m\n uniqueTransactions12\n uniqueTransactions24\n volume1\n volume4\n volume5m\n volume12\n volume24\n volumeChange1\n volumeChange4\n volumeChange5m\n volumeChange12\n volumeChange24\n walletAgeAvg\n walletAgeStd\n }\n }\n}": typeof types.FilterTokensDocument, "query FilterWallets($input: FilterWalletsInput!) {\n filterWallets(input: $input) {\n count\n offset\n results {\n address\n averageProfitUsdPerTrade1d\n averageProfitUsdPerTrade1w\n averageProfitUsdPerTrade1y\n averageProfitUsdPerTrade30d\n averageSwapAmountUsd1d\n averageSwapAmountUsd1w\n averageSwapAmountUsd1y\n averageSwapAmountUsd30d\n backfillState\n botScore\n firstTransactionAt\n labels\n lastTransactionAt\n nativeTokenBalance\n networkId\n realizedProfitPercentage1d\n realizedProfitPercentage1w\n realizedProfitPercentage1y\n realizedProfitPercentage30d\n realizedProfitUsd1d\n realizedProfitUsd1w\n realizedProfitUsd1y\n realizedProfitUsd30d\n scammerScore\n swaps1d\n swaps1w\n swaps1y\n swaps30d\n swapsAll1d\n swapsAll1w\n swapsAll1y\n swapsAll30d\n uniqueTokens1d\n uniqueTokens1w\n uniqueTokens1y\n uniqueTokens30d\n volumeUsd1d\n volumeUsd1w\n volumeUsd1y\n volumeUsd30d\n volumeUsdAll1d\n volumeUsdAll1w\n volumeUsdAll1y\n volumeUsdAll30d\n wallet {\n address\n avatarUrl\n description\n discordId\n discordUsername\n displayName\n ethosLevel\n ethosScore\n ethosVerified\n farcasterId\n farcasterUsername\n firstFunding {\n amount\n fundedAt\n fundedByAddress\n fundedByLabel\n networkId\n tokenAddress\n transactionHash\n }\n firstSeenTimestamp\n githubId\n githubUsername\n identityLabels\n identitySource\n identityUpdatedAt\n telegramId\n telegramUsername\n twitterId\n twitterUsername\n website\n }\n winRate1d\n winRate1w\n winRate1y\n winRate30d\n }\n }\n}": typeof types.FilterWalletsDocument, - "query GetBars($countback: Int, $currencyCode: String, $from: Int!, $quoteToken: QuoteToken, $removeEmptyBars: Boolean, $removeLeadingNullValues: Boolean, $resolution: String!, $statsType: TokenPairStatisticsType, $symbol: String!, $symbolType: SymbolType, $to: Int!) {\n getBars(\n countback: $countback\n currencyCode: $currencyCode\n from: $from\n quoteToken: $quoteToken\n removeEmptyBars: $removeEmptyBars\n removeLeadingNullValues: $removeLeadingNullValues\n resolution: $resolution\n statsType: $statsType\n symbol: $symbol\n symbolType: $symbolType\n to: $to\n ) {\n averageCostPerTrade\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n feeRegimeClassification\n feeToVolumeRatio\n gasPerVolume\n h\n l\n l1DataFees\n liquidity\n mevRiskLevel\n mevToTotalFeesRatio\n o\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n poolFees\n priorityFees\n s\n sandwichRate\n sellVolume\n sellers\n sells\n t\n totalFees\n traders\n transactions\n volume\n volumeNativeToken\n }\n}": typeof types.GetBarsDocument, - "query GetCommunityNotes($input: CommunityNotesInput) {\n getCommunityNotes(input: $input) {\n count\n cursor\n items {\n address\n contractType\n currentContract {\n ... on EnhancedNftContract {\n address\n description\n ercType\n id\n image\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n totalSupply\n }\n ... on EnhancedToken {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n currentData\n id\n moderatedAt\n networkId\n previousData\n proposalData\n proposalNum\n proposalType\n proposedAt\n sortKey\n status\n }\n }\n}": typeof types.GetCommunityNotesDocument, - "query GetDetailedPairStats($bucketCount: Int, $durations: [DetailedPairStatsDuration], $networkId: Int!, $pairAddress: String!, $statsType: TokenPairStatisticsType, $timestamp: Int, $tokenOfInterest: TokenOfInterest) {\n getDetailedPairStats(\n bucketCount: $bucketCount\n durations: $durations\n networkId: $networkId\n pairAddress: $pairAddress\n statsType: $statsType\n timestamp: $timestamp\n tokenOfInterest: $tokenOfInterest\n ) {\n bucketCount\n lastTransaction\n networkId\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n pairAddress\n queryTimestamp\n statsType\n stats_day1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_day30 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour4 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour12 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min5 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min15 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_week1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n tokenOfInterest\n }\n}": typeof types.GetDetailedPairStatsDocument, - "query GetDetailedPairsStats($input: [GetDetailedPairsStatsInput!]!) {\n getDetailedPairsStats(input: $input) {\n bucketCount\n lastTransaction\n networkId\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n pairAddress\n queryTimestamp\n statsType\n stats_day1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_day30 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour4 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour12 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min5 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min15 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_week1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n tokenOfInterest\n }\n}": typeof types.GetDetailedPairsStatsDocument, + "query GetBars($countback: Int, $currencyCode: String, $from: Int!, $quoteToken: QuoteToken, $removeEmptyBars: Boolean, $removeLeadingNullValues: Boolean, $resolution: String!, $statsType: TokenPairStatisticsType, $symbol: String!, $symbolType: SymbolType, $to: Int!) {\n getBars(\n countback: $countback\n currencyCode: $currencyCode\n from: $from\n quoteToken: $quoteToken\n removeEmptyBars: $removeEmptyBars\n removeLeadingNullValues: $removeLeadingNullValues\n resolution: $resolution\n statsType: $statsType\n symbol: $symbol\n symbolType: $symbolType\n to: $to\n ) {\n averageCostPerTrade\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n feeRegimeClassification\n feeToVolumeRatio\n gasPerVolume\n h\n l\n l1DataFees\n liquidity\n mevRiskLevel\n mevToTotalFeesRatio\n o\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n poolFees\n priorityFees\n s\n sandwichRate\n sellVolume\n sellers\n sells\n t\n totalFees\n traders\n transactions\n volume\n volumeNativeToken\n }\n}": typeof types.GetBarsDocument, + "query GetCommunityNotes($input: CommunityNotesInput) {\n getCommunityNotes(input: $input) {\n count\n cursor\n items {\n address\n contractType\n currentContract {\n ... on EnhancedNftContract {\n address\n description\n ercType\n id\n image\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n totalSupply\n }\n ... on EnhancedToken {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n currentData\n id\n moderatedAt\n networkId\n previousData\n proposalData\n proposalNum\n proposalType\n proposedAt\n sortKey\n status\n }\n }\n}": typeof types.GetCommunityNotesDocument, + "query GetDetailedPairStats($bucketCount: Int, $durations: [DetailedPairStatsDuration], $networkId: Int!, $pairAddress: String!, $statsType: TokenPairStatisticsType, $timestamp: Int, $tokenOfInterest: TokenOfInterest) {\n getDetailedPairStats(\n bucketCount: $bucketCount\n durations: $durations\n networkId: $networkId\n pairAddress: $pairAddress\n statsType: $statsType\n timestamp: $timestamp\n tokenOfInterest: $tokenOfInterest\n ) {\n bucketCount\n lastTransaction\n networkId\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n pairAddress\n queryTimestamp\n statsType\n stats_day1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_day30 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour4 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour12 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min5 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min15 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_week1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n tokenOfInterest\n }\n}": typeof types.GetDetailedPairStatsDocument, + "query GetDetailedPairsStats($input: [GetDetailedPairsStatsInput!]!) {\n getDetailedPairsStats(input: $input) {\n bucketCount\n lastTransaction\n networkId\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n pairAddress\n queryTimestamp\n statsType\n stats_day1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_day30 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour4 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour12 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min5 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min15 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_week1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n tokenOfInterest\n }\n}": typeof types.GetDetailedPairsStatsDocument, "query GetDetailedTokenStats($bucketCount: Int, $durations: [DetailedTokenStatsDuration], $networkId: Int!, $statsType: TokenPairStatisticsType, $timestamp: Int, $tokenAddress: String!) {\n getDetailedTokenStats(\n bucketCount: $bucketCount\n durations: $durations\n networkId: $networkId\n statsType: $statsType\n timestamp: $timestamp\n tokenAddress: $tokenAddress\n ) {\n bucketCount\n lastTransactionAt\n networkId\n queryTimestamp\n statsType\n stats_day1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour4 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour12 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min5 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n tokenAddress\n tokenId\n }\n}": typeof types.GetDetailedTokenStatsDocument, "query GetEventLabels($cursor: String, $direction: RankingDirection, $id: String!, $limit: Int) {\n getEventLabels(cursor: $cursor, direction: $direction, id: $id, limit: $limit) {\n cursor\n items {\n data {\n ... on FrontRunLabelData {\n index\n token0DrainedAmountFrontRun: token0DrainedAmount\n token1DrainedAmountFrontRun: token1DrainedAmount\n }\n ... on SandwichedLabelData {\n token0DrainedAmount\n token1DrainedAmount\n }\n }\n id\n label\n logIndex\n networkId\n timestamp\n transactionHash\n transactionIndex\n }\n }\n}": typeof types.GetEventLabelsDocument, "query GetExchanges($showNameless: Boolean) {\n getExchanges(showNameless: $showNameless) {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n}": typeof types.GetExchangesDocument, @@ -50,18 +50,18 @@ type Documents = { "query GetNetworkStatus($networkIds: [Int!]!) {\n getNetworkStatus(networkIds: $networkIds) {\n lastProcessedBlock\n lastProcessedTimestamp\n networkId\n networkName\n }\n}": typeof types.GetNetworkStatusDocument, "query GetNetworks {\n getNetworks {\n id\n name\n networkShortName\n }\n}": typeof types.GetNetworksDocument, "query GetSymbol($currencyCode: String, $symbol: String!) {\n getSymbol(currencyCode: $currencyCode, symbol: $symbol) {\n currency_code\n description\n name\n original_currency_code\n pricescale\n supported_resolutions\n ticker\n }\n}": typeof types.GetSymbolDocument, - "query GetTokenBars($countback: Int, $currencyCode: QuoteCurrency, $from: Int!, $removeEmptyBars: Boolean, $removeLeadingNullValues: Boolean, $resolution: String!, $statsType: TokenPairStatisticsType, $symbol: String!, $to: Int!) {\n getTokenBars(\n countback: $countback\n currencyCode: $currencyCode\n from: $from\n removeEmptyBars: $removeEmptyBars\n removeLeadingNullValues: $removeLeadingNullValues\n resolution: $resolution\n statsType: $statsType\n symbol: $symbol\n to: $to\n ) {\n averageCostPerTrade\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n feeRegimeClassification\n feeToVolumeRatio\n gasPerVolume\n h\n l\n l1DataFees\n liquidity\n mevRiskLevel\n mevToTotalFeesRatio\n o\n poolFees\n priorityFees\n s\n sandwichRate\n sellVolume\n sellers\n sells\n t\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n totalFees\n traders\n transactions\n volume\n volumeNativeToken\n }\n}": typeof types.GetTokenBarsDocument, - "query GetTokenEvents($cursor: String, $direction: RankingDirection, $limit: Int, $query: EventsQueryInput!) {\n getTokenEvents(\n cursor: $cursor\n direction: $direction\n limit: $limit\n query: $query\n ) {\n cursor\n items {\n address\n baseTokenPrice\n blockHash\n blockNumber\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n }\n}": typeof types.GetTokenEventsDocument, - "query GetTokenEventsForMaker($cursor: String, $direction: RankingDirection, $limit: Int, $query: MakerEventsQueryInput!) {\n getTokenEventsForMaker(\n cursor: $cursor\n direction: $direction\n limit: $limit\n query: $query\n ) {\n cursor\n items {\n address\n baseTokenPrice\n blockHash\n blockNumber\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n }\n}": typeof types.GetTokenEventsForMakerDocument, + "query GetTokenBars($countback: Int, $currencyCode: QuoteCurrency, $from: Int!, $removeEmptyBars: Boolean, $removeLeadingNullValues: Boolean, $resolution: String!, $statsType: TokenPairStatisticsType, $symbol: String!, $to: Int!) {\n getTokenBars(\n countback: $countback\n currencyCode: $currencyCode\n from: $from\n removeEmptyBars: $removeEmptyBars\n removeLeadingNullValues: $removeLeadingNullValues\n resolution: $resolution\n statsType: $statsType\n symbol: $symbol\n to: $to\n ) {\n averageCostPerTrade\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n feeRegimeClassification\n feeToVolumeRatio\n gasPerVolume\n h\n l\n l1DataFees\n liquidity\n mevRiskLevel\n mevToTotalFeesRatio\n o\n poolFees\n priorityFees\n s\n sandwichRate\n sellVolume\n sellers\n sells\n t\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n totalFees\n traders\n transactions\n volume\n volumeNativeToken\n }\n}": typeof types.GetTokenBarsDocument, + "query GetTokenEvents($cursor: String, $direction: RankingDirection, $limit: Int, $query: EventsQueryInput!) {\n getTokenEvents(\n cursor: $cursor\n direction: $direction\n limit: $limit\n query: $query\n ) {\n cursor\n items {\n address\n baseTokenPrice\n blockHash\n blockNumber\n commitmentLevel\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n supplementalIndex\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n }\n}": typeof types.GetTokenEventsDocument, + "query GetTokenEventsForMaker($cursor: String, $direction: RankingDirection, $limit: Int, $query: MakerEventsQueryInput!) {\n getTokenEventsForMaker(\n cursor: $cursor\n direction: $direction\n limit: $limit\n query: $query\n ) {\n cursor\n items {\n address\n baseTokenPrice\n blockHash\n blockNumber\n commitmentLevel\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n supplementalIndex\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n }\n}": typeof types.GetTokenEventsForMakerDocument, "query GetTokenPrices($inputs: [GetPriceInput]) {\n getTokenPrices(inputs: $inputs) {\n address\n blockNumber\n networkId\n priceUsd\n timestamp\n }\n}": typeof types.GetTokenPricesDocument, "query GetWebhooks($bucketId: String, $bucketSortkey: String, $cursor: String, $limit: Int, $webhookId: String) {\n getWebhooks(\n bucketId: $bucketId\n bucketSortkey: $bucketSortkey\n cursor: $cursor\n limit: $limit\n webhookId: $webhookId\n ) {\n cursor\n items {\n alertRecurrence\n bucketId\n bucketSortkey\n callbackUrl\n conditions {\n ... on NftEventWebhookCondition {\n contractAddress {\n eq\n }\n eventType {\n eq\n }\n exchangeAddress {\n eq\n }\n fillSource {\n oneOf\n }\n ignoreTransfers\n individualBaseTokenPrice {\n eq\n gt\n gte\n lt\n lte\n }\n maker {\n eq\n }\n networkId {\n oneOf\n }\n tokenAddress {\n eq\n }\n tokenId {\n eq\n }\n }\n ... on PriceEventWebhookCondition {\n priceNetworkId: networkId {\n eq\n }\n priceUsd {\n eq\n gt\n gte\n lt\n lte\n }\n priceTokenAddress: tokenAddress {\n eq\n }\n }\n ... on RawTransactionWebhookCondition {\n from {\n eq\n }\n ignoreNftEvents\n ignoreTokenPairEvents\n input {\n contains\n notContains\n }\n networkId {\n oneOf\n }\n to {\n eq\n }\n toOrFrom {\n eq\n }\n }\n ... on TokenPairEventWebhookCondition {\n eventType {\n oneOf\n }\n exchangeAddress {\n eq\n }\n maker {\n eq\n }\n networkId {\n oneOf\n }\n pairAddress {\n eq\n }\n swapValue {\n eq\n gt\n gte\n lt\n lte\n }\n tokenAddress {\n eq\n }\n }\n }\n created\n groupId\n id\n name\n publishingType\n retrySettings {\n maxRetries\n maxRetryDelay\n maxTimeElapsed\n minRetryDelay\n }\n status\n webhookType\n }\n }\n}": typeof types.GetWebhooksDocument, - "query Holders($input: HoldersInput!) {\n holders(input: $input) {\n count\n cursor\n items {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n status\n top10HoldersPercent\n }\n}": typeof types.HoldersDocument, + "query Holders($input: HoldersInput!) {\n holders(input: $input) {\n count\n cursor\n items {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n status\n top10HoldersPercent\n }\n}": typeof types.HoldersDocument, "query LiquidityLocks($cursor: String, $networkId: Int!, $pairAddress: String, $tokenAddress: String) {\n liquidityLocks(\n cursor: $cursor\n networkId: $networkId\n pairAddress: $pairAddress\n tokenAddress: $tokenAddress\n ) {\n cursor\n items {\n createdAt\n initialAmountToken0\n initialAmountToken1\n liquidityAmount\n liquidityNftData {\n nftPositionManagerAddress\n nftTokenId\n }\n liquidityProtocolV2\n lockProtocol\n lockerAddress\n networkId\n ownerAddress\n pairAddress\n unlockAt\n }\n pairLiquidityData {\n networkId\n pairAddress\n pairId\n totalLiquidity\n }\n }\n}": typeof types.LiquidityLocksDocument, "query LiquidityMetadata($networkId: Int!, $pairAddress: String!) {\n liquidityMetadata(networkId: $networkId, pairAddress: $pairAddress) {\n liquidity {\n active\n inactive\n }\n lockedLiquidity {\n active\n inactive\n lockBreakdown {\n active\n inactive\n lockProtocol\n }\n }\n }\n}": typeof types.LiquidityMetadataDocument, "query LiquidityMetadataByToken($networkId: Int!, $tokenAddress: String!) {\n liquidityMetadataByToken(networkId: $networkId, tokenAddress: $tokenAddress) {\n lockBreakdown {\n amountLockedTokens\n amountLockedTokensShifted\n amountLockedUsd\n lockProtocol\n }\n lockedLiquidityPercentage\n lockedLiquidityUsd\n lockedTokenLiquidity\n lockedTokenLiquidityShifted\n networkId\n tokenAddress\n totalLiquidityUsd\n totalTokenLiquidity\n totalTokenLiquidityShifted\n }\n}": typeof types.LiquidityMetadataByTokenDocument, - "query ListPairsForToken($limit: Int, $networkId: Int!, $tokenAddress: String!) {\n listPairsForToken(\n limit: $limit\n networkId: $networkId\n tokenAddress: $tokenAddress\n ) {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n}": typeof types.ListPairsForTokenDocument, - "query ListPairsWithMetadataForToken($limit: Int, $networkId: Int!, $tokenAddress: String!) {\n listPairsWithMetadataForToken(\n limit: $limit\n networkId: $networkId\n tokenAddress: $tokenAddress\n ) {\n results {\n backingToken {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n exchange {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n liquidity\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n quoteToken\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n volume\n }\n }\n}": typeof types.ListPairsWithMetadataForTokenDocument, - "query PairMetadata($pairId: String!, $quoteToken: QuoteToken, $statsType: TokenPairStatisticsType) {\n pairMetadata(pairId: $pairId, quoteToken: $quoteToken, statsType: $statsType) {\n createdAt\n enhancedToken0 {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n enhancedToken1 {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n exchangeId\n fee\n highPrice1\n highPrice4\n highPrice5m\n highPrice12\n highPrice24\n id\n liquidity\n liquidityToken\n lowPrice1\n lowPrice4\n lowPrice5m\n lowPrice12\n lowPrice24\n networkId\n nonLiquidityToken\n pairAddress\n price\n priceChange1\n priceChange4\n priceChange5m\n priceChange12\n priceChange24\n priceNonQuoteToken\n quoteToken\n statsType\n tickSpacing\n token0 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n token1 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n top10HoldersPercent\n volume1\n volume4\n volume5m\n volume12\n volume24\n walletActivity {\n bundlerCount\n bundlerHeldPercentage\n devHeldPercentage\n insiderCount\n insiderHeldPercentage\n sniperCount\n sniperHeldPercentage\n }\n }\n}": typeof types.PairMetadataDocument, + "query ListPairsForToken($limit: Int, $networkId: Int!, $tokenAddress: String!) {\n listPairsForToken(\n limit: $limit\n networkId: $networkId\n tokenAddress: $tokenAddress\n ) {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n}": typeof types.ListPairsForTokenDocument, + "query ListPairsWithMetadataForToken($limit: Int, $networkId: Int!, $tokenAddress: String!) {\n listPairsWithMetadataForToken(\n limit: $limit\n networkId: $networkId\n tokenAddress: $tokenAddress\n ) {\n results {\n backingToken {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n exchange {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n liquidity\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n quoteToken\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n volume\n }\n }\n}": typeof types.ListPairsWithMetadataForTokenDocument, + "query PairMetadata($pairId: String!, $quoteToken: QuoteToken, $statsType: TokenPairStatisticsType) {\n pairMetadata(pairId: $pairId, quoteToken: $quoteToken, statsType: $statsType) {\n createdAt\n enhancedToken0 {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n enhancedToken1 {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n exchangeId\n fee\n highPrice1\n highPrice4\n highPrice5m\n highPrice12\n highPrice24\n id\n liquidity\n liquidityToken\n lowPrice1\n lowPrice4\n lowPrice5m\n lowPrice12\n lowPrice24\n networkId\n nonLiquidityToken\n pairAddress\n price\n priceChange1\n priceChange4\n priceChange5m\n priceChange12\n priceChange24\n priceNonQuoteToken\n quoteToken\n statsType\n tickSpacing\n token0 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n token1 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n top10HoldersPercent\n volume1\n volume4\n volume5m\n volume12\n volume24\n walletActivity {\n bundlerCount\n bundlerHeldPercentage\n devHeldPercentage\n insiderCount\n insiderHeldPercentage\n sniperCount\n sniperHeldPercentage\n }\n }\n}": typeof types.PairMetadataDocument, "query PredictionCategories {\n predictionCategories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n}": typeof types.PredictionCategoriesDocument, "query PredictionEventBars($input: PredictionEventBarsInput!) {\n predictionEventBars(input: $input) {\n bars {\n buyVolumeCollateralToken\n buyVolumeUsd\n lastEventTimestamp\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n openInterestCollateralToken {\n c\n h\n l\n o\n }\n openInterestUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeUsd\n t\n totalVolumeCollateralToken\n totalVolumeUsd\n trades\n uniqueTraders\n venueVolumeCollateralToken\n venueVolumeUsd\n volumeCollateralToken\n volumeUsd\n }\n eventId\n predictionEvent {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n marketIds\n networkId\n opensAt\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rulesPrimary\n rulesSecondary\n status\n tags\n updatedAt\n url\n venueEventId\n venueSeriesId\n }\n predictionMarkets {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n eventId\n eventLabel\n exchangeAddress\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n label\n networkId\n observedAt\n opensAt\n outcomeIds\n outcomeLabels\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rules\n rules2\n updatedAt\n venueEventId\n venueMarketId\n venueMarketSlug\n venueOutcomeIds\n winningOutcomeId\n }\n }\n}": typeof types.PredictionEventBarsDocument, "query PredictionEventTopMarketsBars($input: PredictionEventTopMarketsBarsInput!) {\n predictionEventTopMarketsBars(input: $input) {\n eventId\n marketBars {\n bars {\n allTimeVolumeCollateralToken\n allTimeVolumeUsd\n lastEventTimestamp\n openInterestUsd {\n c\n h\n l\n o\n }\n outcome0 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n outcome1 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n t\n trades\n uniqueTraders\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n marketId\n predictionEvent {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n marketIds\n networkId\n opensAt\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rulesPrimary\n rulesSecondary\n status\n tags\n updatedAt\n url\n venueEventId\n venueSeriesId\n }\n predictionMarket {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n eventId\n eventLabel\n exchangeAddress\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n label\n networkId\n observedAt\n opensAt\n outcomeIds\n outcomeLabels\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rules\n rules2\n updatedAt\n venueEventId\n venueMarketId\n venueMarketSlug\n venueOutcomeIds\n winningOutcomeId\n }\n }\n predictionEvent {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n marketIds\n networkId\n opensAt\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rulesPrimary\n rulesSecondary\n status\n tags\n updatedAt\n url\n venueEventId\n venueSeriesId\n }\n }\n}": typeof types.PredictionEventTopMarketsBarsDocument, @@ -74,41 +74,40 @@ type Documents = { "query PredictionTraderMarketsStats($input: PredictionTraderMarketsStatsInput!) {\n predictionTraderMarketsStats(input: $input) {\n cursor\n items {\n createdAt\n hasOpenPosition\n marketId\n outcome0Stats {\n avgEntryPriceCT\n avgEntryPriceUsd\n buyVolumeCT\n buyVolumeShares\n buyVolumeUsd\n buys\n costBasisCT\n costBasisUsd\n firstTradeTimestamp\n lastTradeTimestamp\n outcomeId\n pnlStatus\n realizedPnlCT\n realizedPnlUsd\n sellVolumeCT\n sellVolumeShares\n sellVolumeUsd\n sells\n sharesHeld\n }\n outcome1Stats {\n avgEntryPriceCT\n avgEntryPriceUsd\n buyVolumeCT\n buyVolumeShares\n buyVolumeUsd\n buys\n costBasisCT\n costBasisUsd\n firstTradeTimestamp\n lastTradeTimestamp\n outcomeId\n pnlStatus\n realizedPnlCT\n realizedPnlUsd\n sellVolumeCT\n sellVolumeShares\n sellVolumeUsd\n sells\n sharesHeld\n }\n predictionMarket {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n eventId\n eventLabel\n exchangeAddress\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n label\n networkId\n observedAt\n opensAt\n outcomeIds\n outcomeLabels\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rules\n rules2\n updatedAt\n venueEventId\n venueMarketId\n venueMarketSlug\n venueOutcomeIds\n winningOutcomeId\n }\n traderId\n updatedAt\n }\n }\n}": typeof types.PredictionTraderMarketsStatsDocument, "query PredictionTraders($input: PredictionTradersInput!) {\n predictionTraders(input: $input) {\n activeMarketsCount\n alias\n allTimeProfitCT\n allTimeProfitUsd\n biggestLossCT\n biggestLossUsd\n biggestWinCT\n biggestWinUsd\n createdAt\n firstTradeTimestamp\n id\n labels\n lastTradeTimestamp\n linkedAddresses\n primaryAddress\n profileImageUrl\n profileUrl\n protocol\n totalTradesCount\n totalVolumeCT\n totalVolumeUsd\n updatedAt\n venueTraderId\n }\n}": typeof types.PredictionTradersDocument, "query PredictionTrades($input: PredictionTradesInput!) {\n predictionTrades(input: $input) {\n cursor\n items {\n amount\n amountCollateral\n amountUsd\n blockNumber\n exchangeAddress\n maker\n marketId\n networkId\n outcomeId\n outcomeIndex\n outcomeLabel\n predictionMarket {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n eventId\n eventLabel\n exchangeAddress\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n label\n networkId\n observedAt\n opensAt\n outcomeIds\n outcomeLabels\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rules\n rules2\n updatedAt\n venueEventId\n venueMarketId\n venueMarketSlug\n venueOutcomeIds\n winningOutcomeId\n }\n priceCollateral\n priceUsd\n protocol\n sortKey\n timestamp\n tradeType\n traderId\n transactionHash\n transactionId\n }\n }\n}": typeof types.PredictionTradesDocument, - "query Token($input: TokenInput!) {\n token(input: $input) {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n}": typeof types.TokenDocument, + "query Token($input: TokenInput!) {\n token(input: $input) {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n}": typeof types.TokenDocument, "query TokenLifecycleEvents($cursor: String, $limit: Int, $query: TokenLifecycleEventsQueryInput!) {\n tokenLifecycleEvents(cursor: $cursor, limit: $limit, query: $query) {\n cursor\n items {\n blockHash\n blockNumber\n data {\n ... on TokenBurnEventData {\n amount\n circulatingSupply\n totalSupply\n }\n ... on TokenMintEventData {\n amount\n circulatingSupply\n totalSupply\n }\n }\n eventType\n id\n logIndex\n maker\n networkId\n timestamp\n tokenAddress\n transactionHash\n transactionIndex\n }\n }\n}": typeof types.TokenLifecycleEventsDocument, "query TokenSparklines($input: TokenSparklineInput!) {\n tokenSparklines(input: $input) {\n attribute\n id\n resolution\n sparkline {\n timestamp\n value\n }\n }\n}": typeof types.TokenSparklinesDocument, "query TokenTopTraders($input: TokenTopTradersInput!) {\n tokenTopTraders(input: $input) {\n items {\n amountBoughtUsd\n amountSoldUsd\n buys\n firstTransactionAt\n lastTransactionAt\n networkId\n realizedProfitPercentage\n realizedProfitUsd\n sells\n singleTokenAcquisitionCostUsd\n tokenAddress\n tokenAmountBought\n tokenAmountSold\n tokenBalance\n volumeUsd\n walletAddress\n }\n networkId\n offset\n tokenAddress\n tradingPeriod\n }\n}": typeof types.TokenTopTradersDocument, - "query Tokens($ids: [TokenInput!]) {\n tokens(ids: $ids) {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n}": typeof types.TokensDocument, + "query Tokens($ids: [TokenInput!]) {\n tokens(ids: $ids) {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n}": typeof types.TokensDocument, "query Top10HoldersPercent($tokenId: String!) {\n top10HoldersPercent(tokenId: $tokenId)\n}": typeof types.Top10HoldersPercentDocument, "query WalletAggregateBackfillState($input: WalletAggregateBackfillStateInput!) {\n walletAggregateBackfillState(input: $input) {\n status\n walletAddress\n }\n}": typeof types.WalletAggregateBackfillStateDocument, "query WalletChart($input: WalletChartInput!) {\n walletChart(input: $input) {\n backfillState\n data {\n realizedProfitUsd\n resolution\n swaps\n timestamp\n volumeUsd\n volumeUsdAll\n }\n networkId\n range {\n end\n start\n }\n resolution\n walletAddress\n }\n}": typeof types.WalletChartDocument, - "subscription OnBalanceUpdated($walletAddress: String!) {\n onBalanceUpdated(walletAddress: $walletAddress) {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n}": typeof types.OnBalanceUpdatedDocument, - "subscription OnBarsUpdated($pairId: String, $quoteToken: QuoteToken) {\n onBarsUpdated(pairId: $pairId, quoteToken: $quoteToken) {\n aggregates {\n r1 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r1D {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r1S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r5 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r5S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r7D {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r15 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r15S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r30 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r30S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r60 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r240 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r720 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n }\n eventSortKey\n networkId\n pairAddress\n pairId\n quoteToken\n quoteTokenAddress\n statsType\n timestamp\n }\n}": typeof types.OnBarsUpdatedDocument, + "subscription OnBalanceUpdated($walletAddress: String!) {\n onBalanceUpdated(walletAddress: $walletAddress) {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n}": typeof types.OnBalanceUpdatedDocument, + "subscription OnBarsUpdated($commitmentLevel: [BarCommitmentLevel!], $pairId: String, $quoteToken: QuoteToken) {\n onBarsUpdated(\n commitmentLevel: $commitmentLevel\n pairId: $pairId\n quoteToken: $quoteToken\n ) {\n aggregates {\n r1 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r1D {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r1S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r5 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r5S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r7D {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r15 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r15S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r30 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r30S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r60 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r240 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r720 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n }\n commitmentLevel\n eventSortKey\n networkId\n pairAddress\n pairId\n quoteToken\n quoteTokenAddress\n statsType\n timestamp\n }\n}": typeof types.OnBarsUpdatedDocument, "subscription OnDetailedPredictionEventStatsUpdated($eventId: String!) {\n onDetailedPredictionEventStatsUpdated(eventId: $eventId) {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n eventId\n lastTransactionAt\n lifecycle {\n ageSeconds\n expectedLifespanSeconds\n isResolved\n timeToResolutionSeconds\n winningOutcomeId\n }\n relevanceScores {\n score1\n score1w\n score4\n score5m\n score12\n score24\n }\n statsDay1 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n buySell {\n buyVolume {\n ct\n usd\n }\n sellVolume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n buyVolumeChange\n liquidityChange\n openInterestChange\n sellVolumeChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsHour1 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n buySell {\n buyVolume {\n ct\n usd\n }\n sellVolume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n buyVolumeChange\n liquidityChange\n openInterestChange\n sellVolumeChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsHour4 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n buySell {\n buyVolume {\n ct\n usd\n }\n sellVolume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n buyVolumeChange\n liquidityChange\n openInterestChange\n sellVolumeChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsHour12 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n buySell {\n buyVolume {\n ct\n usd\n }\n sellVolume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n buyVolumeChange\n liquidityChange\n openInterestChange\n sellVolumeChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsMin5 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n buySell {\n buyVolume {\n ct\n usd\n }\n sellVolume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n buyVolumeChange\n liquidityChange\n openInterestChange\n sellVolumeChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsWeek1 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n buySell {\n buyVolume {\n ct\n usd\n }\n sellVolume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n buyVolumeChange\n liquidityChange\n openInterestChange\n sellVolumeChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n trendingScores {\n score1\n score1w\n score4\n score5m\n score12\n score24\n }\n }\n}": typeof types.OnDetailedPredictionEventStatsUpdatedDocument, "subscription OnDetailedPredictionMarketStatsUpdated($marketId: String!) {\n onDetailedPredictionMarketStatsUpdated(marketId: $marketId) {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n competitiveScores {\n score1\n score1w\n score4\n score5m\n score12\n score24\n }\n lastTransactionAt\n lifecycle {\n ageSeconds\n expectedLifespanSeconds\n isResolved\n timeToResolutionSeconds\n winningOutcomeId\n }\n marketId\n relevanceScores {\n score1\n score1w\n score4\n score5m\n score12\n score24\n }\n statsDay1 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n outcome0Stats {\n buySell {\n buyVolume {\n ct\n shares\n usd\n }\n buys\n sellVolume {\n ct\n shares\n usd\n }\n sells\n }\n core {\n price {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n trades\n venueOutcomeId\n volume {\n ct\n shares\n usd\n }\n }\n depth {\n askDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bidDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n orderbook {\n ask {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bid {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n statsChange {\n buysChange\n liquidityChange\n priceChange\n priceRange\n sellsChange\n tradesChange\n volumeChange\n volumeSharesChange\n }\n }\n outcome1Stats {\n buySell {\n buyVolume {\n ct\n shares\n usd\n }\n buys\n sellVolume {\n ct\n shares\n usd\n }\n sells\n }\n core {\n price {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n trades\n venueOutcomeId\n volume {\n ct\n shares\n usd\n }\n }\n depth {\n askDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bidDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n orderbook {\n ask {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bid {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n statsChange {\n buysChange\n liquidityChange\n priceChange\n priceRange\n sellsChange\n tradesChange\n volumeChange\n volumeSharesChange\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n liquidityChange\n openInterestChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsHour1 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n outcome0Stats {\n buySell {\n buyVolume {\n ct\n shares\n usd\n }\n buys\n sellVolume {\n ct\n shares\n usd\n }\n sells\n }\n core {\n price {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n trades\n venueOutcomeId\n volume {\n ct\n shares\n usd\n }\n }\n depth {\n askDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bidDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n orderbook {\n ask {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bid {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n statsChange {\n buysChange\n liquidityChange\n priceChange\n priceRange\n sellsChange\n tradesChange\n volumeChange\n volumeSharesChange\n }\n }\n outcome1Stats {\n buySell {\n buyVolume {\n ct\n shares\n usd\n }\n buys\n sellVolume {\n ct\n shares\n usd\n }\n sells\n }\n core {\n price {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n trades\n venueOutcomeId\n volume {\n ct\n shares\n usd\n }\n }\n depth {\n askDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bidDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n orderbook {\n ask {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bid {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n statsChange {\n buysChange\n liquidityChange\n priceChange\n priceRange\n sellsChange\n tradesChange\n volumeChange\n volumeSharesChange\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n liquidityChange\n openInterestChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsHour4 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n outcome0Stats {\n buySell {\n buyVolume {\n ct\n shares\n usd\n }\n buys\n sellVolume {\n ct\n shares\n usd\n }\n sells\n }\n core {\n price {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n trades\n venueOutcomeId\n volume {\n ct\n shares\n usd\n }\n }\n depth {\n askDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bidDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n orderbook {\n ask {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bid {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n statsChange {\n buysChange\n liquidityChange\n priceChange\n priceRange\n sellsChange\n tradesChange\n volumeChange\n volumeSharesChange\n }\n }\n outcome1Stats {\n buySell {\n buyVolume {\n ct\n shares\n usd\n }\n buys\n sellVolume {\n ct\n shares\n usd\n }\n sells\n }\n core {\n price {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n trades\n venueOutcomeId\n volume {\n ct\n shares\n usd\n }\n }\n depth {\n askDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bidDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n orderbook {\n ask {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bid {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n statsChange {\n buysChange\n liquidityChange\n priceChange\n priceRange\n sellsChange\n tradesChange\n volumeChange\n volumeSharesChange\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n liquidityChange\n openInterestChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsHour12 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n outcome0Stats {\n buySell {\n buyVolume {\n ct\n shares\n usd\n }\n buys\n sellVolume {\n ct\n shares\n usd\n }\n sells\n }\n core {\n price {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n trades\n venueOutcomeId\n volume {\n ct\n shares\n usd\n }\n }\n depth {\n askDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bidDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n orderbook {\n ask {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bid {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n statsChange {\n buysChange\n liquidityChange\n priceChange\n priceRange\n sellsChange\n tradesChange\n volumeChange\n volumeSharesChange\n }\n }\n outcome1Stats {\n buySell {\n buyVolume {\n ct\n shares\n usd\n }\n buys\n sellVolume {\n ct\n shares\n usd\n }\n sells\n }\n core {\n price {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n trades\n venueOutcomeId\n volume {\n ct\n shares\n usd\n }\n }\n depth {\n askDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bidDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n orderbook {\n ask {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bid {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n statsChange {\n buysChange\n liquidityChange\n priceChange\n priceRange\n sellsChange\n tradesChange\n volumeChange\n volumeSharesChange\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n liquidityChange\n openInterestChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsMin5 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n outcome0Stats {\n buySell {\n buyVolume {\n ct\n shares\n usd\n }\n buys\n sellVolume {\n ct\n shares\n usd\n }\n sells\n }\n core {\n price {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n trades\n venueOutcomeId\n volume {\n ct\n shares\n usd\n }\n }\n depth {\n askDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bidDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n orderbook {\n ask {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bid {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n statsChange {\n buysChange\n liquidityChange\n priceChange\n priceRange\n sellsChange\n tradesChange\n volumeChange\n volumeSharesChange\n }\n }\n outcome1Stats {\n buySell {\n buyVolume {\n ct\n shares\n usd\n }\n buys\n sellVolume {\n ct\n shares\n usd\n }\n sells\n }\n core {\n price {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n trades\n venueOutcomeId\n volume {\n ct\n shares\n usd\n }\n }\n depth {\n askDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bidDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n orderbook {\n ask {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bid {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n statsChange {\n buysChange\n liquidityChange\n priceChange\n priceRange\n sellsChange\n tradesChange\n volumeChange\n volumeSharesChange\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n liquidityChange\n openInterestChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsWeek1 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n outcome0Stats {\n buySell {\n buyVolume {\n ct\n shares\n usd\n }\n buys\n sellVolume {\n ct\n shares\n usd\n }\n sells\n }\n core {\n price {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n trades\n venueOutcomeId\n volume {\n ct\n shares\n usd\n }\n }\n depth {\n askDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bidDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n orderbook {\n ask {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bid {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n statsChange {\n buysChange\n liquidityChange\n priceChange\n priceRange\n sellsChange\n tradesChange\n volumeChange\n volumeSharesChange\n }\n }\n outcome1Stats {\n buySell {\n buyVolume {\n ct\n shares\n usd\n }\n buys\n sellVolume {\n ct\n shares\n usd\n }\n sells\n }\n core {\n price {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n trades\n venueOutcomeId\n volume {\n ct\n shares\n usd\n }\n }\n depth {\n askDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bidDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n orderbook {\n ask {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bid {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n statsChange {\n buysChange\n liquidityChange\n priceChange\n priceRange\n sellsChange\n tradesChange\n volumeChange\n volumeSharesChange\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n liquidityChange\n openInterestChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n trendingScores {\n score1\n score1w\n score4\n score5m\n score12\n score24\n }\n }\n}": typeof types.OnDetailedPredictionMarketStatsUpdatedDocument, "subscription OnDetailedStatsUpdated($pairId: String, $tokenOfInterest: TokenOfInterest) {\n onDetailedStatsUpdated(pairId: $pairId, tokenOfInterest: $tokenOfInterest) {\n pairId\n statsType\n stats_day1 {\n buckets {\n end\n start\n }\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n endTimestamp\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n timestamp\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n windowSize\n }\n stats_hour1 {\n buckets {\n end\n start\n }\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n endTimestamp\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n timestamp\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n windowSize\n }\n stats_hour4 {\n buckets {\n end\n start\n }\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n endTimestamp\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n timestamp\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n windowSize\n }\n stats_hour12 {\n buckets {\n end\n start\n }\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n endTimestamp\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n timestamp\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n windowSize\n }\n stats_min5 {\n buckets {\n end\n start\n }\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n endTimestamp\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n timestamp\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n windowSize\n }\n tokenOfInterest\n }\n}": typeof types.OnDetailedStatsUpdatedDocument, "subscription OnDetailedTokenStatsUpdated($tokenId: String) {\n onDetailedTokenStatsUpdated(tokenId: $tokenId) {\n bucketCount\n lastTransactionAt\n networkId\n queryTimestamp\n statsType\n stats_day1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour4 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour12 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min5 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n tokenAddress\n tokenId\n }\n}": typeof types.OnDetailedTokenStatsUpdatedDocument, "subscription OnEventLabelCreated($id: String) {\n onEventLabelCreated(id: $id) {\n data {\n ... on FrontRunLabelData {\n index\n token0DrainedAmount\n token1DrainedAmount\n }\n ... on SandwichedLabelData {\n token0DrainedAmountSandwich: token0DrainedAmount\n token1DrainedAmountSandwich: token1DrainedAmount\n }\n }\n id\n label\n logIndex\n networkId\n timestamp\n transactionHash\n transactionIndex\n }\n}": typeof types.OnEventLabelCreatedDocument, - "subscription OnEventsCreated($address: String, $id: String, $networkId: Int, $quoteToken: QuoteToken) {\n onEventsCreated(\n address: $address\n id: $id\n networkId: $networkId\n quoteToken: $quoteToken\n ) {\n address\n events {\n address\n baseTokenPrice\n blockHash\n blockNumber\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n id\n networkId\n quoteToken\n }\n}": typeof types.OnEventsCreatedDocument, - "subscription OnEventsCreatedByMaker($input: OnEventsCreatedByMakerInput!) {\n onEventsCreatedByMaker(input: $input) {\n events {\n address\n baseTokenPrice\n blockHash\n blockNumber\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n makerAddress\n }\n}": typeof types.OnEventsCreatedByMakerDocument, - "subscription OnFilterTokenUpdated($excludeTokens: [String], $filters: TokenFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [TokenRanking], $statsType: TokenPairStatisticsType, $tokens: [String], $updatePeriod: Int, $useAggregatedStats: Boolean) {\n onFilterTokensUpdated(\n excludeTokens: $excludeTokens\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n statsType: $statsType\n tokens: $tokens\n updatePeriod: $updatePeriod\n useAggregatedStats: $useAggregatedStats\n ) {\n updates {\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n buyCount4\n buyCount5m\n buyCount12\n buyCount24\n buyVolume1\n buyVolume4\n buyVolume5m\n buyVolume12\n buyVolume24\n change1\n change4\n change5m\n change12\n change24\n circulatingMarketCap\n createdAt\n devHeldPercentage\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n high1\n high4\n high5m\n high12\n high24\n holders\n insiderCount\n insiderHeldPercentage\n isScam\n lastTransaction\n liquidPair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n liquidPairLiquidity\n liquidPairPriceUSD\n liquidity\n low1\n low4\n low5m\n low12\n low24\n marketCap\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n potentialScamReasons\n priceUSD\n quoteToken\n sellCount1\n sellCount4\n sellCount5m\n sellCount12\n sellCount24\n sellVolume1\n sellVolume4\n sellVolume5m\n sellVolume12\n sellVolume24\n sniperCount\n sniperHeldPercentage\n swapPct1dOldWallet\n swapPct7dOldWallet\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n trendingScore\n txnCount1\n txnCount4\n txnCount5m\n txnCount12\n txnCount24\n uniqueBuys1\n uniqueBuys4\n uniqueBuys5m\n uniqueBuys12\n uniqueBuys24\n uniqueSells1\n uniqueSells4\n uniqueSells5m\n uniqueSells12\n uniqueSells24\n uniqueTransactions1\n uniqueTransactions4\n uniqueTransactions5m\n uniqueTransactions12\n uniqueTransactions24\n volume1\n volume4\n volume5m\n volume12\n volume24\n volumeChange1\n volumeChange4\n volumeChange5m\n volumeChange12\n volumeChange24\n walletAgeAvg\n walletAgeStd\n }\n }\n}": typeof types.OnFilterTokenUpdatedDocument, - "subscription OnFilterTokensUpdated($excludeTokens: [String], $filters: TokenFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [TokenRanking], $statsType: TokenPairStatisticsType, $tokens: [String], $updatePeriod: Int, $useAggregatedStats: Boolean) {\n onFilterTokensUpdated(\n excludeTokens: $excludeTokens\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n statsType: $statsType\n tokens: $tokens\n updatePeriod: $updatePeriod\n useAggregatedStats: $useAggregatedStats\n ) {\n updates {\n baseFees1\n baseFees4\n baseFees5m\n baseFees12\n baseFees24\n builderTips1\n builderTips4\n builderTips5m\n builderTips12\n builderTips24\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n buyCount4\n buyCount5m\n buyCount12\n buyCount24\n buyVolume1\n buyVolume4\n buyVolume5m\n buyVolume12\n buyVolume24\n change1\n change4\n change5m\n change12\n change24\n circulatingMarketCap\n createdAt\n devHeldPercentage\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n feeToVolumeRatio1\n feeToVolumeRatio4\n feeToVolumeRatio5m\n feeToVolumeRatio12\n feeToVolumeRatio24\n high1\n high4\n high5m\n high12\n high24\n holders\n insiderCount\n insiderHeldPercentage\n isScam\n l1DataFees1\n l1DataFees4\n l1DataFees5m\n l1DataFees12\n l1DataFees24\n lastTransaction\n liquidPair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n liquidPairLiquidity\n liquidPairPriceUSD\n liquidity\n low1\n low4\n low5m\n low12\n low24\n marketCap\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n poolFees1\n poolFees4\n poolFees5m\n poolFees12\n poolFees24\n potentialScamReasons\n priceUSD\n priorityFees1\n priorityFees4\n priorityFees5m\n priorityFees12\n priorityFees24\n quoteToken\n sellCount1\n sellCount4\n sellCount5m\n sellCount12\n sellCount24\n sellVolume1\n sellVolume4\n sellVolume5m\n sellVolume12\n sellVolume24\n sniperCount\n sniperHeldPercentage\n swapPct1dOldWallet\n swapPct7dOldWallet\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n totalFees1\n totalFees4\n totalFees5m\n totalFees12\n totalFees24\n trendingScore\n txnCount1\n txnCount4\n txnCount5m\n txnCount12\n txnCount24\n uniqueBuys1\n uniqueBuys4\n uniqueBuys5m\n uniqueBuys12\n uniqueBuys24\n uniqueSells1\n uniqueSells4\n uniqueSells5m\n uniqueSells12\n uniqueSells24\n uniqueTransactions1\n uniqueTransactions4\n uniqueTransactions5m\n uniqueTransactions12\n uniqueTransactions24\n volume1\n volume4\n volume5m\n volume12\n volume24\n volumeChange1\n volumeChange4\n volumeChange5m\n volumeChange12\n volumeChange24\n walletAgeAvg\n walletAgeStd\n }\n }\n}": typeof types.OnFilterTokensUpdatedDocument, - "subscription OnHoldersUpdated($tokenId: String!) {\n onHoldersUpdated(tokenId: $tokenId) {\n balances {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n holders\n networkId\n tokenAddress\n tokenId\n }\n}": typeof types.OnHoldersUpdatedDocument, + "subscription OnEventsCreated($address: String, $commitmentLevel: [EventCommitmentLevel!], $id: String, $networkId: Int, $quoteToken: QuoteToken) {\n onEventsCreated(\n address: $address\n commitmentLevel: $commitmentLevel\n id: $id\n networkId: $networkId\n quoteToken: $quoteToken\n ) {\n address\n events {\n address\n baseTokenPrice\n blockHash\n blockNumber\n commitmentLevel\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n supplementalIndex\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n id\n networkId\n quoteToken\n }\n}": typeof types.OnEventsCreatedDocument, + "subscription OnEventsCreatedByMaker($commitmentLevel: [EventCommitmentLevel!], $input: OnEventsCreatedByMakerInput!) {\n onEventsCreatedByMaker(commitmentLevel: $commitmentLevel, input: $input) {\n events {\n address\n baseTokenPrice\n blockHash\n blockNumber\n commitmentLevel\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n supplementalIndex\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n makerAddress\n }\n}": typeof types.OnEventsCreatedByMakerDocument, + "subscription OnFilterTokensUpdated($excludeTokens: [String], $filters: TokenFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [TokenRanking], $statsType: TokenPairStatisticsType, $tokens: [String], $updatePeriod: Int, $useAggregatedStats: Boolean) {\n onFilterTokensUpdated(\n excludeTokens: $excludeTokens\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n statsType: $statsType\n tokens: $tokens\n updatePeriod: $updatePeriod\n useAggregatedStats: $useAggregatedStats\n ) {\n updates {\n baseFees1\n baseFees4\n baseFees5m\n baseFees12\n baseFees24\n builderTips1\n builderTips4\n builderTips5m\n builderTips12\n builderTips24\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n buyCount4\n buyCount5m\n buyCount12\n buyCount24\n buyVolume1\n buyVolume4\n buyVolume5m\n buyVolume12\n buyVolume24\n change1\n change4\n change5m\n change12\n change24\n circulatingMarketCap\n createdAt\n devHeldPercentage\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n feeToVolumeRatio1\n feeToVolumeRatio4\n feeToVolumeRatio5m\n feeToVolumeRatio12\n feeToVolumeRatio24\n high1\n high4\n high5m\n high12\n high24\n holders\n insiderCount\n insiderHeldPercentage\n isScam\n l1DataFees1\n l1DataFees4\n l1DataFees5m\n l1DataFees12\n l1DataFees24\n lastTransaction\n liquidPair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n liquidPairLiquidity\n liquidPairPriceUSD\n liquidity\n low1\n low4\n low5m\n low12\n low24\n marketCap\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n poolFees1\n poolFees4\n poolFees5m\n poolFees12\n poolFees24\n potentialScamReasons\n priceUSD\n priorityFees1\n priorityFees4\n priorityFees5m\n priorityFees12\n priorityFees24\n quoteToken\n sellCount1\n sellCount4\n sellCount5m\n sellCount12\n sellCount24\n sellVolume1\n sellVolume4\n sellVolume5m\n sellVolume12\n sellVolume24\n sniperCount\n sniperHeldPercentage\n swapPct1dOldWallet\n swapPct7dOldWallet\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n totalFees1\n totalFees4\n totalFees5m\n totalFees12\n totalFees24\n trendingScore\n txnCount1\n txnCount4\n txnCount5m\n txnCount12\n txnCount24\n uniqueBuys1\n uniqueBuys4\n uniqueBuys5m\n uniqueBuys12\n uniqueBuys24\n uniqueSells1\n uniqueSells4\n uniqueSells5m\n uniqueSells12\n uniqueSells24\n uniqueTransactions1\n uniqueTransactions4\n uniqueTransactions5m\n uniqueTransactions12\n uniqueTransactions24\n volume1\n volume4\n volume5m\n volume12\n volume24\n volumeChange1\n volumeChange4\n volumeChange5m\n volumeChange12\n volumeChange24\n walletAgeAvg\n walletAgeStd\n }\n }\n}": typeof types.OnFilterTokensUpdatedDocument, + "subscription OnHoldersUpdated($tokenId: String!) {\n onHoldersUpdated(tokenId: $tokenId) {\n balances {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n holders\n networkId\n tokenAddress\n tokenId\n }\n}": typeof types.OnHoldersUpdatedDocument, "subscription OnLatestPairUpdated($id: String, $networkId: Int) {\n onLatestPairUpdated(id: $id, networkId: $networkId) {\n address\n exchangeHash\n id\n initialPriceUsd\n liquidAt\n liquidity\n liquidityToken\n networkId\n newToken\n nonLiquidityToken\n oldToken\n priceChange\n priceUsd\n token0 {\n address\n currentPoolAmount\n decimals\n id\n initialPoolAmount\n name\n networkId\n pairId\n poolVariation\n symbol\n }\n token1 {\n address\n currentPoolAmount\n decimals\n id\n initialPoolAmount\n name\n networkId\n pairId\n poolVariation\n symbol\n }\n transactionHash\n }\n}": typeof types.OnLatestPairUpdatedDocument, "subscription OnLatestTokens($id: String, $networkId: Int, $tokenAddress: String) {\n onLatestTokens(id: $id, networkId: $networkId, tokenAddress: $tokenAddress) {\n blockHash\n blockNumber\n creatorAddress\n creatorBalance\n decimals\n id\n networkId\n simulationResults {\n buyGasUsed\n buySuccess\n buyTax\n canRenounceOwnership\n canTransferOwnership\n isOwnerRenounced\n maxBuyAmount\n maxSellAmount\n openTradingCall\n sellGasUsed\n sellSuccess\n sellTax\n }\n timeCreated\n tokenAddress\n tokenName\n tokenSymbol\n totalSupply\n traceIndex\n transactionHash\n transactionIndex\n }\n}": typeof types.OnLatestTokensDocument, - "subscription OnLaunchpadTokenEvent($input: OnLaunchpadTokenEventInput) {\n onLaunchpadTokenEvent(input: $input) {\n address\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n devHeldPercentage\n eventType\n holders\n insiderCount\n insiderHeldPercentage\n launchpadName\n liquidity\n marketCap\n networkId\n price\n protocol\n sellCount1\n sniperCount\n sniperHeldPercentage\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n transactions1\n volume1\n }\n}": typeof types.OnLaunchpadTokenEventDocument, - "subscription OnLaunchpadTokenEventBatch($input: OnLaunchpadTokenEventBatchInput) {\n onLaunchpadTokenEventBatch(input: $input) {\n address\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n devHeldPercentage\n eventType\n holders\n insiderCount\n insiderHeldPercentage\n launchpadName\n liquidity\n marketCap\n networkId\n price\n protocol\n sellCount1\n sniperCount\n sniperHeldPercentage\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n transactions1\n volume1\n }\n}": typeof types.OnLaunchpadTokenEventBatchDocument, + "subscription OnLaunchpadTokenEvent($input: OnLaunchpadTokenEventInput) {\n onLaunchpadTokenEvent(input: $input) {\n address\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n devHeldPercentage\n eventType\n holders\n insiderCount\n insiderHeldPercentage\n launchpadName\n liquidity\n marketCap\n networkId\n price\n protocol\n sellCount1\n sniperCount\n sniperHeldPercentage\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n transactions1\n volume1\n }\n}": typeof types.OnLaunchpadTokenEventDocument, + "subscription OnLaunchpadTokenEventBatch($input: OnLaunchpadTokenEventBatchInput) {\n onLaunchpadTokenEventBatch(input: $input) {\n address\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n devHeldPercentage\n eventType\n holders\n insiderCount\n insiderHeldPercentage\n launchpadName\n liquidity\n marketCap\n networkId\n price\n protocol\n sellCount1\n sniperCount\n sniperHeldPercentage\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n transactions1\n volume1\n }\n}": typeof types.OnLaunchpadTokenEventBatchDocument, "subscription OnNftAssetsCreated($address: String, $networkId: Int, $tokenId: String) {\n onNftAssetsCreated(address: $address, networkId: $networkId, tokenId: $tokenId) {\n address\n attributes {\n class\n css\n displayType\n maxValue\n name\n value\n valueType\n }\n description\n id\n media {\n image\n processed\n thumbLg\n thumbSm\n }\n name\n networkId\n originalImage\n quantity\n rawAssetData {\n animationUrl\n externalUrl\n imageData\n imageUrl\n }\n tokenId\n uri\n }\n}": typeof types.OnNftAssetsCreatedDocument, "subscription OnNftEventsCreated($address: String, $networkId: Int) {\n onNftEventsCreated(address: $address, networkId: $networkId) {\n address\n events {\n aggregatorAddress\n blockNumber\n contractAddress\n eventType\n exchangeAddress\n fillSource\n id\n individualPriceNetworkBaseToken\n individualPriceUsd\n individualTradePrice\n logIndex\n maker\n networkId\n numberOfTokens\n orderDirection\n paymentTokenAddress\n poolAddress\n priceError\n sortKey\n taker\n timestamp\n tokenId\n totalPriceNetworkBaseToken\n totalPriceUsd\n totalTradePrice\n tradeOffer {\n ... on NftEventNftTradeItem {\n address\n amount\n recipient\n tokenId\n type\n }\n ... on NftEventTokenTradeItem {\n address\n amount\n individualPriceNetworkBaseToken\n individualPriceUsd\n individualTradePrice\n isPrice\n priceError\n recipient\n totalPriceNetworkBaseToken\n totalPriceUsd\n totalTradePrice\n type\n }\n }\n tradeReceived {\n ... on NftEventNftTradeItem {\n address\n amount\n recipient\n tokenId\n type\n }\n ... on NftEventTokenTradeItem {\n address\n amount\n individualPriceNetworkBaseToken\n individualPriceUsd\n individualTradePrice\n isPrice\n priceError\n recipient\n totalPriceNetworkBaseToken\n totalPriceUsd\n totalTradePrice\n type\n }\n }\n transactionHash\n transactionIndex\n }\n id\n networkId\n }\n}": typeof types.OnNftEventsCreatedDocument, "subscription OnNftPoolEventsCreated($collectionAddress: String, $exchangeAddress: String, $networkId: Int, $poolAddress: String) {\n onNftPoolEventsCreated(\n collectionAddress: $collectionAddress\n exchangeAddress: $exchangeAddress\n networkId: $networkId\n poolAddress: $poolAddress\n ) {\n collectionAddress\n events {\n blockHash\n blockNumber\n collectionAddress\n collectionId\n data {\n ... on NewPoolEventData {\n assetRecipientAddress\n bondingCurveAddress\n bondingCurveType\n buyPriceT\n collectionAddress\n createdAt\n delta\n feeAmountT\n nbtRatio\n networkId\n nftTokenBalance\n ownerAddress\n poolAddress\n sellPriceT\n startPriceT\n tokenAddress\n tokenBalanceT\n type\n usdRatio\n }\n ... on NewPoolEventDataV2 {\n assetRecipientAddress\n bondingCurveAddress\n bondingCurveType\n buyPriceT\n collectionAddress\n createdAt\n delta\n feeAmountT\n nbtRatio\n networkId\n nftAssets {\n address\n attributes {\n class\n css\n displayType\n maxValue\n name\n value\n valueType\n }\n description\n id\n media {\n image\n processed\n thumbLg\n thumbSm\n }\n name\n networkId\n originalImage\n quantity\n rawAssetData {\n animationUrl\n externalUrl\n imageData\n imageUrl\n }\n tokenId\n uri\n }\n nftTokenIds\n nftTokenQuantities\n ownerAddress\n poolAddress\n poolNftType\n propertyChecker\n royalties {\n percent\n recipient\n }\n sellPriceT\n startPriceT\n tokenAddress\n tokenBalanceT\n type\n usdRatio\n }\n ... on NftPoolAssetRecipientUpdateEventData {\n newAssetRecipient\n type\n }\n ... on NftPoolDeltaUpdateEventData {\n newDelta\n type\n }\n ... on NftPoolFeeUpdateEventData {\n nbtRatio\n newFeeT\n type\n usdRatio\n }\n ... on NftPoolNftDepositEventData {\n nftTokenBalance\n nftTokenIds\n tokenBalanceT\n type\n }\n ... on NftPoolNftDepositEventDataV2 {\n nftAssets {\n address\n attributes {\n class\n css\n displayType\n maxValue\n name\n value\n valueType\n }\n description\n id\n media {\n image\n processed\n thumbLg\n thumbSm\n }\n name\n networkId\n originalImage\n quantity\n rawAssetData {\n animationUrl\n externalUrl\n imageData\n imageUrl\n }\n tokenId\n uri\n }\n nftTokenAmounts\n nftTokenIds\n tokenBalanceT\n type\n }\n ... on NftPoolNftWithdrawalEventData {\n nftTokenBalance\n nftTokenIds\n tokenBalanceT\n type\n }\n ... on NftPoolNftWithdrawalEventDataV2 {\n nftAssets {\n address\n attributes {\n class\n css\n displayType\n maxValue\n name\n value\n valueType\n }\n description\n id\n media {\n image\n processed\n thumbLg\n thumbSm\n }\n name\n networkId\n originalImage\n quantity\n rawAssetData {\n animationUrl\n externalUrl\n imageData\n imageUrl\n }\n tokenId\n uri\n }\n nftTokenAmounts\n nftTokenIds\n tokenBalanceT\n type\n }\n ... on NftPoolOwnershipTransferredEventDataV2 {\n newOwner\n type\n }\n ... on NftPoolSpotPriceUpdateEventData {\n nbtRatio\n newBuyPriceT\n newSellPriceT\n newSpotPriceT\n type\n usdRatio\n }\n ... on NftPoolSpotPriceUpdateEventDataV2 {\n nbtRatio\n newBuyPriceT\n newSellPriceT\n newSpotPriceT\n type\n usdRatio\n }\n ... on NftPoolTokenDepositEventData {\n amountT\n nbtRatio\n nftTokenBalance\n tokenBalanceT\n type\n usdRatio\n }\n ... on NftPoolTokenDepositEventDataV2 {\n amountT\n nbtRatio\n tokenBalanceT\n type\n usdRatio\n }\n ... on NftPoolTokenWithdrawalEventData {\n amountT\n nbtRatio\n nftTokenBalance\n tokenBalanceT\n type\n usdRatio\n }\n ... on NftPoolTokenWithdrawalEventDataV2 {\n amountT\n nbtRatio\n tokenBalanceT\n type\n usdRatio\n }\n ... on SwapNftInPoolEventData {\n amountT\n nbtRatio\n newBuyPriceT\n newDelta\n newSellPriceT\n newSpotPriceT\n nftTokenBalance\n nftsTransfered {\n amountT\n nftTokenId\n }\n poolFeeT\n protocolFeeT\n tokenBalanceT\n tokenId\n type\n usdRatio\n }\n ... on SwapNftInPoolEventDataV2 {\n amountT\n nbtRatio\n newBuyPriceT\n newDelta\n newSellPriceT\n newSpotPriceT\n nftAssets {\n address\n attributes {\n class\n css\n displayType\n maxValue\n name\n value\n valueType\n }\n description\n id\n media {\n image\n processed\n thumbLg\n thumbSm\n }\n name\n networkId\n originalImage\n quantity\n rawAssetData {\n animationUrl\n externalUrl\n imageData\n imageUrl\n }\n tokenId\n uri\n }\n nftsTransfered {\n amountT\n nftQuantity\n nftTokenId\n }\n poolFeeT\n protocolFeeT\n tokenBalanceT\n tokenId\n type\n usdRatio\n }\n ... on SwapNftOutPoolEventData {\n amountT\n nbtRatio\n newBuyPriceT\n newDelta\n newSellPriceT\n newSpotPriceT\n nftTokenBalance\n nftsTransfered {\n amountT\n nftTokenId\n }\n poolFeeT\n protocolFeeT\n tokenBalanceT\n tokenId\n type\n usdRatio\n }\n ... on SwapNftOutPoolEventDataV2 {\n amountT\n nbtRatio\n newBuyPriceT\n newDelta\n newSellPriceT\n newSpotPriceT\n nftAssets {\n address\n attributes {\n class\n css\n displayType\n maxValue\n name\n value\n valueType\n }\n description\n id\n media {\n image\n processed\n thumbLg\n thumbSm\n }\n name\n networkId\n originalImage\n quantity\n rawAssetData {\n animationUrl\n externalUrl\n imageData\n imageUrl\n }\n tokenId\n uri\n }\n nftsTransfered {\n amountT\n nftQuantity\n nftTokenId\n }\n poolFeeT\n protocolFeeT\n tokenBalanceT\n tokenId\n type\n usdRatio\n }\n }\n eventType\n exchangeAddress\n id\n logIndex\n maker\n networkId\n poolAddress\n poolType\n timestamp\n tokenAddress\n transactionHash\n transactionIndex\n }\n exchangeAddress\n id\n networkId\n poolAddress\n }\n}": typeof types.OnNftPoolEventsCreatedDocument, - "subscription OnPairMetadataUpdated($id: String, $quoteToken: QuoteToken, $useNonLiquidityTokenAsQuoteToken: Boolean) {\n onPairMetadataUpdated(\n id: $id\n quoteToken: $quoteToken\n useNonLiquidityTokenAsQuoteToken: $useNonLiquidityTokenAsQuoteToken\n ) {\n createdAt\n enhancedToken0 {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n enhancedToken1 {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n exchangeId\n fee\n highPrice1\n highPrice4\n highPrice5m\n highPrice12\n highPrice24\n id\n liquidity\n liquidityToken\n lowPrice1\n lowPrice4\n lowPrice5m\n lowPrice12\n lowPrice24\n networkId\n nonLiquidityToken\n pairAddress\n price\n priceChange1\n priceChange4\n priceChange5m\n priceChange12\n priceChange24\n priceNonQuoteToken\n quoteToken\n statsType\n tickSpacing\n token0 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n token1 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n top10HoldersPercent\n volume1\n volume4\n volume5m\n volume12\n volume24\n walletActivity {\n bundlerCount\n bundlerHeldPercentage\n devHeldPercentage\n insiderCount\n insiderHeldPercentage\n sniperCount\n sniperHeldPercentage\n }\n }\n}": typeof types.OnPairMetadataUpdatedDocument, + "subscription OnPairMetadataUpdated($id: String, $quoteToken: QuoteToken, $useNonLiquidityTokenAsQuoteToken: Boolean) {\n onPairMetadataUpdated(\n id: $id\n quoteToken: $quoteToken\n useNonLiquidityTokenAsQuoteToken: $useNonLiquidityTokenAsQuoteToken\n ) {\n createdAt\n enhancedToken0 {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n enhancedToken1 {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n exchangeId\n fee\n highPrice1\n highPrice4\n highPrice5m\n highPrice12\n highPrice24\n id\n liquidity\n liquidityToken\n lowPrice1\n lowPrice4\n lowPrice5m\n lowPrice12\n lowPrice24\n networkId\n nonLiquidityToken\n pairAddress\n price\n priceChange1\n priceChange4\n priceChange5m\n priceChange12\n priceChange24\n priceNonQuoteToken\n quoteToken\n statsType\n tickSpacing\n token0 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n token1 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n top10HoldersPercent\n volume1\n volume4\n volume5m\n volume12\n volume24\n walletActivity {\n bundlerCount\n bundlerHeldPercentage\n devHeldPercentage\n insiderCount\n insiderHeldPercentage\n sniperCount\n sniperHeldPercentage\n }\n }\n}": typeof types.OnPairMetadataUpdatedDocument, "subscription OnPredictionEventBarsUpdated($eventId: String!) {\n onPredictionEventBarsUpdated(eventId: $eventId) {\n bars {\n day1 {\n buyVolumeCollateralToken\n buyVolumeUsd\n lastEventTimestamp\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n openInterestCollateralToken {\n c\n h\n l\n o\n }\n openInterestUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeUsd\n t\n totalVolumeCollateralToken\n totalVolumeUsd\n trades\n uniqueTraders\n venueVolumeCollateralToken\n venueVolumeUsd\n volumeCollateralToken\n volumeUsd\n }\n hour1 {\n buyVolumeCollateralToken\n buyVolumeUsd\n lastEventTimestamp\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n openInterestCollateralToken {\n c\n h\n l\n o\n }\n openInterestUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeUsd\n t\n totalVolumeCollateralToken\n totalVolumeUsd\n trades\n uniqueTraders\n venueVolumeCollateralToken\n venueVolumeUsd\n volumeCollateralToken\n volumeUsd\n }\n hour4 {\n buyVolumeCollateralToken\n buyVolumeUsd\n lastEventTimestamp\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n openInterestCollateralToken {\n c\n h\n l\n o\n }\n openInterestUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeUsd\n t\n totalVolumeCollateralToken\n totalVolumeUsd\n trades\n uniqueTraders\n venueVolumeCollateralToken\n venueVolumeUsd\n volumeCollateralToken\n volumeUsd\n }\n hour12 {\n buyVolumeCollateralToken\n buyVolumeUsd\n lastEventTimestamp\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n openInterestCollateralToken {\n c\n h\n l\n o\n }\n openInterestUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeUsd\n t\n totalVolumeCollateralToken\n totalVolumeUsd\n trades\n uniqueTraders\n venueVolumeCollateralToken\n venueVolumeUsd\n volumeCollateralToken\n volumeUsd\n }\n min1 {\n buyVolumeCollateralToken\n buyVolumeUsd\n lastEventTimestamp\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n openInterestCollateralToken {\n c\n h\n l\n o\n }\n openInterestUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeUsd\n t\n totalVolumeCollateralToken\n totalVolumeUsd\n trades\n uniqueTraders\n venueVolumeCollateralToken\n venueVolumeUsd\n volumeCollateralToken\n volumeUsd\n }\n min5 {\n buyVolumeCollateralToken\n buyVolumeUsd\n lastEventTimestamp\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n openInterestCollateralToken {\n c\n h\n l\n o\n }\n openInterestUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeUsd\n t\n totalVolumeCollateralToken\n totalVolumeUsd\n trades\n uniqueTraders\n venueVolumeCollateralToken\n venueVolumeUsd\n volumeCollateralToken\n volumeUsd\n }\n min15 {\n buyVolumeCollateralToken\n buyVolumeUsd\n lastEventTimestamp\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n openInterestCollateralToken {\n c\n h\n l\n o\n }\n openInterestUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeUsd\n t\n totalVolumeCollateralToken\n totalVolumeUsd\n trades\n uniqueTraders\n venueVolumeCollateralToken\n venueVolumeUsd\n volumeCollateralToken\n volumeUsd\n }\n min30 {\n buyVolumeCollateralToken\n buyVolumeUsd\n lastEventTimestamp\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n openInterestCollateralToken {\n c\n h\n l\n o\n }\n openInterestUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeUsd\n t\n totalVolumeCollateralToken\n totalVolumeUsd\n trades\n uniqueTraders\n venueVolumeCollateralToken\n venueVolumeUsd\n volumeCollateralToken\n volumeUsd\n }\n week1 {\n buyVolumeCollateralToken\n buyVolumeUsd\n lastEventTimestamp\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n openInterestCollateralToken {\n c\n h\n l\n o\n }\n openInterestUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeUsd\n t\n totalVolumeCollateralToken\n totalVolumeUsd\n trades\n uniqueTraders\n venueVolumeCollateralToken\n venueVolumeUsd\n volumeCollateralToken\n volumeUsd\n }\n }\n eventId\n }\n}": typeof types.OnPredictionEventBarsUpdatedDocument, "subscription OnPredictionMarketBarsUpdated($marketId: String!) {\n onPredictionMarketBarsUpdated(marketId: $marketId) {\n bars {\n day1 {\n allTimeVolumeCollateralToken\n allTimeVolumeUsd\n lastEventTimestamp\n openInterestUsd {\n c\n h\n l\n o\n }\n outcome0 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n outcome1 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n t\n trades\n uniqueTraders\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n hour1 {\n allTimeVolumeCollateralToken\n allTimeVolumeUsd\n lastEventTimestamp\n openInterestUsd {\n c\n h\n l\n o\n }\n outcome0 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n outcome1 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n t\n trades\n uniqueTraders\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n hour4 {\n allTimeVolumeCollateralToken\n allTimeVolumeUsd\n lastEventTimestamp\n openInterestUsd {\n c\n h\n l\n o\n }\n outcome0 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n outcome1 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n t\n trades\n uniqueTraders\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n hour12 {\n allTimeVolumeCollateralToken\n allTimeVolumeUsd\n lastEventTimestamp\n openInterestUsd {\n c\n h\n l\n o\n }\n outcome0 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n outcome1 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n t\n trades\n uniqueTraders\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n min1 {\n allTimeVolumeCollateralToken\n allTimeVolumeUsd\n lastEventTimestamp\n openInterestUsd {\n c\n h\n l\n o\n }\n outcome0 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n outcome1 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n t\n trades\n uniqueTraders\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n min5 {\n allTimeVolumeCollateralToken\n allTimeVolumeUsd\n lastEventTimestamp\n openInterestUsd {\n c\n h\n l\n o\n }\n outcome0 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n outcome1 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n t\n trades\n uniqueTraders\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n min15 {\n allTimeVolumeCollateralToken\n allTimeVolumeUsd\n lastEventTimestamp\n openInterestUsd {\n c\n h\n l\n o\n }\n outcome0 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n outcome1 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n t\n trades\n uniqueTraders\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n min30 {\n allTimeVolumeCollateralToken\n allTimeVolumeUsd\n lastEventTimestamp\n openInterestUsd {\n c\n h\n l\n o\n }\n outcome0 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n outcome1 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n t\n trades\n uniqueTraders\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n week1 {\n allTimeVolumeCollateralToken\n allTimeVolumeUsd\n lastEventTimestamp\n openInterestUsd {\n c\n h\n l\n o\n }\n outcome0 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n outcome1 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n t\n trades\n uniqueTraders\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n }\n marketId\n }\n}": typeof types.OnPredictionMarketBarsUpdatedDocument, "subscription OnPredictionTradesCreated($input: OnPredictionTradesCreatedInput!) {\n onPredictionTradesCreated(input: $input) {\n eventId\n marketId\n trades {\n amount\n amountCollateral\n amountUsd\n blockNumber\n exchangeAddress\n maker\n marketId\n networkId\n outcomeId\n outcomeIndex\n outcomeLabel\n predictionMarket {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n eventId\n eventLabel\n exchangeAddress\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n label\n networkId\n observedAt\n opensAt\n outcomeIds\n outcomeLabels\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rules\n rules2\n updatedAt\n venueEventId\n venueMarketId\n venueMarketSlug\n venueOutcomeIds\n winningOutcomeId\n }\n priceCollateral\n priceUsd\n protocol\n sortKey\n timestamp\n tradeType\n traderId\n transactionHash\n transactionId\n }\n }\n}": typeof types.OnPredictionTradesCreatedDocument, "subscription OnPriceUpdated($address: String, $networkId: Int, $sourcePairAddress: String, $useWeightedPrices: Boolean) {\n onPriceUpdated(\n address: $address\n networkId: $networkId\n sourcePairAddress: $sourcePairAddress\n useWeightedPrices: $useWeightedPrices\n ) {\n address\n blockNumber\n networkId\n priceUsd\n timestamp\n }\n}": typeof types.OnPriceUpdatedDocument, "subscription OnPricesUpdated($input: [OnPricesUpdatedInput!]!, $useWeightedPrices: Boolean) {\n onPricesUpdated(input: $input, useWeightedPrices: $useWeightedPrices) {\n address\n blockNumber\n networkId\n priceUsd\n timestamp\n }\n}": typeof types.OnPricesUpdatedDocument, "subscription OnTokenBarsUpdated($networkId: Int, $tokenId: String) {\n onTokenBarsUpdated(networkId: $networkId, tokenId: $tokenId) {\n aggregates {\n r1 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r1D {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r1S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r5 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r5S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r7D {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r15 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r15S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r30 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r30S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r60 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r240 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r720 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n }\n eventSortKey\n networkId\n statsType\n timestamp\n tokenAddress\n tokenId\n }\n}": typeof types.OnTokenBarsUpdatedDocument, - "subscription OnTokenEventsCreated($input: OnTokenEventsCreatedInput!) {\n onTokenEventsCreated(input: $input) {\n events {\n address\n baseTokenPrice\n blockHash\n blockNumber\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n id\n }\n}": typeof types.OnTokenEventsCreatedDocument, + "subscription OnTokenEventsCreated($input: OnTokenEventsCreatedInput!) {\n onTokenEventsCreated(input: $input) {\n events {\n address\n baseTokenPrice\n blockHash\n blockNumber\n commitmentLevel\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n supplementalIndex\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n id\n }\n}": typeof types.OnTokenEventsCreatedDocument, "subscription OnTokenLifecycleEventsCreated($address: String, $networkId: Int) {\n onTokenLifecycleEventsCreated(address: $address, networkId: $networkId) {\n events {\n blockHash\n blockNumber\n data {\n ... on TokenBurnEventData {\n amount\n circulatingSupply\n totalSupply\n }\n ... on TokenMintEventData {\n amount\n circulatingSupply\n totalSupply\n }\n }\n eventType\n id\n logIndex\n maker\n networkId\n timestamp\n tokenAddress\n transactionHash\n transactionIndex\n }\n id\n }\n}": typeof types.OnTokenLifecycleEventsCreatedDocument, "subscription OnUnconfirmedBarsUpdated($pairId: String, $quoteToken: QuoteToken) {\n onUnconfirmedBarsUpdated(pairId: $pairId, quoteToken: $quoteToken) {\n aggregates {\n r1 {\n c\n h\n l\n o\n t\n v\n volume\n }\n r1D {\n c\n h\n l\n o\n t\n v\n volume\n }\n r1S {\n c\n h\n l\n o\n t\n v\n volume\n }\n r5 {\n c\n h\n l\n o\n t\n v\n volume\n }\n r5S {\n c\n h\n l\n o\n t\n v\n volume\n }\n r7D {\n c\n h\n l\n o\n t\n v\n volume\n }\n r15 {\n c\n h\n l\n o\n t\n v\n volume\n }\n r15S {\n c\n h\n l\n o\n t\n v\n volume\n }\n r60 {\n c\n h\n l\n o\n t\n v\n volume\n }\n r240 {\n c\n h\n l\n o\n t\n v\n volume\n }\n r720 {\n c\n h\n l\n o\n t\n v\n volume\n }\n }\n eventSortKey\n networkId\n pairAddress\n pairId\n quoteToken\n quoteTokenAddress\n timestamp\n }\n}": typeof types.OnUnconfirmedBarsUpdatedDocument, "subscription OnUnconfirmedEventsCreated($address: String, $id: String, $quoteToken: QuoteToken) {\n onUnconfirmedEventsCreated(address: $address, id: $id, quoteToken: $quoteToken) {\n address\n events {\n address\n blockHash\n blockNumber\n data {\n ... on UnconfirmedLiquidityChangeEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n type\n }\n ... on UnconfirmedSwapEventData {\n amountBaseToken\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n type\n }\n }\n eventDisplayType\n eventType\n id\n logIndex\n maker\n networkId\n quoteToken\n supplementalIndex\n timestamp\n transactionHash\n transactionIndex\n }\n id\n networkId\n quoteToken\n }\n}": typeof types.OnUnconfirmedEventsCreatedDocument, @@ -120,10 +119,10 @@ const documents: Documents = { "mutation CreateWebhooks($input: CreateWebhooksInput!) {\n createWebhooks(input: $input) {\n nftEventWebhooks {\n alertRecurrence\n bucketId\n bucketSortkey\n callbackUrl\n conditions {\n ... on NftEventWebhookCondition {\n contractAddress {\n eq\n }\n eventType {\n eq\n }\n exchangeAddress {\n eq\n }\n fillSource {\n oneOf\n }\n ignoreTransfers\n individualBaseTokenPrice {\n eq\n gt\n gte\n lt\n lte\n }\n maker {\n eq\n }\n networkId {\n oneOf\n }\n nftTokenAddress: tokenAddress {\n eq\n }\n tokenId {\n eq\n }\n }\n ... on PriceEventWebhookCondition {\n priceNetworkId: networkId {\n eq\n }\n priceUsd {\n eq\n gt\n gte\n lt\n lte\n }\n priceTokenAddress: tokenAddress {\n eq\n }\n }\n ... on RawTransactionWebhookCondition {\n from {\n eq\n }\n ignoreNftEvents\n ignoreTokenPairEvents\n input {\n contains\n notContains\n }\n networkId {\n oneOf\n }\n to {\n eq\n }\n toOrFrom {\n eq\n }\n }\n ... on TokenPairEventWebhookCondition {\n eventType {\n oneOf\n }\n exchangeAddress {\n eq\n }\n maker {\n eq\n }\n networkId {\n oneOf\n }\n pairAddress {\n eq\n }\n swapValue {\n eq\n gt\n gte\n lt\n lte\n }\n tokenAddress {\n eq\n }\n }\n }\n created\n groupId\n id\n name\n publishingType\n retrySettings {\n maxRetries\n maxRetryDelay\n maxTimeElapsed\n minRetryDelay\n }\n status\n webhookType\n }\n priceWebhooks {\n alertRecurrence\n bucketId\n bucketSortkey\n callbackUrl\n conditions {\n ... on NftEventWebhookCondition {\n contractAddress {\n eq\n }\n eventType {\n eq\n }\n exchangeAddress {\n eq\n }\n fillSource {\n oneOf\n }\n ignoreTransfers\n individualBaseTokenPrice {\n eq\n gt\n gte\n lt\n lte\n }\n maker {\n eq\n }\n networkId {\n oneOf\n }\n nftTokenAddress: tokenAddress {\n eq\n }\n tokenId {\n eq\n }\n }\n ... on PriceEventWebhookCondition {\n priceNetworkId: networkId {\n eq\n }\n priceUsd {\n eq\n gt\n gte\n lt\n lte\n }\n priceTokenAddress: tokenAddress {\n eq\n }\n }\n ... on RawTransactionWebhookCondition {\n from {\n eq\n }\n ignoreNftEvents\n ignoreTokenPairEvents\n input {\n contains\n notContains\n }\n networkId {\n oneOf\n }\n to {\n eq\n }\n toOrFrom {\n eq\n }\n }\n ... on TokenPairEventWebhookCondition {\n eventType {\n oneOf\n }\n exchangeAddress {\n eq\n }\n maker {\n eq\n }\n networkId {\n oneOf\n }\n pairAddress {\n eq\n }\n swapValue {\n eq\n gt\n gte\n lt\n lte\n }\n tokenAddress {\n eq\n }\n }\n }\n created\n groupId\n id\n name\n publishingType\n retrySettings {\n maxRetries\n maxRetryDelay\n maxTimeElapsed\n minRetryDelay\n }\n status\n webhookType\n }\n rawTransactionWebhooks {\n alertRecurrence\n bucketId\n bucketSortkey\n callbackUrl\n conditions {\n ... on NftEventWebhookCondition {\n contractAddress {\n eq\n }\n eventType {\n eq\n }\n exchangeAddress {\n eq\n }\n fillSource {\n oneOf\n }\n ignoreTransfers\n individualBaseTokenPrice {\n eq\n gt\n gte\n lt\n lte\n }\n maker {\n eq\n }\n networkId {\n oneOf\n }\n tokenAddress {\n eq\n }\n tokenId {\n eq\n }\n }\n ... on PriceEventWebhookCondition {\n priceEventNetworkId: networkId {\n eq\n }\n priceUsd {\n eq\n gt\n gte\n lt\n lte\n }\n priceEventTokenAddress: tokenAddress {\n eq\n }\n }\n ... on RawTransactionWebhookCondition {\n from {\n eq\n }\n ignoreNftEvents\n ignoreTokenPairEvents\n input {\n contains\n notContains\n }\n networkId {\n oneOf\n }\n to {\n eq\n }\n toOrFrom {\n eq\n }\n }\n ... on TokenPairEventWebhookCondition {\n eventType {\n oneOf\n }\n exchangeAddress {\n eq\n }\n maker {\n eq\n }\n networkId {\n oneOf\n }\n pairAddress {\n eq\n }\n swapValue {\n eq\n gt\n gte\n lt\n lte\n }\n tokenAddress {\n eq\n }\n }\n }\n created\n groupId\n id\n name\n publishingType\n retrySettings {\n maxRetries\n maxRetryDelay\n maxTimeElapsed\n minRetryDelay\n }\n status\n webhookType\n }\n tokenPairEventWebhooks {\n alertRecurrence\n bucketId\n bucketSortkey\n callbackUrl\n conditions {\n ... on NftEventWebhookCondition {\n contractAddress {\n eq\n }\n eventType {\n eq\n }\n exchangeAddress {\n eq\n }\n fillSource {\n oneOf\n }\n ignoreTransfers\n individualBaseTokenPrice {\n eq\n gt\n gte\n lt\n lte\n }\n maker {\n eq\n }\n networkId {\n oneOf\n }\n tokenAddress {\n eq\n }\n tokenId {\n eq\n }\n }\n ... on PriceEventWebhookCondition {\n priceEventNetworkId: networkId {\n eq\n }\n priceUsd {\n eq\n gt\n gte\n lt\n lte\n }\n priceEventTokenAddress: tokenAddress {\n eq\n }\n }\n ... on RawTransactionWebhookCondition {\n from {\n eq\n }\n ignoreNftEvents\n ignoreTokenPairEvents\n input {\n contains\n notContains\n }\n networkId {\n oneOf\n }\n to {\n eq\n }\n toOrFrom {\n eq\n }\n }\n ... on TokenPairEventWebhookCondition {\n eventType {\n oneOf\n }\n exchangeAddress {\n eq\n }\n maker {\n eq\n }\n networkId {\n oneOf\n }\n pairAddress {\n eq\n }\n swapValue {\n eq\n gt\n gte\n lt\n lte\n }\n tokenAddress {\n eq\n }\n }\n }\n created\n groupId\n id\n name\n publishingType\n retrySettings {\n maxRetries\n maxRetryDelay\n maxTimeElapsed\n minRetryDelay\n }\n status\n webhookType\n }\n }\n}": types.CreateWebhooksDocument, "mutation DeleteApiToken($id: String!) {\n deleteApiToken(id: $id)\n}": types.DeleteApiTokenDocument, "mutation DeleteWebhooks($input: DeleteWebhooksInput!) {\n deleteWebhooks(input: $input) {\n deletedIds\n }\n}": types.DeleteWebhooksDocument, - "mutation RefreshBalances($input: [RefreshBalancesInput!]!) {\n refreshBalances(input: $input) {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n}": types.RefreshBalancesDocument, + "mutation RefreshBalances($input: [RefreshBalancesInput!]!) {\n refreshBalances(input: $input) {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n}": types.RefreshBalancesDocument, "query ApiToken($token: String!) {\n apiToken(token: $token) {\n expiresTimeString\n id\n remaining\n requestLimit\n token\n }\n}": types.ApiTokenDocument, "query ApiTokens {\n apiTokens {\n expiresTimeString\n id\n remaining\n requestLimit\n token\n }\n}": types.ApiTokensDocument, - "query Balances($input: BalancesInput!) {\n balances(input: $input) {\n cursor\n items {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n }\n}": types.BalancesDocument, + "query Balances($input: BalancesInput!) {\n balances(input: $input) {\n cursor\n items {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n }\n}": types.BalancesDocument, "query Blocks($input: BlocksInput!) {\n blocks(input: $input) {\n blockNumber\n hash\n timestamp\n }\n}": types.BlocksDocument, "query ChartUrls($input: ChartInput!) {\n chartUrls(input: $input) {\n pair {\n url\n }\n }\n}": types.ChartUrlsDocument, "query DetailedPredictionEventStats($input: DetailedPredictionEventStatsInput!) {\n detailedPredictionEventStats(input: $input) {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n eventId\n lastTransactionAt\n lifecycle {\n ageSeconds\n expectedLifespanSeconds\n isResolved\n timeToResolutionSeconds\n winningOutcomeId\n }\n predictionEvent {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n marketIds\n networkId\n opensAt\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rulesPrimary\n rulesSecondary\n status\n tags\n updatedAt\n url\n venueEventId\n venueSeriesId\n }\n predictionMarkets {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n eventId\n eventLabel\n exchangeAddress\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n label\n networkId\n observedAt\n opensAt\n outcomeIds\n outcomeLabels\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rules\n rules2\n updatedAt\n venueEventId\n venueMarketId\n venueMarketSlug\n venueOutcomeIds\n winningOutcomeId\n }\n relevanceScores {\n score1\n score1w\n score4\n score5m\n score12\n score24\n }\n statsDay1 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n buySell {\n buyVolume {\n ct\n usd\n }\n sellVolume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n buyVolumeChange\n liquidityChange\n openInterestChange\n sellVolumeChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsHour1 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n buySell {\n buyVolume {\n ct\n usd\n }\n sellVolume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n buyVolumeChange\n liquidityChange\n openInterestChange\n sellVolumeChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsHour4 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n buySell {\n buyVolume {\n ct\n usd\n }\n sellVolume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n buyVolumeChange\n liquidityChange\n openInterestChange\n sellVolumeChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsHour12 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n buySell {\n buyVolume {\n ct\n usd\n }\n sellVolume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n buyVolumeChange\n liquidityChange\n openInterestChange\n sellVolumeChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsMin5 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n buySell {\n buyVolume {\n ct\n usd\n }\n sellVolume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n buyVolumeChange\n liquidityChange\n openInterestChange\n sellVolumeChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsWeek1 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n buySell {\n buyVolume {\n ct\n usd\n }\n sellVolume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n buyVolumeChange\n liquidityChange\n openInterestChange\n sellVolumeChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n trendingScores {\n score1\n score1w\n score4\n score5m\n score12\n score24\n }\n }\n}": types.DetailedPredictionEventStatsDocument, @@ -131,18 +130,18 @@ const documents: Documents = { "query DetailedPredictionTraderStats($input: DetailedPredictionTraderStatsInput!) {\n detailedPredictionTraderStats(input: $input) {\n allTimeStats {\n totalProfitCT\n totalProfitUsd\n totalVolumeCT\n totalVolumeUsd\n }\n lastTransactionAt\n statsDay1 {\n end\n lastTransactionAt\n start\n statsChange {\n buyVolumeChange\n lossesChange\n realizedPnlChange\n sellVolumeChange\n tradesChange\n uniqueMarketsChange\n volumeChange\n winsChange\n }\n statsCurrency {\n averageProfitCTPerTrade\n averageProfitUsdPerTrade\n averageSwapAmountCT\n averageSwapAmountUsd\n buyVolumeCT\n buyVolumeUsd\n heldTokenAcquisitionCostCT\n heldTokenAcquisitionCostUsd\n realizedPnlCT\n realizedPnlUsd\n realizedProfitPercentage\n sellVolumeCT\n sellVolumeUsd\n soldTokenAcquisitionCostCT\n soldTokenAcquisitionCostUsd\n volumeCT\n volumeUsd\n }\n statsNonCurrency {\n buys\n losses\n sells\n trades\n uniqueMarkets\n wins\n }\n }\n statsDay30 {\n end\n lastTransactionAt\n start\n statsChange {\n buyVolumeChange\n lossesChange\n realizedPnlChange\n sellVolumeChange\n tradesChange\n uniqueMarketsChange\n volumeChange\n winsChange\n }\n statsCurrency {\n averageProfitCTPerTrade\n averageProfitUsdPerTrade\n averageSwapAmountCT\n averageSwapAmountUsd\n buyVolumeCT\n buyVolumeUsd\n heldTokenAcquisitionCostCT\n heldTokenAcquisitionCostUsd\n realizedPnlCT\n realizedPnlUsd\n realizedProfitPercentage\n sellVolumeCT\n sellVolumeUsd\n soldTokenAcquisitionCostCT\n soldTokenAcquisitionCostUsd\n volumeCT\n volumeUsd\n }\n statsNonCurrency {\n buys\n losses\n sells\n trades\n uniqueMarkets\n wins\n }\n }\n statsHour1 {\n end\n lastTransactionAt\n start\n statsChange {\n buyVolumeChange\n lossesChange\n realizedPnlChange\n sellVolumeChange\n tradesChange\n uniqueMarketsChange\n volumeChange\n winsChange\n }\n statsCurrency {\n averageProfitCTPerTrade\n averageProfitUsdPerTrade\n averageSwapAmountCT\n averageSwapAmountUsd\n buyVolumeCT\n buyVolumeUsd\n heldTokenAcquisitionCostCT\n heldTokenAcquisitionCostUsd\n realizedPnlCT\n realizedPnlUsd\n realizedProfitPercentage\n sellVolumeCT\n sellVolumeUsd\n soldTokenAcquisitionCostCT\n soldTokenAcquisitionCostUsd\n volumeCT\n volumeUsd\n }\n statsNonCurrency {\n buys\n losses\n sells\n trades\n uniqueMarkets\n wins\n }\n }\n statsHour4 {\n end\n lastTransactionAt\n start\n statsChange {\n buyVolumeChange\n lossesChange\n realizedPnlChange\n sellVolumeChange\n tradesChange\n uniqueMarketsChange\n volumeChange\n winsChange\n }\n statsCurrency {\n averageProfitCTPerTrade\n averageProfitUsdPerTrade\n averageSwapAmountCT\n averageSwapAmountUsd\n buyVolumeCT\n buyVolumeUsd\n heldTokenAcquisitionCostCT\n heldTokenAcquisitionCostUsd\n realizedPnlCT\n realizedPnlUsd\n realizedProfitPercentage\n sellVolumeCT\n sellVolumeUsd\n soldTokenAcquisitionCostCT\n soldTokenAcquisitionCostUsd\n volumeCT\n volumeUsd\n }\n statsNonCurrency {\n buys\n losses\n sells\n trades\n uniqueMarkets\n wins\n }\n }\n statsHour12 {\n end\n lastTransactionAt\n start\n statsChange {\n buyVolumeChange\n lossesChange\n realizedPnlChange\n sellVolumeChange\n tradesChange\n uniqueMarketsChange\n volumeChange\n winsChange\n }\n statsCurrency {\n averageProfitCTPerTrade\n averageProfitUsdPerTrade\n averageSwapAmountCT\n averageSwapAmountUsd\n buyVolumeCT\n buyVolumeUsd\n heldTokenAcquisitionCostCT\n heldTokenAcquisitionCostUsd\n realizedPnlCT\n realizedPnlUsd\n realizedProfitPercentage\n sellVolumeCT\n sellVolumeUsd\n soldTokenAcquisitionCostCT\n soldTokenAcquisitionCostUsd\n volumeCT\n volumeUsd\n }\n statsNonCurrency {\n buys\n losses\n sells\n trades\n uniqueMarkets\n wins\n }\n }\n statsWeek1 {\n end\n lastTransactionAt\n start\n statsChange {\n buyVolumeChange\n lossesChange\n realizedPnlChange\n sellVolumeChange\n tradesChange\n uniqueMarketsChange\n volumeChange\n winsChange\n }\n statsCurrency {\n averageProfitCTPerTrade\n averageProfitUsdPerTrade\n averageSwapAmountCT\n averageSwapAmountUsd\n buyVolumeCT\n buyVolumeUsd\n heldTokenAcquisitionCostCT\n heldTokenAcquisitionCostUsd\n realizedPnlCT\n realizedPnlUsd\n realizedProfitPercentage\n sellVolumeCT\n sellVolumeUsd\n soldTokenAcquisitionCostCT\n soldTokenAcquisitionCostUsd\n volumeCT\n volumeUsd\n }\n statsNonCurrency {\n buys\n losses\n sells\n trades\n uniqueMarkets\n wins\n }\n }\n trader {\n activeMarketsCount\n alias\n allTimeProfitCT\n allTimeProfitUsd\n biggestLossCT\n biggestLossUsd\n biggestWinCT\n biggestWinUsd\n createdAt\n firstTradeTimestamp\n id\n labels\n lastTradeTimestamp\n linkedAddresses\n primaryAddress\n profileImageUrl\n profileUrl\n protocol\n totalTradesCount\n totalVolumeCT\n totalVolumeUsd\n updatedAt\n venueTraderId\n }\n traderId\n }\n}": types.DetailedPredictionTraderStatsDocument, "query DetailedWalletStats($input: DetailedWalletStatsInput!) {\n detailedWalletStats(input: $input) {\n botScore\n labels\n lastTransactionAt\n networkBreakdown {\n nativeTokenBalance\n networkId\n statsDay1 {\n end\n lastTransactionAt\n networkId\n start\n statsNonCurrency {\n losses\n swaps\n uniqueTokens\n wins\n }\n statsUsd {\n averageProfitUsdPerTrade\n averageSwapAmountUsd\n heldTokenAcquisitionCostUsd\n realizedProfitPercentage\n realizedProfitUsd\n soldTokenAcquisitionCostUsd\n volumeUsd\n volumeUsdAll\n }\n walletAddress\n }\n statsDay30 {\n end\n lastTransactionAt\n networkId\n start\n statsNonCurrency {\n losses\n swaps\n uniqueTokens\n wins\n }\n statsUsd {\n averageProfitUsdPerTrade\n averageSwapAmountUsd\n heldTokenAcquisitionCostUsd\n realizedProfitPercentage\n realizedProfitUsd\n soldTokenAcquisitionCostUsd\n volumeUsd\n volumeUsdAll\n }\n walletAddress\n }\n statsWeek1 {\n end\n lastTransactionAt\n networkId\n start\n statsNonCurrency {\n losses\n swaps\n uniqueTokens\n wins\n }\n statsUsd {\n averageProfitUsdPerTrade\n averageSwapAmountUsd\n heldTokenAcquisitionCostUsd\n realizedProfitPercentage\n realizedProfitUsd\n soldTokenAcquisitionCostUsd\n volumeUsd\n volumeUsdAll\n }\n walletAddress\n }\n statsYear1 {\n end\n lastTransactionAt\n networkId\n start\n statsNonCurrency {\n losses\n swaps\n uniqueTokens\n wins\n }\n statsUsd {\n averageProfitUsdPerTrade\n averageSwapAmountUsd\n heldTokenAcquisitionCostUsd\n realizedProfitPercentage\n realizedProfitUsd\n soldTokenAcquisitionCostUsd\n volumeUsd\n volumeUsdAll\n }\n walletAddress\n }\n }\n scammerScore\n statsDay1 {\n end\n lastTransactionAt\n networkId\n start\n statsNonCurrency {\n losses\n swaps\n uniqueTokens\n wins\n }\n statsUsd {\n averageProfitUsdPerTrade\n averageSwapAmountUsd\n heldTokenAcquisitionCostUsd\n realizedProfitPercentage\n realizedProfitUsd\n soldTokenAcquisitionCostUsd\n volumeUsd\n volumeUsdAll\n }\n walletAddress\n }\n statsDay30 {\n end\n lastTransactionAt\n networkId\n start\n statsNonCurrency {\n losses\n swaps\n uniqueTokens\n wins\n }\n statsUsd {\n averageProfitUsdPerTrade\n averageSwapAmountUsd\n heldTokenAcquisitionCostUsd\n realizedProfitPercentage\n realizedProfitUsd\n soldTokenAcquisitionCostUsd\n volumeUsd\n volumeUsdAll\n }\n walletAddress\n }\n statsWeek1 {\n end\n lastTransactionAt\n networkId\n start\n statsNonCurrency {\n losses\n swaps\n uniqueTokens\n wins\n }\n statsUsd {\n averageProfitUsdPerTrade\n averageSwapAmountUsd\n heldTokenAcquisitionCostUsd\n realizedProfitPercentage\n realizedProfitUsd\n soldTokenAcquisitionCostUsd\n volumeUsd\n volumeUsdAll\n }\n walletAddress\n }\n statsYear1 {\n end\n lastTransactionAt\n networkId\n start\n statsNonCurrency {\n losses\n swaps\n uniqueTokens\n wins\n }\n statsUsd {\n averageProfitUsdPerTrade\n averageSwapAmountUsd\n heldTokenAcquisitionCostUsd\n realizedProfitPercentage\n realizedProfitUsd\n soldTokenAcquisitionCostUsd\n volumeUsd\n volumeUsdAll\n }\n walletAddress\n }\n wallet {\n address\n avatarUrl\n description\n discordId\n discordUsername\n displayName\n ethosLevel\n ethosScore\n ethosVerified\n farcasterId\n farcasterUsername\n firstFunding {\n amount\n fundedAt\n fundedByAddress\n fundedByLabel\n networkId\n tokenAddress\n transactionHash\n }\n firstSeenTimestamp\n githubId\n githubUsername\n identityLabels\n identitySource\n identityUpdatedAt\n telegramId\n telegramUsername\n twitterId\n twitterUsername\n website\n }\n walletAddress\n }\n}": types.DetailedWalletStatsDocument, "query FilterExchanges($filters: ExchangeFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [ExchangeRanking]) {\n filterExchanges(\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n ) {\n count\n offset\n results {\n dailyActiveUsers\n exchange {\n address\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n monthlyActiveUsers\n txnCount1\n txnCount4\n txnCount12\n txnCount24\n volumeNBT1\n volumeNBT4\n volumeNBT12\n volumeNBT24\n volumeUSD1\n volumeUSD4\n volumeUSD12\n volumeUSD24\n }\n }\n}": types.FilterExchangesDocument, - "query FilterPairs($filters: PairFilters, $limit: Int, $matchTokens: PairFilterMatchTokens, $offset: Int, $pairs: [String], $phrase: String, $rankings: [PairRanking], $statsType: TokenPairStatisticsType) {\n filterPairs(\n filters: $filters\n limit: $limit\n matchTokens: $matchTokens\n offset: $offset\n pairs: $pairs\n phrase: $phrase\n rankings: $rankings\n statsType: $statsType\n ) {\n count\n offset\n results {\n buyCount1\n buyCount4\n buyCount12\n buyCount24\n buyVolumeUSD1\n buyVolumeUSD4\n buyVolumeUSD12\n buyVolumeUSD24\n createdAt\n exchange {\n address\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n highPrice1\n highPrice4\n highPrice12\n highPrice24\n lastTransaction\n liquidity\n liquidityToken\n lockedLiquidityPercentage\n lowPrice1\n lowPrice4\n lowPrice12\n lowPrice24\n marketCap\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n potentialScamReasons\n price\n priceChange1\n priceChange4\n priceChange12\n priceChange24\n priceScale\n quoteToken\n sellCount1\n sellCount4\n sellCount12\n sellCount24\n sellVolumeUSD1\n sellVolumeUSD4\n sellVolumeUSD12\n sellVolumeUSD24\n swapPct1dOldWallet\n swapPct7dOldWallet\n token0 {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1 {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n txnCount1\n txnCount4\n txnCount12\n txnCount24\n uniqueBuys1\n uniqueBuys4\n uniqueBuys12\n uniqueBuys24\n uniqueSells1\n uniqueSells4\n uniqueSells12\n uniqueSells24\n uniqueTransactions1\n uniqueTransactions4\n uniqueTransactions12\n uniqueTransactions24\n volumeChange1\n volumeChange4\n volumeChange12\n volumeChange24\n volumeUSD1\n volumeUSD4\n volumeUSD12\n volumeUSD24\n walletAgeAvg\n walletAgeStd\n }\n }\n}": types.FilterPairsDocument, - "query FilterPredictionEvents($eventIds: [String!], $excludeEventIds: [String!], $filters: PredictionEventFilters, $limit: Int, $marketSort: PredictionEventMarketSort, $offset: Int, $phrase: String, $rankings: [PredictionEventRanking!]) {\n filterPredictionEvents(\n eventIds: $eventIds\n excludeEventIds: $excludeEventIds\n filters: $filters\n limit: $limit\n marketSort: $marketSort\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n ) {\n count\n page\n results {\n age\n categories\n closesAt\n createdAt\n event {\n closesAt\n createdAt\n description\n exchangeAddress\n id\n imageThumbUrl\n networkId\n opensAt\n protocol\n question\n resolvedAt\n resolvesAt\n slug\n status\n tags\n venueEventId\n venueSeriesId\n venueUrl\n }\n expectedLifespan\n id\n lastTransactionAt\n liquidityCT\n liquidityChange1h\n liquidityChange1w\n liquidityChange4h\n liquidityChange5m\n liquidityChange12h\n liquidityChange24h\n liquidityUsd\n marketCount\n markets {\n id\n label\n }\n openInterestCT\n openInterestChange1h\n openInterestChange1w\n openInterestChange4h\n openInterestChange5m\n openInterestChange12h\n openInterestChange24h\n openInterestUsd\n opensAt\n predictionEvent {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n marketIds\n networkId\n opensAt\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rulesPrimary\n rulesSecondary\n status\n tags\n updatedAt\n url\n venueEventId\n venueSeriesId\n }\n protocol\n relatedEventIds\n relevanceScore1h\n relevanceScore1w\n relevanceScore4h\n relevanceScore5m\n relevanceScore12h\n relevanceScore24h\n resolutionSource\n resolvedAt\n resolvesAt\n status\n timestamp\n topMarkets {\n label\n marketId\n outcome0BidCT\n outcome0Label\n outcome1BidCT\n outcome1Label\n volumeCT1d\n volumeCT1w\n volumeCTAll\n }\n trades1h\n trades1w\n trades4h\n trades5m\n trades12h\n trades24h\n tradesChange1h\n tradesChange1w\n tradesChange4h\n tradesChange5m\n tradesChange12h\n tradesChange24h\n trendingScore1h\n trendingScore1w\n trendingScore4h\n trendingScore5m\n trendingScore12h\n trendingScore24h\n uniqueTraders1h\n uniqueTraders1w\n uniqueTraders4h\n uniqueTraders5m\n uniqueTraders12h\n uniqueTraders24h\n uniqueTradersChange1h\n uniqueTradersChange1w\n uniqueTradersChange4h\n uniqueTradersChange5m\n uniqueTradersChange12h\n uniqueTradersChange24h\n venueVolumeCT\n venueVolumeUsd\n volumeCTAll\n volumeChange1h\n volumeChange1w\n volumeChange4h\n volumeChange5m\n volumeChange12h\n volumeChange24h\n volumeUsd1h\n volumeUsd1w\n volumeUsd4h\n volumeUsd5m\n volumeUsd12h\n volumeUsd24h\n volumeUsdAll\n }\n }\n}": types.FilterPredictionEventsDocument, + "query FilterPairs($filters: PairFilters, $limit: Int, $matchTokens: PairFilterMatchTokens, $offset: Int, $pairs: [String], $phrase: String, $rankings: [PairRanking], $statsType: TokenPairStatisticsType) {\n filterPairs(\n filters: $filters\n limit: $limit\n matchTokens: $matchTokens\n offset: $offset\n pairs: $pairs\n phrase: $phrase\n rankings: $rankings\n statsType: $statsType\n ) {\n count\n offset\n results {\n buyCount1\n buyCount4\n buyCount12\n buyCount24\n buyVolumeUSD1\n buyVolumeUSD4\n buyVolumeUSD12\n buyVolumeUSD24\n createdAt\n exchange {\n address\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n highPrice1\n highPrice4\n highPrice12\n highPrice24\n lastTransaction\n liquidity\n liquidityToken\n lockedLiquidityPercentage\n lowPrice1\n lowPrice4\n lowPrice12\n lowPrice24\n marketCap\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n potentialScamReasons\n price\n priceChange1\n priceChange4\n priceChange12\n priceChange24\n priceScale\n quoteToken\n sellCount1\n sellCount4\n sellCount12\n sellCount24\n sellVolumeUSD1\n sellVolumeUSD4\n sellVolumeUSD12\n sellVolumeUSD24\n swapPct1dOldWallet\n swapPct7dOldWallet\n token0 {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1 {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n txnCount1\n txnCount4\n txnCount12\n txnCount24\n uniqueBuys1\n uniqueBuys4\n uniqueBuys12\n uniqueBuys24\n uniqueSells1\n uniqueSells4\n uniqueSells12\n uniqueSells24\n uniqueTransactions1\n uniqueTransactions4\n uniqueTransactions12\n uniqueTransactions24\n volumeChange1\n volumeChange4\n volumeChange12\n volumeChange24\n volumeUSD1\n volumeUSD4\n volumeUSD12\n volumeUSD24\n walletAgeAvg\n walletAgeStd\n }\n }\n}": types.FilterPairsDocument, + "query FilterPredictionEvents($eventIds: [String!], $excludeEventIds: [String!], $filters: PredictionEventFilters, $limit: Int, $marketSort: PredictionEventMarketSort, $offset: Int, $phrase: String, $rankings: [PredictionEventRanking!]) {\n filterPredictionEvents(\n eventIds: $eventIds\n excludeEventIds: $excludeEventIds\n filters: $filters\n limit: $limit\n marketSort: $marketSort\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n ) {\n count\n page\n results {\n age\n categories\n closesAt\n createdAt\n event {\n closesAt\n createdAt\n description\n exchangeAddress\n id\n imageThumbUrl\n networkId\n opensAt\n protocol\n question\n resolvedAt\n resolvesAt\n slug\n status\n tags\n venueEventId\n venueSeriesId\n venueUrl\n }\n expectedLifespan\n id\n lastTransactionAt\n liquidityCT\n liquidityChange1h\n liquidityChange1w\n liquidityChange4h\n liquidityChange5m\n liquidityChange12h\n liquidityChange24h\n liquidityUsd\n marketCount\n markets {\n id\n label\n }\n openInterestCT\n openInterestChange1h\n openInterestChange1w\n openInterestChange4h\n openInterestChange5m\n openInterestChange12h\n openInterestChange24h\n openInterestUsd\n opensAt\n predictionEvent {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n marketIds\n networkId\n opensAt\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rulesPrimary\n rulesSecondary\n status\n tags\n updatedAt\n url\n venueEventId\n venueSeriesId\n }\n protocol\n relatedEventIds\n relevanceScore1h\n relevanceScore1w\n relevanceScore4h\n relevanceScore5m\n relevanceScore12h\n relevanceScore24h\n resolutionSource\n resolvedAt\n resolvesAt\n status\n timestamp\n topMarkets {\n label\n marketId\n outcome0AskCT\n outcome0AskUSD\n outcome0BidCT\n outcome0BidUSD\n outcome0Label\n outcome1AskCT\n outcome1AskUSD\n outcome1BidCT\n outcome1BidUSD\n outcome1Label\n volumeCT1d\n volumeCT1w\n volumeCTAll\n volumeUSD1d\n volumeUSD1w\n volumeUSDAll\n }\n trades1h\n trades1w\n trades4h\n trades5m\n trades12h\n trades24h\n tradesChange1h\n tradesChange1w\n tradesChange4h\n tradesChange5m\n tradesChange12h\n tradesChange24h\n trendingScore1h\n trendingScore1w\n trendingScore4h\n trendingScore5m\n trendingScore12h\n trendingScore24h\n uniqueTraders1h\n uniqueTraders1w\n uniqueTraders4h\n uniqueTraders5m\n uniqueTraders12h\n uniqueTraders24h\n uniqueTradersChange1h\n uniqueTradersChange1w\n uniqueTradersChange4h\n uniqueTradersChange5m\n uniqueTradersChange12h\n uniqueTradersChange24h\n venueVolumeCT\n venueVolumeUsd\n volumeCTAll\n volumeChange1h\n volumeChange1w\n volumeChange4h\n volumeChange5m\n volumeChange12h\n volumeChange24h\n volumeUsd1h\n volumeUsd1w\n volumeUsd4h\n volumeUsd5m\n volumeUsd12h\n volumeUsd24h\n volumeUsdAll\n }\n }\n}": types.FilterPredictionEventsDocument, "query FilterPredictionMarkets($eventIds: [String!], $excludeEventIds: [String!], $excludeMarketIds: [String!], $filters: PredictionMarketFilters, $limit: Int, $marketIds: [String!], $offset: Int, $phrase: String, $rankings: [PredictionMarketRanking!]) {\n filterPredictionMarkets(\n eventIds: $eventIds\n excludeEventIds: $excludeEventIds\n excludeMarketIds: $excludeMarketIds\n filters: $filters\n limit: $limit\n marketIds: $marketIds\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n ) {\n count\n page\n results {\n age\n avgTradeSizeUsd1h\n avgTradeSizeUsd1w\n avgTradeSizeUsd4h\n avgTradeSizeUsd5m\n avgTradeSizeUsd12h\n avgTradeSizeUsd24h\n categories\n closesAt\n competitiveScore1h\n competitiveScore1w\n competitiveScore4h\n competitiveScore5m\n competitiveScore12h\n competitiveScore24h\n eventLabel\n expectedLifespan\n id\n impliedProbabilitySum\n lastTransactionAt\n liquidityAsymmetry\n liquidityCT\n liquidityChange1h\n liquidityChange1w\n liquidityChange4h\n liquidityChange5m\n liquidityChange12h\n liquidityChange24h\n liquidityUsd\n market {\n closesAt\n collateral\n createdAt\n eventId\n exchangeAddress\n id\n imageThumbUrl\n label\n networkId\n opensAt\n protocol\n question\n resolvedAt\n resolvesAt\n status\n tags\n venueEventId\n venueMarketId\n venueMarketSlug\n }\n maxPriceRange1h\n maxPriceRange1w\n maxPriceRange4h\n maxPriceRange5m\n maxPriceRange12h\n maxPriceRange24h\n openInterestCT\n openInterestChange1h\n openInterestChange1w\n openInterestChange4h\n openInterestChange5m\n openInterestChange12h\n openInterestChange24h\n openInterestUsd\n opensAt\n outcome0 {\n bestAskCT\n bestAskUsd\n bestBidCT\n bestBidUsd\n buyVolumeUsd1h\n buyVolumeUsd1w\n buyVolumeUsd4h\n buyVolumeUsd5m\n buyVolumeUsd12h\n buyVolumeUsd24h\n buys1h\n buys1w\n buys4h\n buys5m\n buys12h\n buys24h\n exchangeAddress\n highPriceUsd1h\n highPriceUsd1w\n highPriceUsd4h\n highPriceUsd5m\n highPriceUsd12h\n highPriceUsd24h\n id\n isWinner\n label\n lastPriceCT\n lastPriceUsd\n liquidityCT\n liquidityUsd\n lowPriceUsd1h\n lowPriceUsd1w\n lowPriceUsd4h\n lowPriceUsd5m\n lowPriceUsd12h\n lowPriceUsd24h\n networkId\n priceChange1h\n priceChange1w\n priceChange4h\n priceChange5m\n priceChange12h\n priceChange24h\n priceRange1h\n priceRange1w\n priceRange4h\n priceRange5m\n priceRange12h\n priceRange24h\n sellVolumeUsd1h\n sellVolumeUsd1w\n sellVolumeUsd4h\n sellVolumeUsd5m\n sellVolumeUsd12h\n sellVolumeUsd24h\n sells1h\n sells1w\n sells4h\n sells5m\n sells12h\n sells24h\n spreadCT\n spreadUsd\n tags\n tokenAddress\n trades1h\n trades1w\n trades4h\n trades5m\n trades12h\n trades24h\n tradesChange1h\n tradesChange1w\n tradesChange4h\n tradesChange5m\n tradesChange12h\n tradesChange24h\n twoPercentAskDepthCT\n twoPercentAskDepthUsd\n twoPercentBidDepthCT\n twoPercentBidDepthUsd\n venueOutcomeId\n volumeChange1h\n volumeChange1w\n volumeChange4h\n volumeChange5m\n volumeChange12h\n volumeChange24h\n volumeShares1h\n volumeShares1w\n volumeShares4h\n volumeShares5m\n volumeShares12h\n volumeShares24h\n volumeUsd1h\n volumeUsd1w\n volumeUsd4h\n volumeUsd5m\n volumeUsd12h\n volumeUsd24h\n }\n outcome1 {\n bestAskCT\n bestAskUsd\n bestBidCT\n bestBidUsd\n buyVolumeUsd1h\n buyVolumeUsd1w\n buyVolumeUsd4h\n buyVolumeUsd5m\n buyVolumeUsd12h\n buyVolumeUsd24h\n buys1h\n buys1w\n buys4h\n buys5m\n buys12h\n buys24h\n exchangeAddress\n highPriceUsd1h\n highPriceUsd1w\n highPriceUsd4h\n highPriceUsd5m\n highPriceUsd12h\n highPriceUsd24h\n id\n isWinner\n label\n lastPriceCT\n lastPriceUsd\n liquidityCT\n liquidityUsd\n lowPriceUsd1h\n lowPriceUsd1w\n lowPriceUsd4h\n lowPriceUsd5m\n lowPriceUsd12h\n lowPriceUsd24h\n networkId\n priceChange1h\n priceChange1w\n priceChange4h\n priceChange5m\n priceChange12h\n priceChange24h\n priceRange1h\n priceRange1w\n priceRange4h\n priceRange5m\n priceRange12h\n priceRange24h\n sellVolumeUsd1h\n sellVolumeUsd1w\n sellVolumeUsd4h\n sellVolumeUsd5m\n sellVolumeUsd12h\n sellVolumeUsd24h\n sells1h\n sells1w\n sells4h\n sells5m\n sells12h\n sells24h\n spreadCT\n spreadUsd\n tags\n tokenAddress\n trades1h\n trades1w\n trades4h\n trades5m\n trades12h\n trades24h\n tradesChange1h\n tradesChange1w\n tradesChange4h\n tradesChange5m\n tradesChange12h\n tradesChange24h\n twoPercentAskDepthCT\n twoPercentAskDepthUsd\n twoPercentBidDepthCT\n twoPercentBidDepthUsd\n venueOutcomeId\n volumeChange1h\n volumeChange1w\n volumeChange4h\n volumeChange5m\n volumeChange12h\n volumeChange24h\n volumeShares1h\n volumeShares1w\n volumeShares4h\n volumeShares5m\n volumeShares12h\n volumeShares24h\n volumeUsd1h\n volumeUsd1w\n volumeUsd4h\n volumeUsd5m\n volumeUsd12h\n volumeUsd24h\n }\n predictionMarket {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n eventId\n eventLabel\n exchangeAddress\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n label\n networkId\n observedAt\n opensAt\n outcomeIds\n outcomeLabels\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rules\n rules2\n updatedAt\n venueEventId\n venueMarketId\n venueMarketSlug\n venueOutcomeIds\n winningOutcomeId\n }\n priceCompetitiveness\n protocol\n relevanceScore1h\n relevanceScore1w\n relevanceScore4h\n relevanceScore5m\n relevanceScore12h\n relevanceScore24h\n resolutionSource\n resolvesAt\n status\n timestamp\n trades1h\n trades1w\n trades4h\n trades5m\n trades12h\n trades24h\n tradesChange1h\n tradesChange1w\n tradesChange4h\n tradesChange5m\n tradesChange12h\n tradesChange24h\n trendingScore1h\n trendingScore1w\n trendingScore4h\n trendingScore5m\n trendingScore12h\n trendingScore24h\n uniqueTraders1h\n uniqueTraders1w\n uniqueTraders4h\n uniqueTraders5m\n uniqueTraders12h\n uniqueTraders24h\n uniqueTradersChange1h\n uniqueTradersChange1w\n uniqueTradersChange4h\n uniqueTradersChange5m\n uniqueTradersChange12h\n uniqueTradersChange24h\n venueVolumeCT\n venueVolumeUsd\n volumeCTAll\n volumeChange1h\n volumeChange1w\n volumeChange4h\n volumeChange5m\n volumeChange12h\n volumeChange24h\n volumeImbalance24h\n volumeUsd1h\n volumeUsd1w\n volumeUsd4h\n volumeUsd5m\n volumeUsd12h\n volumeUsd24h\n volumeUsdAll\n winningOutcomeId\n }\n }\n}": types.FilterPredictionMarketsDocument, "query FilterPredictionTraderMarkets($eventIds: [String!], $excludeEventIds: [String!], $excludeMarketIds: [String!], $excludeTraderIds: [String!], $filters: PredictionTraderMarketFilters, $limit: Int, $marketIds: [String!], $offset: Int, $phrase: String, $rankings: [PredictionTraderMarketRanking!], $traderIds: [String!]) {\n filterPredictionTraderMarkets(\n eventIds: $eventIds\n excludeEventIds: $excludeEventIds\n excludeMarketIds: $excludeMarketIds\n excludeTraderIds: $excludeTraderIds\n filters: $filters\n limit: $limit\n marketIds: $marketIds\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n traderIds: $traderIds\n ) {\n count\n page\n results {\n eventId\n firstTradeTimestamp\n hasOpenPosition\n id\n lastTradeTimestamp\n market {\n closesAt\n eventId\n eventLabel\n id\n imageThumbUrl\n label\n outcome0Label\n outcome1Label\n protocol\n question\n resolvedAt\n status\n venueMarketId\n }\n marketId\n outcome0 {\n avgEntryPriceCT\n avgEntryPriceUsd\n buyVolumeCT\n buyVolumeShares\n buyVolumeUsd\n buys\n costBasisCT\n costBasisUsd\n firstTradeTimestamp\n isWinningOutcome\n lastTradeTimestamp\n outcomeId\n pnlStatus\n realizedPnlCT\n realizedPnlUsd\n sellVolumeCT\n sellVolumeShares\n sellVolumeUsd\n sells\n sharesHeld\n }\n outcome1 {\n avgEntryPriceCT\n avgEntryPriceUsd\n buyVolumeCT\n buyVolumeShares\n buyVolumeUsd\n buys\n costBasisCT\n costBasisUsd\n firstTradeTimestamp\n isWinningOutcome\n lastTradeTimestamp\n outcomeId\n pnlStatus\n realizedPnlCT\n realizedPnlUsd\n sellVolumeCT\n sellVolumeShares\n sellVolumeUsd\n sells\n sharesHeld\n }\n pnlPerVolumeMarket\n predictionMarket {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n eventId\n eventLabel\n exchangeAddress\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n label\n networkId\n observedAt\n opensAt\n outcomeIds\n outcomeLabels\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rules\n rules2\n updatedAt\n venueEventId\n venueMarketId\n venueMarketSlug\n venueOutcomeIds\n winningOutcomeId\n }\n predictionTrader {\n activeMarketsCount\n alias\n allTimeProfitCT\n allTimeProfitUsd\n biggestLossCT\n biggestLossUsd\n biggestWinCT\n biggestWinUsd\n createdAt\n firstTradeTimestamp\n id\n labels\n lastTradeTimestamp\n linkedAddresses\n primaryAddress\n profileImageUrl\n profileUrl\n protocol\n totalTradesCount\n totalVolumeCT\n totalVolumeUsd\n updatedAt\n venueTraderId\n }\n profitPerTradeUsd\n timestamp\n totalBuys\n totalCostBasisCT\n totalCostBasisUsd\n totalRealizedPnlCT\n totalRealizedPnlUsd\n totalSells\n totalSharesHeld\n totalTrades\n totalVolumeCT\n totalVolumeShares\n totalVolumeUsd\n trader {\n alias\n id\n labels\n linkedAddresses\n primaryAddress\n profileImageUrl\n profileUrl\n protocol\n venueTraderId\n }\n traderId\n winningOutcomeId\n }\n }\n}": types.FilterPredictionTraderMarketsDocument, "query FilterPredictionTraders($excludeTraderIds: [String!], $filters: PredictionTraderFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [PredictionTraderRanking!], $traderIds: [String!]) {\n filterPredictionTraders(\n excludeTraderIds: $excludeTraderIds\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n traderIds: $traderIds\n ) {\n count\n page\n results {\n activeMarketsCount\n averageProfitUsdPerTrade1m\n averageProfitUsdPerTrade1w\n averageProfitUsdPerTrade12h\n averageProfitUsdPerTrade24h\n averageSwapAmountUsd1m\n averageSwapAmountUsd1w\n averageSwapAmountUsd12h\n averageSwapAmountUsd24h\n biggestLossCT\n biggestLossUsd\n biggestWinCT\n biggestWinUsd\n buyVolumeUsd1m\n buyVolumeUsd1w\n buyVolumeUsd12h\n buyVolumeUsd24h\n buys1m\n buys1w\n buys12h\n buys24h\n firstTradeTimestamp\n heldTokenAcquisitionCostCT\n heldTokenAcquisitionCostUsd\n id\n lastTradeTimestamp\n losses1m\n losses1w\n losses12h\n losses24h\n pnlPerVolumeAll\n predictionTrader {\n activeMarketsCount\n alias\n allTimeProfitCT\n allTimeProfitUsd\n biggestLossCT\n biggestLossUsd\n biggestWinCT\n biggestWinUsd\n createdAt\n firstTradeTimestamp\n id\n labels\n lastTradeTimestamp\n linkedAddresses\n primaryAddress\n profileImageUrl\n profileUrl\n protocol\n totalTradesCount\n totalVolumeCT\n totalVolumeUsd\n updatedAt\n venueTraderId\n }\n profitPerTradeUsdAll\n realizedPnlCT1m\n realizedPnlCT1w\n realizedPnlCT12h\n realizedPnlCT24h\n realizedPnlChange1m\n realizedPnlChange1w\n realizedPnlChange12h\n realizedPnlChange24h\n realizedPnlUsd1m\n realizedPnlUsd1w\n realizedPnlUsd12h\n realizedPnlUsd24h\n realizedProfitPercentage1m\n realizedProfitPercentage1w\n realizedProfitPercentage12h\n realizedProfitPercentage24h\n sellVolumeUsd1m\n sellVolumeUsd1w\n sellVolumeUsd12h\n sellVolumeUsd24h\n sells1m\n sells1w\n sells12h\n sells24h\n timestamp\n totalProfitCTAll\n totalProfitUsdAll\n totalTradesAll\n totalVolumeCTAll\n totalVolumeUsdAll\n trader {\n alias\n id\n labels\n linkedAddresses\n primaryAddress\n profileImageUrl\n profileUrl\n protocol\n venueTraderId\n }\n trades1m\n trades1w\n trades12h\n trades24h\n uniqueMarkets1m\n uniqueMarkets1w\n uniqueMarkets12h\n uniqueMarkets24h\n volumeCT1m\n volumeCT1w\n volumeCT12h\n volumeCT24h\n volumeChange1m\n volumeChange1w\n volumeChange12h\n volumeChange24h\n volumePerTradeUsdAll\n volumeUsd1m\n volumeUsd1w\n volumeUsd12h\n volumeUsd24h\n winRate1m\n winRate1w\n winRate12h\n winRate24h\n wins1m\n wins1w\n wins12h\n wins24h\n }\n }\n}": types.FilterPredictionTradersDocument, "query FilterTokenWallets($input: FilterTokenWalletsInput!) {\n filterTokenWallets(input: $input) {\n count\n offset\n results {\n address\n amountBoughtUsd1d\n amountBoughtUsd1w\n amountBoughtUsd1y\n amountBoughtUsd30d\n amountSoldUsd1d\n amountSoldUsd1w\n amountSoldUsd1y\n amountSoldUsd30d\n amountSoldUsdAll1d\n amountSoldUsdAll1w\n amountSoldUsdAll1y\n amountSoldUsdAll30d\n backfillState\n botScore\n buys1d\n buys1w\n buys1y\n buys30d\n firstTransactionAt\n labels\n lastTransactionAt\n networkId\n purchasedTokenBalance\n realizedProfitPercentage1d\n realizedProfitPercentage1w\n realizedProfitPercentage1y\n realizedProfitPercentage30d\n realizedProfitUsd1d\n realizedProfitUsd1w\n realizedProfitUsd1y\n realizedProfitUsd30d\n scammerScore\n sells1d\n sells1w\n sells1y\n sells30d\n sellsAll1d\n sellsAll1w\n sellsAll1y\n sellsAll30d\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n }\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n }\n tokenAcquisitionCostUsd\n tokenAddress\n tokenAmountBought1d\n tokenAmountBought1w\n tokenAmountBought1y\n tokenAmountBought30d\n tokenAmountSold1d\n tokenAmountSold1w\n tokenAmountSold1y\n tokenAmountSold30d\n tokenAmountSoldAll1d\n tokenAmountSoldAll1w\n tokenAmountSoldAll1y\n tokenAmountSoldAll30d\n tokenBalance\n tokenBalanceLive\n tokenBalanceLiveUsd\n }\n }\n}": types.FilterTokenWalletsDocument, - "query FilterTokens($excludeTokens: [String], $filters: TokenFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [TokenRanking], $statsType: TokenPairStatisticsType, $tokens: [String], $useAggregatedStats: Boolean) {\n filterTokens(\n excludeTokens: $excludeTokens\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n statsType: $statsType\n tokens: $tokens\n useAggregatedStats: $useAggregatedStats\n ) {\n count\n page\n results {\n baseFees1\n baseFees4\n baseFees5m\n baseFees12\n baseFees24\n builderTips1\n builderTips4\n builderTips5m\n builderTips12\n builderTips24\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n buyCount4\n buyCount5m\n buyCount12\n buyCount24\n buyVolume1\n buyVolume4\n buyVolume5m\n buyVolume12\n buyVolume24\n change1\n change4\n change5m\n change12\n change24\n circulatingMarketCap\n createdAt\n devHeldPercentage\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n feeToVolumeRatio1\n feeToVolumeRatio4\n feeToVolumeRatio5m\n feeToVolumeRatio12\n feeToVolumeRatio24\n high1\n high4\n high5m\n high12\n high24\n holders\n insiderCount\n insiderHeldPercentage\n isScam\n l1DataFees1\n l1DataFees4\n l1DataFees5m\n l1DataFees12\n l1DataFees24\n lastTransaction\n liquidPair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n liquidPairLiquidity\n liquidPairPriceUSD\n liquidity\n low1\n low4\n low5m\n low12\n low24\n marketCap\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n poolFees1\n poolFees4\n poolFees5m\n poolFees12\n poolFees24\n potentialScamReasons\n priceUSD\n priorityFees1\n priorityFees4\n priorityFees5m\n priorityFees12\n priorityFees24\n quoteToken\n sellCount1\n sellCount4\n sellCount5m\n sellCount12\n sellCount24\n sellVolume1\n sellVolume4\n sellVolume5m\n sellVolume12\n sellVolume24\n sniperCount\n sniperHeldPercentage\n swapPct1dOldWallet\n swapPct7dOldWallet\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n totalFees1\n totalFees4\n totalFees5m\n totalFees12\n totalFees24\n trendingScore\n txnCount1\n txnCount4\n txnCount5m\n txnCount12\n txnCount24\n uniqueBuys1\n uniqueBuys4\n uniqueBuys5m\n uniqueBuys12\n uniqueBuys24\n uniqueSells1\n uniqueSells4\n uniqueSells5m\n uniqueSells12\n uniqueSells24\n uniqueTransactions1\n uniqueTransactions4\n uniqueTransactions5m\n uniqueTransactions12\n uniqueTransactions24\n volume1\n volume4\n volume5m\n volume12\n volume24\n volumeChange1\n volumeChange4\n volumeChange5m\n volumeChange12\n volumeChange24\n walletAgeAvg\n walletAgeStd\n }\n }\n}": types.FilterTokensDocument, + "query FilterTokens($excludeTokens: [String], $filters: TokenFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [TokenRanking], $statsType: TokenPairStatisticsType, $tokens: [String], $useAggregatedStats: Boolean) {\n filterTokens(\n excludeTokens: $excludeTokens\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n statsType: $statsType\n tokens: $tokens\n useAggregatedStats: $useAggregatedStats\n ) {\n count\n page\n results {\n baseFees1\n baseFees4\n baseFees5m\n baseFees12\n baseFees24\n builderTips1\n builderTips4\n builderTips5m\n builderTips12\n builderTips24\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n buyCount4\n buyCount5m\n buyCount12\n buyCount24\n buyVolume1\n buyVolume4\n buyVolume5m\n buyVolume12\n buyVolume24\n change1\n change4\n change5m\n change12\n change24\n circulatingMarketCap\n createdAt\n devHeldPercentage\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n feeToVolumeRatio1\n feeToVolumeRatio4\n feeToVolumeRatio5m\n feeToVolumeRatio12\n feeToVolumeRatio24\n high1\n high4\n high5m\n high12\n high24\n holders\n insiderCount\n insiderHeldPercentage\n isScam\n l1DataFees1\n l1DataFees4\n l1DataFees5m\n l1DataFees12\n l1DataFees24\n lastTransaction\n liquidPair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n liquidPairLiquidity\n liquidPairPriceUSD\n liquidity\n low1\n low4\n low5m\n low12\n low24\n marketCap\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n poolFees1\n poolFees4\n poolFees5m\n poolFees12\n poolFees24\n potentialScamReasons\n priceUSD\n priorityFees1\n priorityFees4\n priorityFees5m\n priorityFees12\n priorityFees24\n quoteToken\n sellCount1\n sellCount4\n sellCount5m\n sellCount12\n sellCount24\n sellVolume1\n sellVolume4\n sellVolume5m\n sellVolume12\n sellVolume24\n sniperCount\n sniperHeldPercentage\n swapPct1dOldWallet\n swapPct7dOldWallet\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n totalFees1\n totalFees4\n totalFees5m\n totalFees12\n totalFees24\n trendingScore\n txnCount1\n txnCount4\n txnCount5m\n txnCount12\n txnCount24\n uniqueBuys1\n uniqueBuys4\n uniqueBuys5m\n uniqueBuys12\n uniqueBuys24\n uniqueSells1\n uniqueSells4\n uniqueSells5m\n uniqueSells12\n uniqueSells24\n uniqueTransactions1\n uniqueTransactions4\n uniqueTransactions5m\n uniqueTransactions12\n uniqueTransactions24\n volume1\n volume4\n volume5m\n volume12\n volume24\n volumeChange1\n volumeChange4\n volumeChange5m\n volumeChange12\n volumeChange24\n walletAgeAvg\n walletAgeStd\n }\n }\n}": types.FilterTokensDocument, "query FilterWallets($input: FilterWalletsInput!) {\n filterWallets(input: $input) {\n count\n offset\n results {\n address\n averageProfitUsdPerTrade1d\n averageProfitUsdPerTrade1w\n averageProfitUsdPerTrade1y\n averageProfitUsdPerTrade30d\n averageSwapAmountUsd1d\n averageSwapAmountUsd1w\n averageSwapAmountUsd1y\n averageSwapAmountUsd30d\n backfillState\n botScore\n firstTransactionAt\n labels\n lastTransactionAt\n nativeTokenBalance\n networkId\n realizedProfitPercentage1d\n realizedProfitPercentage1w\n realizedProfitPercentage1y\n realizedProfitPercentage30d\n realizedProfitUsd1d\n realizedProfitUsd1w\n realizedProfitUsd1y\n realizedProfitUsd30d\n scammerScore\n swaps1d\n swaps1w\n swaps1y\n swaps30d\n swapsAll1d\n swapsAll1w\n swapsAll1y\n swapsAll30d\n uniqueTokens1d\n uniqueTokens1w\n uniqueTokens1y\n uniqueTokens30d\n volumeUsd1d\n volumeUsd1w\n volumeUsd1y\n volumeUsd30d\n volumeUsdAll1d\n volumeUsdAll1w\n volumeUsdAll1y\n volumeUsdAll30d\n wallet {\n address\n avatarUrl\n description\n discordId\n discordUsername\n displayName\n ethosLevel\n ethosScore\n ethosVerified\n farcasterId\n farcasterUsername\n firstFunding {\n amount\n fundedAt\n fundedByAddress\n fundedByLabel\n networkId\n tokenAddress\n transactionHash\n }\n firstSeenTimestamp\n githubId\n githubUsername\n identityLabels\n identitySource\n identityUpdatedAt\n telegramId\n telegramUsername\n twitterId\n twitterUsername\n website\n }\n winRate1d\n winRate1w\n winRate1y\n winRate30d\n }\n }\n}": types.FilterWalletsDocument, - "query GetBars($countback: Int, $currencyCode: String, $from: Int!, $quoteToken: QuoteToken, $removeEmptyBars: Boolean, $removeLeadingNullValues: Boolean, $resolution: String!, $statsType: TokenPairStatisticsType, $symbol: String!, $symbolType: SymbolType, $to: Int!) {\n getBars(\n countback: $countback\n currencyCode: $currencyCode\n from: $from\n quoteToken: $quoteToken\n removeEmptyBars: $removeEmptyBars\n removeLeadingNullValues: $removeLeadingNullValues\n resolution: $resolution\n statsType: $statsType\n symbol: $symbol\n symbolType: $symbolType\n to: $to\n ) {\n averageCostPerTrade\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n feeRegimeClassification\n feeToVolumeRatio\n gasPerVolume\n h\n l\n l1DataFees\n liquidity\n mevRiskLevel\n mevToTotalFeesRatio\n o\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n poolFees\n priorityFees\n s\n sandwichRate\n sellVolume\n sellers\n sells\n t\n totalFees\n traders\n transactions\n volume\n volumeNativeToken\n }\n}": types.GetBarsDocument, - "query GetCommunityNotes($input: CommunityNotesInput) {\n getCommunityNotes(input: $input) {\n count\n cursor\n items {\n address\n contractType\n currentContract {\n ... on EnhancedNftContract {\n address\n description\n ercType\n id\n image\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n totalSupply\n }\n ... on EnhancedToken {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n currentData\n id\n moderatedAt\n networkId\n previousData\n proposalData\n proposalNum\n proposalType\n proposedAt\n sortKey\n status\n }\n }\n}": types.GetCommunityNotesDocument, - "query GetDetailedPairStats($bucketCount: Int, $durations: [DetailedPairStatsDuration], $networkId: Int!, $pairAddress: String!, $statsType: TokenPairStatisticsType, $timestamp: Int, $tokenOfInterest: TokenOfInterest) {\n getDetailedPairStats(\n bucketCount: $bucketCount\n durations: $durations\n networkId: $networkId\n pairAddress: $pairAddress\n statsType: $statsType\n timestamp: $timestamp\n tokenOfInterest: $tokenOfInterest\n ) {\n bucketCount\n lastTransaction\n networkId\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n pairAddress\n queryTimestamp\n statsType\n stats_day1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_day30 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour4 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour12 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min5 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min15 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_week1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n tokenOfInterest\n }\n}": types.GetDetailedPairStatsDocument, - "query GetDetailedPairsStats($input: [GetDetailedPairsStatsInput!]!) {\n getDetailedPairsStats(input: $input) {\n bucketCount\n lastTransaction\n networkId\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n pairAddress\n queryTimestamp\n statsType\n stats_day1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_day30 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour4 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour12 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min5 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min15 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_week1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n tokenOfInterest\n }\n}": types.GetDetailedPairsStatsDocument, + "query GetBars($countback: Int, $currencyCode: String, $from: Int!, $quoteToken: QuoteToken, $removeEmptyBars: Boolean, $removeLeadingNullValues: Boolean, $resolution: String!, $statsType: TokenPairStatisticsType, $symbol: String!, $symbolType: SymbolType, $to: Int!) {\n getBars(\n countback: $countback\n currencyCode: $currencyCode\n from: $from\n quoteToken: $quoteToken\n removeEmptyBars: $removeEmptyBars\n removeLeadingNullValues: $removeLeadingNullValues\n resolution: $resolution\n statsType: $statsType\n symbol: $symbol\n symbolType: $symbolType\n to: $to\n ) {\n averageCostPerTrade\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n feeRegimeClassification\n feeToVolumeRatio\n gasPerVolume\n h\n l\n l1DataFees\n liquidity\n mevRiskLevel\n mevToTotalFeesRatio\n o\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n poolFees\n priorityFees\n s\n sandwichRate\n sellVolume\n sellers\n sells\n t\n totalFees\n traders\n transactions\n volume\n volumeNativeToken\n }\n}": types.GetBarsDocument, + "query GetCommunityNotes($input: CommunityNotesInput) {\n getCommunityNotes(input: $input) {\n count\n cursor\n items {\n address\n contractType\n currentContract {\n ... on EnhancedNftContract {\n address\n description\n ercType\n id\n image\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n totalSupply\n }\n ... on EnhancedToken {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n currentData\n id\n moderatedAt\n networkId\n previousData\n proposalData\n proposalNum\n proposalType\n proposedAt\n sortKey\n status\n }\n }\n}": types.GetCommunityNotesDocument, + "query GetDetailedPairStats($bucketCount: Int, $durations: [DetailedPairStatsDuration], $networkId: Int!, $pairAddress: String!, $statsType: TokenPairStatisticsType, $timestamp: Int, $tokenOfInterest: TokenOfInterest) {\n getDetailedPairStats(\n bucketCount: $bucketCount\n durations: $durations\n networkId: $networkId\n pairAddress: $pairAddress\n statsType: $statsType\n timestamp: $timestamp\n tokenOfInterest: $tokenOfInterest\n ) {\n bucketCount\n lastTransaction\n networkId\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n pairAddress\n queryTimestamp\n statsType\n stats_day1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_day30 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour4 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour12 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min5 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min15 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_week1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n tokenOfInterest\n }\n}": types.GetDetailedPairStatsDocument, + "query GetDetailedPairsStats($input: [GetDetailedPairsStatsInput!]!) {\n getDetailedPairsStats(input: $input) {\n bucketCount\n lastTransaction\n networkId\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n pairAddress\n queryTimestamp\n statsType\n stats_day1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_day30 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour4 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour12 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min5 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min15 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_week1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n tokenOfInterest\n }\n}": types.GetDetailedPairsStatsDocument, "query GetDetailedTokenStats($bucketCount: Int, $durations: [DetailedTokenStatsDuration], $networkId: Int!, $statsType: TokenPairStatisticsType, $timestamp: Int, $tokenAddress: String!) {\n getDetailedTokenStats(\n bucketCount: $bucketCount\n durations: $durations\n networkId: $networkId\n statsType: $statsType\n timestamp: $timestamp\n tokenAddress: $tokenAddress\n ) {\n bucketCount\n lastTransactionAt\n networkId\n queryTimestamp\n statsType\n stats_day1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour4 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour12 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min5 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n tokenAddress\n tokenId\n }\n}": types.GetDetailedTokenStatsDocument, "query GetEventLabels($cursor: String, $direction: RankingDirection, $id: String!, $limit: Int) {\n getEventLabels(cursor: $cursor, direction: $direction, id: $id, limit: $limit) {\n cursor\n items {\n data {\n ... on FrontRunLabelData {\n index\n token0DrainedAmountFrontRun: token0DrainedAmount\n token1DrainedAmountFrontRun: token1DrainedAmount\n }\n ... on SandwichedLabelData {\n token0DrainedAmount\n token1DrainedAmount\n }\n }\n id\n label\n logIndex\n networkId\n timestamp\n transactionHash\n transactionIndex\n }\n }\n}": types.GetEventLabelsDocument, "query GetExchanges($showNameless: Boolean) {\n getExchanges(showNameless: $showNameless) {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n}": types.GetExchangesDocument, @@ -151,18 +150,18 @@ const documents: Documents = { "query GetNetworkStatus($networkIds: [Int!]!) {\n getNetworkStatus(networkIds: $networkIds) {\n lastProcessedBlock\n lastProcessedTimestamp\n networkId\n networkName\n }\n}": types.GetNetworkStatusDocument, "query GetNetworks {\n getNetworks {\n id\n name\n networkShortName\n }\n}": types.GetNetworksDocument, "query GetSymbol($currencyCode: String, $symbol: String!) {\n getSymbol(currencyCode: $currencyCode, symbol: $symbol) {\n currency_code\n description\n name\n original_currency_code\n pricescale\n supported_resolutions\n ticker\n }\n}": types.GetSymbolDocument, - "query GetTokenBars($countback: Int, $currencyCode: QuoteCurrency, $from: Int!, $removeEmptyBars: Boolean, $removeLeadingNullValues: Boolean, $resolution: String!, $statsType: TokenPairStatisticsType, $symbol: String!, $to: Int!) {\n getTokenBars(\n countback: $countback\n currencyCode: $currencyCode\n from: $from\n removeEmptyBars: $removeEmptyBars\n removeLeadingNullValues: $removeLeadingNullValues\n resolution: $resolution\n statsType: $statsType\n symbol: $symbol\n to: $to\n ) {\n averageCostPerTrade\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n feeRegimeClassification\n feeToVolumeRatio\n gasPerVolume\n h\n l\n l1DataFees\n liquidity\n mevRiskLevel\n mevToTotalFeesRatio\n o\n poolFees\n priorityFees\n s\n sandwichRate\n sellVolume\n sellers\n sells\n t\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n totalFees\n traders\n transactions\n volume\n volumeNativeToken\n }\n}": types.GetTokenBarsDocument, - "query GetTokenEvents($cursor: String, $direction: RankingDirection, $limit: Int, $query: EventsQueryInput!) {\n getTokenEvents(\n cursor: $cursor\n direction: $direction\n limit: $limit\n query: $query\n ) {\n cursor\n items {\n address\n baseTokenPrice\n blockHash\n blockNumber\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n }\n}": types.GetTokenEventsDocument, - "query GetTokenEventsForMaker($cursor: String, $direction: RankingDirection, $limit: Int, $query: MakerEventsQueryInput!) {\n getTokenEventsForMaker(\n cursor: $cursor\n direction: $direction\n limit: $limit\n query: $query\n ) {\n cursor\n items {\n address\n baseTokenPrice\n blockHash\n blockNumber\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n }\n}": types.GetTokenEventsForMakerDocument, + "query GetTokenBars($countback: Int, $currencyCode: QuoteCurrency, $from: Int!, $removeEmptyBars: Boolean, $removeLeadingNullValues: Boolean, $resolution: String!, $statsType: TokenPairStatisticsType, $symbol: String!, $to: Int!) {\n getTokenBars(\n countback: $countback\n currencyCode: $currencyCode\n from: $from\n removeEmptyBars: $removeEmptyBars\n removeLeadingNullValues: $removeLeadingNullValues\n resolution: $resolution\n statsType: $statsType\n symbol: $symbol\n to: $to\n ) {\n averageCostPerTrade\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n feeRegimeClassification\n feeToVolumeRatio\n gasPerVolume\n h\n l\n l1DataFees\n liquidity\n mevRiskLevel\n mevToTotalFeesRatio\n o\n poolFees\n priorityFees\n s\n sandwichRate\n sellVolume\n sellers\n sells\n t\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n totalFees\n traders\n transactions\n volume\n volumeNativeToken\n }\n}": types.GetTokenBarsDocument, + "query GetTokenEvents($cursor: String, $direction: RankingDirection, $limit: Int, $query: EventsQueryInput!) {\n getTokenEvents(\n cursor: $cursor\n direction: $direction\n limit: $limit\n query: $query\n ) {\n cursor\n items {\n address\n baseTokenPrice\n blockHash\n blockNumber\n commitmentLevel\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n supplementalIndex\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n }\n}": types.GetTokenEventsDocument, + "query GetTokenEventsForMaker($cursor: String, $direction: RankingDirection, $limit: Int, $query: MakerEventsQueryInput!) {\n getTokenEventsForMaker(\n cursor: $cursor\n direction: $direction\n limit: $limit\n query: $query\n ) {\n cursor\n items {\n address\n baseTokenPrice\n blockHash\n blockNumber\n commitmentLevel\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n supplementalIndex\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n }\n}": types.GetTokenEventsForMakerDocument, "query GetTokenPrices($inputs: [GetPriceInput]) {\n getTokenPrices(inputs: $inputs) {\n address\n blockNumber\n networkId\n priceUsd\n timestamp\n }\n}": types.GetTokenPricesDocument, "query GetWebhooks($bucketId: String, $bucketSortkey: String, $cursor: String, $limit: Int, $webhookId: String) {\n getWebhooks(\n bucketId: $bucketId\n bucketSortkey: $bucketSortkey\n cursor: $cursor\n limit: $limit\n webhookId: $webhookId\n ) {\n cursor\n items {\n alertRecurrence\n bucketId\n bucketSortkey\n callbackUrl\n conditions {\n ... on NftEventWebhookCondition {\n contractAddress {\n eq\n }\n eventType {\n eq\n }\n exchangeAddress {\n eq\n }\n fillSource {\n oneOf\n }\n ignoreTransfers\n individualBaseTokenPrice {\n eq\n gt\n gte\n lt\n lte\n }\n maker {\n eq\n }\n networkId {\n oneOf\n }\n tokenAddress {\n eq\n }\n tokenId {\n eq\n }\n }\n ... on PriceEventWebhookCondition {\n priceNetworkId: networkId {\n eq\n }\n priceUsd {\n eq\n gt\n gte\n lt\n lte\n }\n priceTokenAddress: tokenAddress {\n eq\n }\n }\n ... on RawTransactionWebhookCondition {\n from {\n eq\n }\n ignoreNftEvents\n ignoreTokenPairEvents\n input {\n contains\n notContains\n }\n networkId {\n oneOf\n }\n to {\n eq\n }\n toOrFrom {\n eq\n }\n }\n ... on TokenPairEventWebhookCondition {\n eventType {\n oneOf\n }\n exchangeAddress {\n eq\n }\n maker {\n eq\n }\n networkId {\n oneOf\n }\n pairAddress {\n eq\n }\n swapValue {\n eq\n gt\n gte\n lt\n lte\n }\n tokenAddress {\n eq\n }\n }\n }\n created\n groupId\n id\n name\n publishingType\n retrySettings {\n maxRetries\n maxRetryDelay\n maxTimeElapsed\n minRetryDelay\n }\n status\n webhookType\n }\n }\n}": types.GetWebhooksDocument, - "query Holders($input: HoldersInput!) {\n holders(input: $input) {\n count\n cursor\n items {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n status\n top10HoldersPercent\n }\n}": types.HoldersDocument, + "query Holders($input: HoldersInput!) {\n holders(input: $input) {\n count\n cursor\n items {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n status\n top10HoldersPercent\n }\n}": types.HoldersDocument, "query LiquidityLocks($cursor: String, $networkId: Int!, $pairAddress: String, $tokenAddress: String) {\n liquidityLocks(\n cursor: $cursor\n networkId: $networkId\n pairAddress: $pairAddress\n tokenAddress: $tokenAddress\n ) {\n cursor\n items {\n createdAt\n initialAmountToken0\n initialAmountToken1\n liquidityAmount\n liquidityNftData {\n nftPositionManagerAddress\n nftTokenId\n }\n liquidityProtocolV2\n lockProtocol\n lockerAddress\n networkId\n ownerAddress\n pairAddress\n unlockAt\n }\n pairLiquidityData {\n networkId\n pairAddress\n pairId\n totalLiquidity\n }\n }\n}": types.LiquidityLocksDocument, "query LiquidityMetadata($networkId: Int!, $pairAddress: String!) {\n liquidityMetadata(networkId: $networkId, pairAddress: $pairAddress) {\n liquidity {\n active\n inactive\n }\n lockedLiquidity {\n active\n inactive\n lockBreakdown {\n active\n inactive\n lockProtocol\n }\n }\n }\n}": types.LiquidityMetadataDocument, "query LiquidityMetadataByToken($networkId: Int!, $tokenAddress: String!) {\n liquidityMetadataByToken(networkId: $networkId, tokenAddress: $tokenAddress) {\n lockBreakdown {\n amountLockedTokens\n amountLockedTokensShifted\n amountLockedUsd\n lockProtocol\n }\n lockedLiquidityPercentage\n lockedLiquidityUsd\n lockedTokenLiquidity\n lockedTokenLiquidityShifted\n networkId\n tokenAddress\n totalLiquidityUsd\n totalTokenLiquidity\n totalTokenLiquidityShifted\n }\n}": types.LiquidityMetadataByTokenDocument, - "query ListPairsForToken($limit: Int, $networkId: Int!, $tokenAddress: String!) {\n listPairsForToken(\n limit: $limit\n networkId: $networkId\n tokenAddress: $tokenAddress\n ) {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n}": types.ListPairsForTokenDocument, - "query ListPairsWithMetadataForToken($limit: Int, $networkId: Int!, $tokenAddress: String!) {\n listPairsWithMetadataForToken(\n limit: $limit\n networkId: $networkId\n tokenAddress: $tokenAddress\n ) {\n results {\n backingToken {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n exchange {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n liquidity\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n quoteToken\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n volume\n }\n }\n}": types.ListPairsWithMetadataForTokenDocument, - "query PairMetadata($pairId: String!, $quoteToken: QuoteToken, $statsType: TokenPairStatisticsType) {\n pairMetadata(pairId: $pairId, quoteToken: $quoteToken, statsType: $statsType) {\n createdAt\n enhancedToken0 {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n enhancedToken1 {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n exchangeId\n fee\n highPrice1\n highPrice4\n highPrice5m\n highPrice12\n highPrice24\n id\n liquidity\n liquidityToken\n lowPrice1\n lowPrice4\n lowPrice5m\n lowPrice12\n lowPrice24\n networkId\n nonLiquidityToken\n pairAddress\n price\n priceChange1\n priceChange4\n priceChange5m\n priceChange12\n priceChange24\n priceNonQuoteToken\n quoteToken\n statsType\n tickSpacing\n token0 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n token1 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n top10HoldersPercent\n volume1\n volume4\n volume5m\n volume12\n volume24\n walletActivity {\n bundlerCount\n bundlerHeldPercentage\n devHeldPercentage\n insiderCount\n insiderHeldPercentage\n sniperCount\n sniperHeldPercentage\n }\n }\n}": types.PairMetadataDocument, + "query ListPairsForToken($limit: Int, $networkId: Int!, $tokenAddress: String!) {\n listPairsForToken(\n limit: $limit\n networkId: $networkId\n tokenAddress: $tokenAddress\n ) {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n}": types.ListPairsForTokenDocument, + "query ListPairsWithMetadataForToken($limit: Int, $networkId: Int!, $tokenAddress: String!) {\n listPairsWithMetadataForToken(\n limit: $limit\n networkId: $networkId\n tokenAddress: $tokenAddress\n ) {\n results {\n backingToken {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n exchange {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n liquidity\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n quoteToken\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n volume\n }\n }\n}": types.ListPairsWithMetadataForTokenDocument, + "query PairMetadata($pairId: String!, $quoteToken: QuoteToken, $statsType: TokenPairStatisticsType) {\n pairMetadata(pairId: $pairId, quoteToken: $quoteToken, statsType: $statsType) {\n createdAt\n enhancedToken0 {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n enhancedToken1 {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n exchangeId\n fee\n highPrice1\n highPrice4\n highPrice5m\n highPrice12\n highPrice24\n id\n liquidity\n liquidityToken\n lowPrice1\n lowPrice4\n lowPrice5m\n lowPrice12\n lowPrice24\n networkId\n nonLiquidityToken\n pairAddress\n price\n priceChange1\n priceChange4\n priceChange5m\n priceChange12\n priceChange24\n priceNonQuoteToken\n quoteToken\n statsType\n tickSpacing\n token0 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n token1 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n top10HoldersPercent\n volume1\n volume4\n volume5m\n volume12\n volume24\n walletActivity {\n bundlerCount\n bundlerHeldPercentage\n devHeldPercentage\n insiderCount\n insiderHeldPercentage\n sniperCount\n sniperHeldPercentage\n }\n }\n}": types.PairMetadataDocument, "query PredictionCategories {\n predictionCategories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n}": types.PredictionCategoriesDocument, "query PredictionEventBars($input: PredictionEventBarsInput!) {\n predictionEventBars(input: $input) {\n bars {\n buyVolumeCollateralToken\n buyVolumeUsd\n lastEventTimestamp\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n openInterestCollateralToken {\n c\n h\n l\n o\n }\n openInterestUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeUsd\n t\n totalVolumeCollateralToken\n totalVolumeUsd\n trades\n uniqueTraders\n venueVolumeCollateralToken\n venueVolumeUsd\n volumeCollateralToken\n volumeUsd\n }\n eventId\n predictionEvent {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n marketIds\n networkId\n opensAt\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rulesPrimary\n rulesSecondary\n status\n tags\n updatedAt\n url\n venueEventId\n venueSeriesId\n }\n predictionMarkets {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n eventId\n eventLabel\n exchangeAddress\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n label\n networkId\n observedAt\n opensAt\n outcomeIds\n outcomeLabels\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rules\n rules2\n updatedAt\n venueEventId\n venueMarketId\n venueMarketSlug\n venueOutcomeIds\n winningOutcomeId\n }\n }\n}": types.PredictionEventBarsDocument, "query PredictionEventTopMarketsBars($input: PredictionEventTopMarketsBarsInput!) {\n predictionEventTopMarketsBars(input: $input) {\n eventId\n marketBars {\n bars {\n allTimeVolumeCollateralToken\n allTimeVolumeUsd\n lastEventTimestamp\n openInterestUsd {\n c\n h\n l\n o\n }\n outcome0 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n outcome1 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n t\n trades\n uniqueTraders\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n marketId\n predictionEvent {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n marketIds\n networkId\n opensAt\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rulesPrimary\n rulesSecondary\n status\n tags\n updatedAt\n url\n venueEventId\n venueSeriesId\n }\n predictionMarket {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n eventId\n eventLabel\n exchangeAddress\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n label\n networkId\n observedAt\n opensAt\n outcomeIds\n outcomeLabels\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rules\n rules2\n updatedAt\n venueEventId\n venueMarketId\n venueMarketSlug\n venueOutcomeIds\n winningOutcomeId\n }\n }\n predictionEvent {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n marketIds\n networkId\n opensAt\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rulesPrimary\n rulesSecondary\n status\n tags\n updatedAt\n url\n venueEventId\n venueSeriesId\n }\n }\n}": types.PredictionEventTopMarketsBarsDocument, @@ -175,41 +174,40 @@ const documents: Documents = { "query PredictionTraderMarketsStats($input: PredictionTraderMarketsStatsInput!) {\n predictionTraderMarketsStats(input: $input) {\n cursor\n items {\n createdAt\n hasOpenPosition\n marketId\n outcome0Stats {\n avgEntryPriceCT\n avgEntryPriceUsd\n buyVolumeCT\n buyVolumeShares\n buyVolumeUsd\n buys\n costBasisCT\n costBasisUsd\n firstTradeTimestamp\n lastTradeTimestamp\n outcomeId\n pnlStatus\n realizedPnlCT\n realizedPnlUsd\n sellVolumeCT\n sellVolumeShares\n sellVolumeUsd\n sells\n sharesHeld\n }\n outcome1Stats {\n avgEntryPriceCT\n avgEntryPriceUsd\n buyVolumeCT\n buyVolumeShares\n buyVolumeUsd\n buys\n costBasisCT\n costBasisUsd\n firstTradeTimestamp\n lastTradeTimestamp\n outcomeId\n pnlStatus\n realizedPnlCT\n realizedPnlUsd\n sellVolumeCT\n sellVolumeShares\n sellVolumeUsd\n sells\n sharesHeld\n }\n predictionMarket {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n eventId\n eventLabel\n exchangeAddress\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n label\n networkId\n observedAt\n opensAt\n outcomeIds\n outcomeLabels\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rules\n rules2\n updatedAt\n venueEventId\n venueMarketId\n venueMarketSlug\n venueOutcomeIds\n winningOutcomeId\n }\n traderId\n updatedAt\n }\n }\n}": types.PredictionTraderMarketsStatsDocument, "query PredictionTraders($input: PredictionTradersInput!) {\n predictionTraders(input: $input) {\n activeMarketsCount\n alias\n allTimeProfitCT\n allTimeProfitUsd\n biggestLossCT\n biggestLossUsd\n biggestWinCT\n biggestWinUsd\n createdAt\n firstTradeTimestamp\n id\n labels\n lastTradeTimestamp\n linkedAddresses\n primaryAddress\n profileImageUrl\n profileUrl\n protocol\n totalTradesCount\n totalVolumeCT\n totalVolumeUsd\n updatedAt\n venueTraderId\n }\n}": types.PredictionTradersDocument, "query PredictionTrades($input: PredictionTradesInput!) {\n predictionTrades(input: $input) {\n cursor\n items {\n amount\n amountCollateral\n amountUsd\n blockNumber\n exchangeAddress\n maker\n marketId\n networkId\n outcomeId\n outcomeIndex\n outcomeLabel\n predictionMarket {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n eventId\n eventLabel\n exchangeAddress\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n label\n networkId\n observedAt\n opensAt\n outcomeIds\n outcomeLabels\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rules\n rules2\n updatedAt\n venueEventId\n venueMarketId\n venueMarketSlug\n venueOutcomeIds\n winningOutcomeId\n }\n priceCollateral\n priceUsd\n protocol\n sortKey\n timestamp\n tradeType\n traderId\n transactionHash\n transactionId\n }\n }\n}": types.PredictionTradesDocument, - "query Token($input: TokenInput!) {\n token(input: $input) {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n}": types.TokenDocument, + "query Token($input: TokenInput!) {\n token(input: $input) {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n}": types.TokenDocument, "query TokenLifecycleEvents($cursor: String, $limit: Int, $query: TokenLifecycleEventsQueryInput!) {\n tokenLifecycleEvents(cursor: $cursor, limit: $limit, query: $query) {\n cursor\n items {\n blockHash\n blockNumber\n data {\n ... on TokenBurnEventData {\n amount\n circulatingSupply\n totalSupply\n }\n ... on TokenMintEventData {\n amount\n circulatingSupply\n totalSupply\n }\n }\n eventType\n id\n logIndex\n maker\n networkId\n timestamp\n tokenAddress\n transactionHash\n transactionIndex\n }\n }\n}": types.TokenLifecycleEventsDocument, "query TokenSparklines($input: TokenSparklineInput!) {\n tokenSparklines(input: $input) {\n attribute\n id\n resolution\n sparkline {\n timestamp\n value\n }\n }\n}": types.TokenSparklinesDocument, "query TokenTopTraders($input: TokenTopTradersInput!) {\n tokenTopTraders(input: $input) {\n items {\n amountBoughtUsd\n amountSoldUsd\n buys\n firstTransactionAt\n lastTransactionAt\n networkId\n realizedProfitPercentage\n realizedProfitUsd\n sells\n singleTokenAcquisitionCostUsd\n tokenAddress\n tokenAmountBought\n tokenAmountSold\n tokenBalance\n volumeUsd\n walletAddress\n }\n networkId\n offset\n tokenAddress\n tradingPeriod\n }\n}": types.TokenTopTradersDocument, - "query Tokens($ids: [TokenInput!]) {\n tokens(ids: $ids) {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n}": types.TokensDocument, + "query Tokens($ids: [TokenInput!]) {\n tokens(ids: $ids) {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n}": types.TokensDocument, "query Top10HoldersPercent($tokenId: String!) {\n top10HoldersPercent(tokenId: $tokenId)\n}": types.Top10HoldersPercentDocument, "query WalletAggregateBackfillState($input: WalletAggregateBackfillStateInput!) {\n walletAggregateBackfillState(input: $input) {\n status\n walletAddress\n }\n}": types.WalletAggregateBackfillStateDocument, "query WalletChart($input: WalletChartInput!) {\n walletChart(input: $input) {\n backfillState\n data {\n realizedProfitUsd\n resolution\n swaps\n timestamp\n volumeUsd\n volumeUsdAll\n }\n networkId\n range {\n end\n start\n }\n resolution\n walletAddress\n }\n}": types.WalletChartDocument, - "subscription OnBalanceUpdated($walletAddress: String!) {\n onBalanceUpdated(walletAddress: $walletAddress) {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n}": types.OnBalanceUpdatedDocument, - "subscription OnBarsUpdated($pairId: String, $quoteToken: QuoteToken) {\n onBarsUpdated(pairId: $pairId, quoteToken: $quoteToken) {\n aggregates {\n r1 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r1D {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r1S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r5 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r5S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r7D {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r15 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r15S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r30 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r30S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r60 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r240 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r720 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n }\n eventSortKey\n networkId\n pairAddress\n pairId\n quoteToken\n quoteTokenAddress\n statsType\n timestamp\n }\n}": types.OnBarsUpdatedDocument, + "subscription OnBalanceUpdated($walletAddress: String!) {\n onBalanceUpdated(walletAddress: $walletAddress) {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n}": types.OnBalanceUpdatedDocument, + "subscription OnBarsUpdated($commitmentLevel: [BarCommitmentLevel!], $pairId: String, $quoteToken: QuoteToken) {\n onBarsUpdated(\n commitmentLevel: $commitmentLevel\n pairId: $pairId\n quoteToken: $quoteToken\n ) {\n aggregates {\n r1 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r1D {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r1S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r5 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r5S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r7D {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r15 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r15S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r30 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r30S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r60 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r240 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r720 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n }\n commitmentLevel\n eventSortKey\n networkId\n pairAddress\n pairId\n quoteToken\n quoteTokenAddress\n statsType\n timestamp\n }\n}": types.OnBarsUpdatedDocument, "subscription OnDetailedPredictionEventStatsUpdated($eventId: String!) {\n onDetailedPredictionEventStatsUpdated(eventId: $eventId) {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n eventId\n lastTransactionAt\n lifecycle {\n ageSeconds\n expectedLifespanSeconds\n isResolved\n timeToResolutionSeconds\n winningOutcomeId\n }\n relevanceScores {\n score1\n score1w\n score4\n score5m\n score12\n score24\n }\n statsDay1 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n buySell {\n buyVolume {\n ct\n usd\n }\n sellVolume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n buyVolumeChange\n liquidityChange\n openInterestChange\n sellVolumeChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsHour1 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n buySell {\n buyVolume {\n ct\n usd\n }\n sellVolume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n buyVolumeChange\n liquidityChange\n openInterestChange\n sellVolumeChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsHour4 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n buySell {\n buyVolume {\n ct\n usd\n }\n sellVolume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n buyVolumeChange\n liquidityChange\n openInterestChange\n sellVolumeChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsHour12 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n buySell {\n buyVolume {\n ct\n usd\n }\n sellVolume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n buyVolumeChange\n liquidityChange\n openInterestChange\n sellVolumeChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsMin5 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n buySell {\n buyVolume {\n ct\n usd\n }\n sellVolume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n buyVolumeChange\n liquidityChange\n openInterestChange\n sellVolumeChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsWeek1 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n buySell {\n buyVolume {\n ct\n usd\n }\n sellVolume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n buyVolumeChange\n liquidityChange\n openInterestChange\n sellVolumeChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n trendingScores {\n score1\n score1w\n score4\n score5m\n score12\n score24\n }\n }\n}": types.OnDetailedPredictionEventStatsUpdatedDocument, "subscription OnDetailedPredictionMarketStatsUpdated($marketId: String!) {\n onDetailedPredictionMarketStatsUpdated(marketId: $marketId) {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n competitiveScores {\n score1\n score1w\n score4\n score5m\n score12\n score24\n }\n lastTransactionAt\n lifecycle {\n ageSeconds\n expectedLifespanSeconds\n isResolved\n timeToResolutionSeconds\n winningOutcomeId\n }\n marketId\n relevanceScores {\n score1\n score1w\n score4\n score5m\n score12\n score24\n }\n statsDay1 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n outcome0Stats {\n buySell {\n buyVolume {\n ct\n shares\n usd\n }\n buys\n sellVolume {\n ct\n shares\n usd\n }\n sells\n }\n core {\n price {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n trades\n venueOutcomeId\n volume {\n ct\n shares\n usd\n }\n }\n depth {\n askDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bidDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n orderbook {\n ask {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bid {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n statsChange {\n buysChange\n liquidityChange\n priceChange\n priceRange\n sellsChange\n tradesChange\n volumeChange\n volumeSharesChange\n }\n }\n outcome1Stats {\n buySell {\n buyVolume {\n ct\n shares\n usd\n }\n buys\n sellVolume {\n ct\n shares\n usd\n }\n sells\n }\n core {\n price {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n trades\n venueOutcomeId\n volume {\n ct\n shares\n usd\n }\n }\n depth {\n askDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bidDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n orderbook {\n ask {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bid {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n statsChange {\n buysChange\n liquidityChange\n priceChange\n priceRange\n sellsChange\n tradesChange\n volumeChange\n volumeSharesChange\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n liquidityChange\n openInterestChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsHour1 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n outcome0Stats {\n buySell {\n buyVolume {\n ct\n shares\n usd\n }\n buys\n sellVolume {\n ct\n shares\n usd\n }\n sells\n }\n core {\n price {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n trades\n venueOutcomeId\n volume {\n ct\n shares\n usd\n }\n }\n depth {\n askDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bidDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n orderbook {\n ask {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bid {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n statsChange {\n buysChange\n liquidityChange\n priceChange\n priceRange\n sellsChange\n tradesChange\n volumeChange\n volumeSharesChange\n }\n }\n outcome1Stats {\n buySell {\n buyVolume {\n ct\n shares\n usd\n }\n buys\n sellVolume {\n ct\n shares\n usd\n }\n sells\n }\n core {\n price {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n trades\n venueOutcomeId\n volume {\n ct\n shares\n usd\n }\n }\n depth {\n askDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bidDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n orderbook {\n ask {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bid {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n statsChange {\n buysChange\n liquidityChange\n priceChange\n priceRange\n sellsChange\n tradesChange\n volumeChange\n volumeSharesChange\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n liquidityChange\n openInterestChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsHour4 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n outcome0Stats {\n buySell {\n buyVolume {\n ct\n shares\n usd\n }\n buys\n sellVolume {\n ct\n shares\n usd\n }\n sells\n }\n core {\n price {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n trades\n venueOutcomeId\n volume {\n ct\n shares\n usd\n }\n }\n depth {\n askDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bidDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n orderbook {\n ask {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bid {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n statsChange {\n buysChange\n liquidityChange\n priceChange\n priceRange\n sellsChange\n tradesChange\n volumeChange\n volumeSharesChange\n }\n }\n outcome1Stats {\n buySell {\n buyVolume {\n ct\n shares\n usd\n }\n buys\n sellVolume {\n ct\n shares\n usd\n }\n sells\n }\n core {\n price {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n trades\n venueOutcomeId\n volume {\n ct\n shares\n usd\n }\n }\n depth {\n askDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bidDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n orderbook {\n ask {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bid {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n statsChange {\n buysChange\n liquidityChange\n priceChange\n priceRange\n sellsChange\n tradesChange\n volumeChange\n volumeSharesChange\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n liquidityChange\n openInterestChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsHour12 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n outcome0Stats {\n buySell {\n buyVolume {\n ct\n shares\n usd\n }\n buys\n sellVolume {\n ct\n shares\n usd\n }\n sells\n }\n core {\n price {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n trades\n venueOutcomeId\n volume {\n ct\n shares\n usd\n }\n }\n depth {\n askDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bidDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n orderbook {\n ask {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bid {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n statsChange {\n buysChange\n liquidityChange\n priceChange\n priceRange\n sellsChange\n tradesChange\n volumeChange\n volumeSharesChange\n }\n }\n outcome1Stats {\n buySell {\n buyVolume {\n ct\n shares\n usd\n }\n buys\n sellVolume {\n ct\n shares\n usd\n }\n sells\n }\n core {\n price {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n trades\n venueOutcomeId\n volume {\n ct\n shares\n usd\n }\n }\n depth {\n askDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bidDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n orderbook {\n ask {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bid {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n statsChange {\n buysChange\n liquidityChange\n priceChange\n priceRange\n sellsChange\n tradesChange\n volumeChange\n volumeSharesChange\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n liquidityChange\n openInterestChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsMin5 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n outcome0Stats {\n buySell {\n buyVolume {\n ct\n shares\n usd\n }\n buys\n sellVolume {\n ct\n shares\n usd\n }\n sells\n }\n core {\n price {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n trades\n venueOutcomeId\n volume {\n ct\n shares\n usd\n }\n }\n depth {\n askDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bidDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n orderbook {\n ask {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bid {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n statsChange {\n buysChange\n liquidityChange\n priceChange\n priceRange\n sellsChange\n tradesChange\n volumeChange\n volumeSharesChange\n }\n }\n outcome1Stats {\n buySell {\n buyVolume {\n ct\n shares\n usd\n }\n buys\n sellVolume {\n ct\n shares\n usd\n }\n sells\n }\n core {\n price {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n trades\n venueOutcomeId\n volume {\n ct\n shares\n usd\n }\n }\n depth {\n askDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bidDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n orderbook {\n ask {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bid {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n statsChange {\n buysChange\n liquidityChange\n priceChange\n priceRange\n sellsChange\n tradesChange\n volumeChange\n volumeSharesChange\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n liquidityChange\n openInterestChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n statsWeek1 {\n allTimeStats {\n venueVolume {\n ct\n usd\n }\n volume {\n ct\n usd\n }\n }\n core {\n trades\n volume {\n ct\n usd\n }\n }\n end\n lastTransactionAt\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n openInterest {\n openInterest {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n outcome0Stats {\n buySell {\n buyVolume {\n ct\n shares\n usd\n }\n buys\n sellVolume {\n ct\n shares\n usd\n }\n sells\n }\n core {\n price {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n trades\n venueOutcomeId\n volume {\n ct\n shares\n usd\n }\n }\n depth {\n askDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bidDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n orderbook {\n ask {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bid {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n statsChange {\n buysChange\n liquidityChange\n priceChange\n priceRange\n sellsChange\n tradesChange\n volumeChange\n volumeSharesChange\n }\n }\n outcome1Stats {\n buySell {\n buyVolume {\n ct\n shares\n usd\n }\n buys\n sellVolume {\n ct\n shares\n usd\n }\n sells\n }\n core {\n price {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n trades\n venueOutcomeId\n volume {\n ct\n shares\n usd\n }\n }\n depth {\n askDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bidDepth {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n liquidity {\n liquidity {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n orderbook {\n ask {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n bid {\n close {\n ct\n usd\n }\n high {\n ct\n usd\n }\n low {\n ct\n usd\n }\n open {\n ct\n usd\n }\n }\n }\n statsChange {\n buysChange\n liquidityChange\n priceChange\n priceRange\n sellsChange\n tradesChange\n volumeChange\n volumeSharesChange\n }\n }\n scores {\n competitive\n relevance\n trending\n }\n start\n statsChange {\n liquidityChange\n openInterestChange\n tradesChange\n uniqueTradersChange\n volumeChange\n }\n uniqueTraders {\n uniqueTraders\n }\n }\n trendingScores {\n score1\n score1w\n score4\n score5m\n score12\n score24\n }\n }\n}": types.OnDetailedPredictionMarketStatsUpdatedDocument, "subscription OnDetailedStatsUpdated($pairId: String, $tokenOfInterest: TokenOfInterest) {\n onDetailedStatsUpdated(pairId: $pairId, tokenOfInterest: $tokenOfInterest) {\n pairId\n statsType\n stats_day1 {\n buckets {\n end\n start\n }\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n endTimestamp\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n timestamp\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n windowSize\n }\n stats_hour1 {\n buckets {\n end\n start\n }\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n endTimestamp\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n timestamp\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n windowSize\n }\n stats_hour4 {\n buckets {\n end\n start\n }\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n endTimestamp\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n timestamp\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n windowSize\n }\n stats_hour12 {\n buckets {\n end\n start\n }\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n endTimestamp\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n timestamp\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n windowSize\n }\n stats_min5 {\n buckets {\n end\n start\n }\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n endTimestamp\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n timestamp\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n windowSize\n }\n tokenOfInterest\n }\n}": types.OnDetailedStatsUpdatedDocument, "subscription OnDetailedTokenStatsUpdated($tokenId: String) {\n onDetailedTokenStatsUpdated(tokenId: $tokenId) {\n bucketCount\n lastTransactionAt\n networkId\n queryTimestamp\n statsType\n stats_day1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour4 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour12 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min5 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n tokenAddress\n tokenId\n }\n}": types.OnDetailedTokenStatsUpdatedDocument, "subscription OnEventLabelCreated($id: String) {\n onEventLabelCreated(id: $id) {\n data {\n ... on FrontRunLabelData {\n index\n token0DrainedAmount\n token1DrainedAmount\n }\n ... on SandwichedLabelData {\n token0DrainedAmountSandwich: token0DrainedAmount\n token1DrainedAmountSandwich: token1DrainedAmount\n }\n }\n id\n label\n logIndex\n networkId\n timestamp\n transactionHash\n transactionIndex\n }\n}": types.OnEventLabelCreatedDocument, - "subscription OnEventsCreated($address: String, $id: String, $networkId: Int, $quoteToken: QuoteToken) {\n onEventsCreated(\n address: $address\n id: $id\n networkId: $networkId\n quoteToken: $quoteToken\n ) {\n address\n events {\n address\n baseTokenPrice\n blockHash\n blockNumber\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n id\n networkId\n quoteToken\n }\n}": types.OnEventsCreatedDocument, - "subscription OnEventsCreatedByMaker($input: OnEventsCreatedByMakerInput!) {\n onEventsCreatedByMaker(input: $input) {\n events {\n address\n baseTokenPrice\n blockHash\n blockNumber\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n makerAddress\n }\n}": types.OnEventsCreatedByMakerDocument, - "subscription OnFilterTokenUpdated($excludeTokens: [String], $filters: TokenFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [TokenRanking], $statsType: TokenPairStatisticsType, $tokens: [String], $updatePeriod: Int, $useAggregatedStats: Boolean) {\n onFilterTokensUpdated(\n excludeTokens: $excludeTokens\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n statsType: $statsType\n tokens: $tokens\n updatePeriod: $updatePeriod\n useAggregatedStats: $useAggregatedStats\n ) {\n updates {\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n buyCount4\n buyCount5m\n buyCount12\n buyCount24\n buyVolume1\n buyVolume4\n buyVolume5m\n buyVolume12\n buyVolume24\n change1\n change4\n change5m\n change12\n change24\n circulatingMarketCap\n createdAt\n devHeldPercentage\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n high1\n high4\n high5m\n high12\n high24\n holders\n insiderCount\n insiderHeldPercentage\n isScam\n lastTransaction\n liquidPair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n liquidPairLiquidity\n liquidPairPriceUSD\n liquidity\n low1\n low4\n low5m\n low12\n low24\n marketCap\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n potentialScamReasons\n priceUSD\n quoteToken\n sellCount1\n sellCount4\n sellCount5m\n sellCount12\n sellCount24\n sellVolume1\n sellVolume4\n sellVolume5m\n sellVolume12\n sellVolume24\n sniperCount\n sniperHeldPercentage\n swapPct1dOldWallet\n swapPct7dOldWallet\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n trendingScore\n txnCount1\n txnCount4\n txnCount5m\n txnCount12\n txnCount24\n uniqueBuys1\n uniqueBuys4\n uniqueBuys5m\n uniqueBuys12\n uniqueBuys24\n uniqueSells1\n uniqueSells4\n uniqueSells5m\n uniqueSells12\n uniqueSells24\n uniqueTransactions1\n uniqueTransactions4\n uniqueTransactions5m\n uniqueTransactions12\n uniqueTransactions24\n volume1\n volume4\n volume5m\n volume12\n volume24\n volumeChange1\n volumeChange4\n volumeChange5m\n volumeChange12\n volumeChange24\n walletAgeAvg\n walletAgeStd\n }\n }\n}": types.OnFilterTokenUpdatedDocument, - "subscription OnFilterTokensUpdated($excludeTokens: [String], $filters: TokenFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [TokenRanking], $statsType: TokenPairStatisticsType, $tokens: [String], $updatePeriod: Int, $useAggregatedStats: Boolean) {\n onFilterTokensUpdated(\n excludeTokens: $excludeTokens\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n statsType: $statsType\n tokens: $tokens\n updatePeriod: $updatePeriod\n useAggregatedStats: $useAggregatedStats\n ) {\n updates {\n baseFees1\n baseFees4\n baseFees5m\n baseFees12\n baseFees24\n builderTips1\n builderTips4\n builderTips5m\n builderTips12\n builderTips24\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n buyCount4\n buyCount5m\n buyCount12\n buyCount24\n buyVolume1\n buyVolume4\n buyVolume5m\n buyVolume12\n buyVolume24\n change1\n change4\n change5m\n change12\n change24\n circulatingMarketCap\n createdAt\n devHeldPercentage\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n feeToVolumeRatio1\n feeToVolumeRatio4\n feeToVolumeRatio5m\n feeToVolumeRatio12\n feeToVolumeRatio24\n high1\n high4\n high5m\n high12\n high24\n holders\n insiderCount\n insiderHeldPercentage\n isScam\n l1DataFees1\n l1DataFees4\n l1DataFees5m\n l1DataFees12\n l1DataFees24\n lastTransaction\n liquidPair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n liquidPairLiquidity\n liquidPairPriceUSD\n liquidity\n low1\n low4\n low5m\n low12\n low24\n marketCap\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n poolFees1\n poolFees4\n poolFees5m\n poolFees12\n poolFees24\n potentialScamReasons\n priceUSD\n priorityFees1\n priorityFees4\n priorityFees5m\n priorityFees12\n priorityFees24\n quoteToken\n sellCount1\n sellCount4\n sellCount5m\n sellCount12\n sellCount24\n sellVolume1\n sellVolume4\n sellVolume5m\n sellVolume12\n sellVolume24\n sniperCount\n sniperHeldPercentage\n swapPct1dOldWallet\n swapPct7dOldWallet\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n totalFees1\n totalFees4\n totalFees5m\n totalFees12\n totalFees24\n trendingScore\n txnCount1\n txnCount4\n txnCount5m\n txnCount12\n txnCount24\n uniqueBuys1\n uniqueBuys4\n uniqueBuys5m\n uniqueBuys12\n uniqueBuys24\n uniqueSells1\n uniqueSells4\n uniqueSells5m\n uniqueSells12\n uniqueSells24\n uniqueTransactions1\n uniqueTransactions4\n uniqueTransactions5m\n uniqueTransactions12\n uniqueTransactions24\n volume1\n volume4\n volume5m\n volume12\n volume24\n volumeChange1\n volumeChange4\n volumeChange5m\n volumeChange12\n volumeChange24\n walletAgeAvg\n walletAgeStd\n }\n }\n}": types.OnFilterTokensUpdatedDocument, - "subscription OnHoldersUpdated($tokenId: String!) {\n onHoldersUpdated(tokenId: $tokenId) {\n balances {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n holders\n networkId\n tokenAddress\n tokenId\n }\n}": types.OnHoldersUpdatedDocument, + "subscription OnEventsCreated($address: String, $commitmentLevel: [EventCommitmentLevel!], $id: String, $networkId: Int, $quoteToken: QuoteToken) {\n onEventsCreated(\n address: $address\n commitmentLevel: $commitmentLevel\n id: $id\n networkId: $networkId\n quoteToken: $quoteToken\n ) {\n address\n events {\n address\n baseTokenPrice\n blockHash\n blockNumber\n commitmentLevel\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n supplementalIndex\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n id\n networkId\n quoteToken\n }\n}": types.OnEventsCreatedDocument, + "subscription OnEventsCreatedByMaker($commitmentLevel: [EventCommitmentLevel!], $input: OnEventsCreatedByMakerInput!) {\n onEventsCreatedByMaker(commitmentLevel: $commitmentLevel, input: $input) {\n events {\n address\n baseTokenPrice\n blockHash\n blockNumber\n commitmentLevel\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n supplementalIndex\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n makerAddress\n }\n}": types.OnEventsCreatedByMakerDocument, + "subscription OnFilterTokensUpdated($excludeTokens: [String], $filters: TokenFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [TokenRanking], $statsType: TokenPairStatisticsType, $tokens: [String], $updatePeriod: Int, $useAggregatedStats: Boolean) {\n onFilterTokensUpdated(\n excludeTokens: $excludeTokens\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n statsType: $statsType\n tokens: $tokens\n updatePeriod: $updatePeriod\n useAggregatedStats: $useAggregatedStats\n ) {\n updates {\n baseFees1\n baseFees4\n baseFees5m\n baseFees12\n baseFees24\n builderTips1\n builderTips4\n builderTips5m\n builderTips12\n builderTips24\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n buyCount4\n buyCount5m\n buyCount12\n buyCount24\n buyVolume1\n buyVolume4\n buyVolume5m\n buyVolume12\n buyVolume24\n change1\n change4\n change5m\n change12\n change24\n circulatingMarketCap\n createdAt\n devHeldPercentage\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n feeToVolumeRatio1\n feeToVolumeRatio4\n feeToVolumeRatio5m\n feeToVolumeRatio12\n feeToVolumeRatio24\n high1\n high4\n high5m\n high12\n high24\n holders\n insiderCount\n insiderHeldPercentage\n isScam\n l1DataFees1\n l1DataFees4\n l1DataFees5m\n l1DataFees12\n l1DataFees24\n lastTransaction\n liquidPair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n liquidPairLiquidity\n liquidPairPriceUSD\n liquidity\n low1\n low4\n low5m\n low12\n low24\n marketCap\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n poolFees1\n poolFees4\n poolFees5m\n poolFees12\n poolFees24\n potentialScamReasons\n priceUSD\n priorityFees1\n priorityFees4\n priorityFees5m\n priorityFees12\n priorityFees24\n quoteToken\n sellCount1\n sellCount4\n sellCount5m\n sellCount12\n sellCount24\n sellVolume1\n sellVolume4\n sellVolume5m\n sellVolume12\n sellVolume24\n sniperCount\n sniperHeldPercentage\n swapPct1dOldWallet\n swapPct7dOldWallet\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n totalFees1\n totalFees4\n totalFees5m\n totalFees12\n totalFees24\n trendingScore\n txnCount1\n txnCount4\n txnCount5m\n txnCount12\n txnCount24\n uniqueBuys1\n uniqueBuys4\n uniqueBuys5m\n uniqueBuys12\n uniqueBuys24\n uniqueSells1\n uniqueSells4\n uniqueSells5m\n uniqueSells12\n uniqueSells24\n uniqueTransactions1\n uniqueTransactions4\n uniqueTransactions5m\n uniqueTransactions12\n uniqueTransactions24\n volume1\n volume4\n volume5m\n volume12\n volume24\n volumeChange1\n volumeChange4\n volumeChange5m\n volumeChange12\n volumeChange24\n walletAgeAvg\n walletAgeStd\n }\n }\n}": types.OnFilterTokensUpdatedDocument, + "subscription OnHoldersUpdated($tokenId: String!) {\n onHoldersUpdated(tokenId: $tokenId) {\n balances {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n holders\n networkId\n tokenAddress\n tokenId\n }\n}": types.OnHoldersUpdatedDocument, "subscription OnLatestPairUpdated($id: String, $networkId: Int) {\n onLatestPairUpdated(id: $id, networkId: $networkId) {\n address\n exchangeHash\n id\n initialPriceUsd\n liquidAt\n liquidity\n liquidityToken\n networkId\n newToken\n nonLiquidityToken\n oldToken\n priceChange\n priceUsd\n token0 {\n address\n currentPoolAmount\n decimals\n id\n initialPoolAmount\n name\n networkId\n pairId\n poolVariation\n symbol\n }\n token1 {\n address\n currentPoolAmount\n decimals\n id\n initialPoolAmount\n name\n networkId\n pairId\n poolVariation\n symbol\n }\n transactionHash\n }\n}": types.OnLatestPairUpdatedDocument, "subscription OnLatestTokens($id: String, $networkId: Int, $tokenAddress: String) {\n onLatestTokens(id: $id, networkId: $networkId, tokenAddress: $tokenAddress) {\n blockHash\n blockNumber\n creatorAddress\n creatorBalance\n decimals\n id\n networkId\n simulationResults {\n buyGasUsed\n buySuccess\n buyTax\n canRenounceOwnership\n canTransferOwnership\n isOwnerRenounced\n maxBuyAmount\n maxSellAmount\n openTradingCall\n sellGasUsed\n sellSuccess\n sellTax\n }\n timeCreated\n tokenAddress\n tokenName\n tokenSymbol\n totalSupply\n traceIndex\n transactionHash\n transactionIndex\n }\n}": types.OnLatestTokensDocument, - "subscription OnLaunchpadTokenEvent($input: OnLaunchpadTokenEventInput) {\n onLaunchpadTokenEvent(input: $input) {\n address\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n devHeldPercentage\n eventType\n holders\n insiderCount\n insiderHeldPercentage\n launchpadName\n liquidity\n marketCap\n networkId\n price\n protocol\n sellCount1\n sniperCount\n sniperHeldPercentage\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n transactions1\n volume1\n }\n}": types.OnLaunchpadTokenEventDocument, - "subscription OnLaunchpadTokenEventBatch($input: OnLaunchpadTokenEventBatchInput) {\n onLaunchpadTokenEventBatch(input: $input) {\n address\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n devHeldPercentage\n eventType\n holders\n insiderCount\n insiderHeldPercentage\n launchpadName\n liquidity\n marketCap\n networkId\n price\n protocol\n sellCount1\n sniperCount\n sniperHeldPercentage\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n transactions1\n volume1\n }\n}": types.OnLaunchpadTokenEventBatchDocument, + "subscription OnLaunchpadTokenEvent($input: OnLaunchpadTokenEventInput) {\n onLaunchpadTokenEvent(input: $input) {\n address\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n devHeldPercentage\n eventType\n holders\n insiderCount\n insiderHeldPercentage\n launchpadName\n liquidity\n marketCap\n networkId\n price\n protocol\n sellCount1\n sniperCount\n sniperHeldPercentage\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n transactions1\n volume1\n }\n}": types.OnLaunchpadTokenEventDocument, + "subscription OnLaunchpadTokenEventBatch($input: OnLaunchpadTokenEventBatchInput) {\n onLaunchpadTokenEventBatch(input: $input) {\n address\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n devHeldPercentage\n eventType\n holders\n insiderCount\n insiderHeldPercentage\n launchpadName\n liquidity\n marketCap\n networkId\n price\n protocol\n sellCount1\n sniperCount\n sniperHeldPercentage\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n transactions1\n volume1\n }\n}": types.OnLaunchpadTokenEventBatchDocument, "subscription OnNftAssetsCreated($address: String, $networkId: Int, $tokenId: String) {\n onNftAssetsCreated(address: $address, networkId: $networkId, tokenId: $tokenId) {\n address\n attributes {\n class\n css\n displayType\n maxValue\n name\n value\n valueType\n }\n description\n id\n media {\n image\n processed\n thumbLg\n thumbSm\n }\n name\n networkId\n originalImage\n quantity\n rawAssetData {\n animationUrl\n externalUrl\n imageData\n imageUrl\n }\n tokenId\n uri\n }\n}": types.OnNftAssetsCreatedDocument, "subscription OnNftEventsCreated($address: String, $networkId: Int) {\n onNftEventsCreated(address: $address, networkId: $networkId) {\n address\n events {\n aggregatorAddress\n blockNumber\n contractAddress\n eventType\n exchangeAddress\n fillSource\n id\n individualPriceNetworkBaseToken\n individualPriceUsd\n individualTradePrice\n logIndex\n maker\n networkId\n numberOfTokens\n orderDirection\n paymentTokenAddress\n poolAddress\n priceError\n sortKey\n taker\n timestamp\n tokenId\n totalPriceNetworkBaseToken\n totalPriceUsd\n totalTradePrice\n tradeOffer {\n ... on NftEventNftTradeItem {\n address\n amount\n recipient\n tokenId\n type\n }\n ... on NftEventTokenTradeItem {\n address\n amount\n individualPriceNetworkBaseToken\n individualPriceUsd\n individualTradePrice\n isPrice\n priceError\n recipient\n totalPriceNetworkBaseToken\n totalPriceUsd\n totalTradePrice\n type\n }\n }\n tradeReceived {\n ... on NftEventNftTradeItem {\n address\n amount\n recipient\n tokenId\n type\n }\n ... on NftEventTokenTradeItem {\n address\n amount\n individualPriceNetworkBaseToken\n individualPriceUsd\n individualTradePrice\n isPrice\n priceError\n recipient\n totalPriceNetworkBaseToken\n totalPriceUsd\n totalTradePrice\n type\n }\n }\n transactionHash\n transactionIndex\n }\n id\n networkId\n }\n}": types.OnNftEventsCreatedDocument, "subscription OnNftPoolEventsCreated($collectionAddress: String, $exchangeAddress: String, $networkId: Int, $poolAddress: String) {\n onNftPoolEventsCreated(\n collectionAddress: $collectionAddress\n exchangeAddress: $exchangeAddress\n networkId: $networkId\n poolAddress: $poolAddress\n ) {\n collectionAddress\n events {\n blockHash\n blockNumber\n collectionAddress\n collectionId\n data {\n ... on NewPoolEventData {\n assetRecipientAddress\n bondingCurveAddress\n bondingCurveType\n buyPriceT\n collectionAddress\n createdAt\n delta\n feeAmountT\n nbtRatio\n networkId\n nftTokenBalance\n ownerAddress\n poolAddress\n sellPriceT\n startPriceT\n tokenAddress\n tokenBalanceT\n type\n usdRatio\n }\n ... on NewPoolEventDataV2 {\n assetRecipientAddress\n bondingCurveAddress\n bondingCurveType\n buyPriceT\n collectionAddress\n createdAt\n delta\n feeAmountT\n nbtRatio\n networkId\n nftAssets {\n address\n attributes {\n class\n css\n displayType\n maxValue\n name\n value\n valueType\n }\n description\n id\n media {\n image\n processed\n thumbLg\n thumbSm\n }\n name\n networkId\n originalImage\n quantity\n rawAssetData {\n animationUrl\n externalUrl\n imageData\n imageUrl\n }\n tokenId\n uri\n }\n nftTokenIds\n nftTokenQuantities\n ownerAddress\n poolAddress\n poolNftType\n propertyChecker\n royalties {\n percent\n recipient\n }\n sellPriceT\n startPriceT\n tokenAddress\n tokenBalanceT\n type\n usdRatio\n }\n ... on NftPoolAssetRecipientUpdateEventData {\n newAssetRecipient\n type\n }\n ... on NftPoolDeltaUpdateEventData {\n newDelta\n type\n }\n ... on NftPoolFeeUpdateEventData {\n nbtRatio\n newFeeT\n type\n usdRatio\n }\n ... on NftPoolNftDepositEventData {\n nftTokenBalance\n nftTokenIds\n tokenBalanceT\n type\n }\n ... on NftPoolNftDepositEventDataV2 {\n nftAssets {\n address\n attributes {\n class\n css\n displayType\n maxValue\n name\n value\n valueType\n }\n description\n id\n media {\n image\n processed\n thumbLg\n thumbSm\n }\n name\n networkId\n originalImage\n quantity\n rawAssetData {\n animationUrl\n externalUrl\n imageData\n imageUrl\n }\n tokenId\n uri\n }\n nftTokenAmounts\n nftTokenIds\n tokenBalanceT\n type\n }\n ... on NftPoolNftWithdrawalEventData {\n nftTokenBalance\n nftTokenIds\n tokenBalanceT\n type\n }\n ... on NftPoolNftWithdrawalEventDataV2 {\n nftAssets {\n address\n attributes {\n class\n css\n displayType\n maxValue\n name\n value\n valueType\n }\n description\n id\n media {\n image\n processed\n thumbLg\n thumbSm\n }\n name\n networkId\n originalImage\n quantity\n rawAssetData {\n animationUrl\n externalUrl\n imageData\n imageUrl\n }\n tokenId\n uri\n }\n nftTokenAmounts\n nftTokenIds\n tokenBalanceT\n type\n }\n ... on NftPoolOwnershipTransferredEventDataV2 {\n newOwner\n type\n }\n ... on NftPoolSpotPriceUpdateEventData {\n nbtRatio\n newBuyPriceT\n newSellPriceT\n newSpotPriceT\n type\n usdRatio\n }\n ... on NftPoolSpotPriceUpdateEventDataV2 {\n nbtRatio\n newBuyPriceT\n newSellPriceT\n newSpotPriceT\n type\n usdRatio\n }\n ... on NftPoolTokenDepositEventData {\n amountT\n nbtRatio\n nftTokenBalance\n tokenBalanceT\n type\n usdRatio\n }\n ... on NftPoolTokenDepositEventDataV2 {\n amountT\n nbtRatio\n tokenBalanceT\n type\n usdRatio\n }\n ... on NftPoolTokenWithdrawalEventData {\n amountT\n nbtRatio\n nftTokenBalance\n tokenBalanceT\n type\n usdRatio\n }\n ... on NftPoolTokenWithdrawalEventDataV2 {\n amountT\n nbtRatio\n tokenBalanceT\n type\n usdRatio\n }\n ... on SwapNftInPoolEventData {\n amountT\n nbtRatio\n newBuyPriceT\n newDelta\n newSellPriceT\n newSpotPriceT\n nftTokenBalance\n nftsTransfered {\n amountT\n nftTokenId\n }\n poolFeeT\n protocolFeeT\n tokenBalanceT\n tokenId\n type\n usdRatio\n }\n ... on SwapNftInPoolEventDataV2 {\n amountT\n nbtRatio\n newBuyPriceT\n newDelta\n newSellPriceT\n newSpotPriceT\n nftAssets {\n address\n attributes {\n class\n css\n displayType\n maxValue\n name\n value\n valueType\n }\n description\n id\n media {\n image\n processed\n thumbLg\n thumbSm\n }\n name\n networkId\n originalImage\n quantity\n rawAssetData {\n animationUrl\n externalUrl\n imageData\n imageUrl\n }\n tokenId\n uri\n }\n nftsTransfered {\n amountT\n nftQuantity\n nftTokenId\n }\n poolFeeT\n protocolFeeT\n tokenBalanceT\n tokenId\n type\n usdRatio\n }\n ... on SwapNftOutPoolEventData {\n amountT\n nbtRatio\n newBuyPriceT\n newDelta\n newSellPriceT\n newSpotPriceT\n nftTokenBalance\n nftsTransfered {\n amountT\n nftTokenId\n }\n poolFeeT\n protocolFeeT\n tokenBalanceT\n tokenId\n type\n usdRatio\n }\n ... on SwapNftOutPoolEventDataV2 {\n amountT\n nbtRatio\n newBuyPriceT\n newDelta\n newSellPriceT\n newSpotPriceT\n nftAssets {\n address\n attributes {\n class\n css\n displayType\n maxValue\n name\n value\n valueType\n }\n description\n id\n media {\n image\n processed\n thumbLg\n thumbSm\n }\n name\n networkId\n originalImage\n quantity\n rawAssetData {\n animationUrl\n externalUrl\n imageData\n imageUrl\n }\n tokenId\n uri\n }\n nftsTransfered {\n amountT\n nftQuantity\n nftTokenId\n }\n poolFeeT\n protocolFeeT\n tokenBalanceT\n tokenId\n type\n usdRatio\n }\n }\n eventType\n exchangeAddress\n id\n logIndex\n maker\n networkId\n poolAddress\n poolType\n timestamp\n tokenAddress\n transactionHash\n transactionIndex\n }\n exchangeAddress\n id\n networkId\n poolAddress\n }\n}": types.OnNftPoolEventsCreatedDocument, - "subscription OnPairMetadataUpdated($id: String, $quoteToken: QuoteToken, $useNonLiquidityTokenAsQuoteToken: Boolean) {\n onPairMetadataUpdated(\n id: $id\n quoteToken: $quoteToken\n useNonLiquidityTokenAsQuoteToken: $useNonLiquidityTokenAsQuoteToken\n ) {\n createdAt\n enhancedToken0 {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n enhancedToken1 {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n exchangeId\n fee\n highPrice1\n highPrice4\n highPrice5m\n highPrice12\n highPrice24\n id\n liquidity\n liquidityToken\n lowPrice1\n lowPrice4\n lowPrice5m\n lowPrice12\n lowPrice24\n networkId\n nonLiquidityToken\n pairAddress\n price\n priceChange1\n priceChange4\n priceChange5m\n priceChange12\n priceChange24\n priceNonQuoteToken\n quoteToken\n statsType\n tickSpacing\n token0 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n token1 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n top10HoldersPercent\n volume1\n volume4\n volume5m\n volume12\n volume24\n walletActivity {\n bundlerCount\n bundlerHeldPercentage\n devHeldPercentage\n insiderCount\n insiderHeldPercentage\n sniperCount\n sniperHeldPercentage\n }\n }\n}": types.OnPairMetadataUpdatedDocument, + "subscription OnPairMetadataUpdated($id: String, $quoteToken: QuoteToken, $useNonLiquidityTokenAsQuoteToken: Boolean) {\n onPairMetadataUpdated(\n id: $id\n quoteToken: $quoteToken\n useNonLiquidityTokenAsQuoteToken: $useNonLiquidityTokenAsQuoteToken\n ) {\n createdAt\n enhancedToken0 {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n enhancedToken1 {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n exchangeId\n fee\n highPrice1\n highPrice4\n highPrice5m\n highPrice12\n highPrice24\n id\n liquidity\n liquidityToken\n lowPrice1\n lowPrice4\n lowPrice5m\n lowPrice12\n lowPrice24\n networkId\n nonLiquidityToken\n pairAddress\n price\n priceChange1\n priceChange4\n priceChange5m\n priceChange12\n priceChange24\n priceNonQuoteToken\n quoteToken\n statsType\n tickSpacing\n token0 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n token1 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n top10HoldersPercent\n volume1\n volume4\n volume5m\n volume12\n volume24\n walletActivity {\n bundlerCount\n bundlerHeldPercentage\n devHeldPercentage\n insiderCount\n insiderHeldPercentage\n sniperCount\n sniperHeldPercentage\n }\n }\n}": types.OnPairMetadataUpdatedDocument, "subscription OnPredictionEventBarsUpdated($eventId: String!) {\n onPredictionEventBarsUpdated(eventId: $eventId) {\n bars {\n day1 {\n buyVolumeCollateralToken\n buyVolumeUsd\n lastEventTimestamp\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n openInterestCollateralToken {\n c\n h\n l\n o\n }\n openInterestUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeUsd\n t\n totalVolumeCollateralToken\n totalVolumeUsd\n trades\n uniqueTraders\n venueVolumeCollateralToken\n venueVolumeUsd\n volumeCollateralToken\n volumeUsd\n }\n hour1 {\n buyVolumeCollateralToken\n buyVolumeUsd\n lastEventTimestamp\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n openInterestCollateralToken {\n c\n h\n l\n o\n }\n openInterestUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeUsd\n t\n totalVolumeCollateralToken\n totalVolumeUsd\n trades\n uniqueTraders\n venueVolumeCollateralToken\n venueVolumeUsd\n volumeCollateralToken\n volumeUsd\n }\n hour4 {\n buyVolumeCollateralToken\n buyVolumeUsd\n lastEventTimestamp\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n openInterestCollateralToken {\n c\n h\n l\n o\n }\n openInterestUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeUsd\n t\n totalVolumeCollateralToken\n totalVolumeUsd\n trades\n uniqueTraders\n venueVolumeCollateralToken\n venueVolumeUsd\n volumeCollateralToken\n volumeUsd\n }\n hour12 {\n buyVolumeCollateralToken\n buyVolumeUsd\n lastEventTimestamp\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n openInterestCollateralToken {\n c\n h\n l\n o\n }\n openInterestUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeUsd\n t\n totalVolumeCollateralToken\n totalVolumeUsd\n trades\n uniqueTraders\n venueVolumeCollateralToken\n venueVolumeUsd\n volumeCollateralToken\n volumeUsd\n }\n min1 {\n buyVolumeCollateralToken\n buyVolumeUsd\n lastEventTimestamp\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n openInterestCollateralToken {\n c\n h\n l\n o\n }\n openInterestUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeUsd\n t\n totalVolumeCollateralToken\n totalVolumeUsd\n trades\n uniqueTraders\n venueVolumeCollateralToken\n venueVolumeUsd\n volumeCollateralToken\n volumeUsd\n }\n min5 {\n buyVolumeCollateralToken\n buyVolumeUsd\n lastEventTimestamp\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n openInterestCollateralToken {\n c\n h\n l\n o\n }\n openInterestUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeUsd\n t\n totalVolumeCollateralToken\n totalVolumeUsd\n trades\n uniqueTraders\n venueVolumeCollateralToken\n venueVolumeUsd\n volumeCollateralToken\n volumeUsd\n }\n min15 {\n buyVolumeCollateralToken\n buyVolumeUsd\n lastEventTimestamp\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n openInterestCollateralToken {\n c\n h\n l\n o\n }\n openInterestUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeUsd\n t\n totalVolumeCollateralToken\n totalVolumeUsd\n trades\n uniqueTraders\n venueVolumeCollateralToken\n venueVolumeUsd\n volumeCollateralToken\n volumeUsd\n }\n min30 {\n buyVolumeCollateralToken\n buyVolumeUsd\n lastEventTimestamp\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n openInterestCollateralToken {\n c\n h\n l\n o\n }\n openInterestUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeUsd\n t\n totalVolumeCollateralToken\n totalVolumeUsd\n trades\n uniqueTraders\n venueVolumeCollateralToken\n venueVolumeUsd\n volumeCollateralToken\n volumeUsd\n }\n week1 {\n buyVolumeCollateralToken\n buyVolumeUsd\n lastEventTimestamp\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n openInterestCollateralToken {\n c\n h\n l\n o\n }\n openInterestUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeUsd\n t\n totalVolumeCollateralToken\n totalVolumeUsd\n trades\n uniqueTraders\n venueVolumeCollateralToken\n venueVolumeUsd\n volumeCollateralToken\n volumeUsd\n }\n }\n eventId\n }\n}": types.OnPredictionEventBarsUpdatedDocument, "subscription OnPredictionMarketBarsUpdated($marketId: String!) {\n onPredictionMarketBarsUpdated(marketId: $marketId) {\n bars {\n day1 {\n allTimeVolumeCollateralToken\n allTimeVolumeUsd\n lastEventTimestamp\n openInterestUsd {\n c\n h\n l\n o\n }\n outcome0 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n outcome1 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n t\n trades\n uniqueTraders\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n hour1 {\n allTimeVolumeCollateralToken\n allTimeVolumeUsd\n lastEventTimestamp\n openInterestUsd {\n c\n h\n l\n o\n }\n outcome0 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n outcome1 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n t\n trades\n uniqueTraders\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n hour4 {\n allTimeVolumeCollateralToken\n allTimeVolumeUsd\n lastEventTimestamp\n openInterestUsd {\n c\n h\n l\n o\n }\n outcome0 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n outcome1 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n t\n trades\n uniqueTraders\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n hour12 {\n allTimeVolumeCollateralToken\n allTimeVolumeUsd\n lastEventTimestamp\n openInterestUsd {\n c\n h\n l\n o\n }\n outcome0 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n outcome1 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n t\n trades\n uniqueTraders\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n min1 {\n allTimeVolumeCollateralToken\n allTimeVolumeUsd\n lastEventTimestamp\n openInterestUsd {\n c\n h\n l\n o\n }\n outcome0 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n outcome1 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n t\n trades\n uniqueTraders\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n min5 {\n allTimeVolumeCollateralToken\n allTimeVolumeUsd\n lastEventTimestamp\n openInterestUsd {\n c\n h\n l\n o\n }\n outcome0 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n outcome1 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n t\n trades\n uniqueTraders\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n min15 {\n allTimeVolumeCollateralToken\n allTimeVolumeUsd\n lastEventTimestamp\n openInterestUsd {\n c\n h\n l\n o\n }\n outcome0 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n outcome1 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n t\n trades\n uniqueTraders\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n min30 {\n allTimeVolumeCollateralToken\n allTimeVolumeUsd\n lastEventTimestamp\n openInterestUsd {\n c\n h\n l\n o\n }\n outcome0 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n outcome1 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n t\n trades\n uniqueTraders\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n week1 {\n allTimeVolumeCollateralToken\n allTimeVolumeUsd\n lastEventTimestamp\n openInterestUsd {\n c\n h\n l\n o\n }\n outcome0 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n outcome1 {\n askCollateralToken {\n c\n h\n l\n o\n }\n askUsd {\n c\n h\n l\n o\n }\n bidCollateralToken {\n c\n h\n l\n o\n }\n bidUsd {\n c\n h\n l\n o\n }\n buyVolumeCollateralToken\n buyVolumeShares\n buyVolumeUsd\n buys\n liquidityCollateralToken {\n c\n h\n l\n o\n }\n liquidityUsd {\n c\n h\n l\n o\n }\n priceCollateralToken {\n c\n h\n l\n o\n }\n priceUsd {\n c\n h\n l\n o\n }\n sellVolumeCollateralToken\n sellVolumeShares\n sellVolumeUsd\n sells\n trades\n twoPercentAskDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentAskDepthUsd {\n c\n h\n l\n o\n }\n twoPercentBidDepthCollateralToken {\n c\n h\n l\n o\n }\n twoPercentBidDepthUsd {\n c\n h\n l\n o\n }\n venueOutcomeId\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n t\n trades\n uniqueTraders\n volumeCollateralToken\n volumeShares\n volumeUsd\n }\n }\n marketId\n }\n}": types.OnPredictionMarketBarsUpdatedDocument, "subscription OnPredictionTradesCreated($input: OnPredictionTradesCreatedInput!) {\n onPredictionTradesCreated(input: $input) {\n eventId\n marketId\n trades {\n amount\n amountCollateral\n amountUsd\n blockNumber\n exchangeAddress\n maker\n marketId\n networkId\n outcomeId\n outcomeIndex\n outcomeLabel\n predictionMarket {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n eventId\n eventLabel\n exchangeAddress\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n label\n networkId\n observedAt\n opensAt\n outcomeIds\n outcomeLabels\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rules\n rules2\n updatedAt\n venueEventId\n venueMarketId\n venueMarketSlug\n venueOutcomeIds\n winningOutcomeId\n }\n priceCollateral\n priceUsd\n protocol\n sortKey\n timestamp\n tradeType\n traderId\n transactionHash\n transactionId\n }\n }\n}": types.OnPredictionTradesCreatedDocument, "subscription OnPriceUpdated($address: String, $networkId: Int, $sourcePairAddress: String, $useWeightedPrices: Boolean) {\n onPriceUpdated(\n address: $address\n networkId: $networkId\n sourcePairAddress: $sourcePairAddress\n useWeightedPrices: $useWeightedPrices\n ) {\n address\n blockNumber\n networkId\n priceUsd\n timestamp\n }\n}": types.OnPriceUpdatedDocument, "subscription OnPricesUpdated($input: [OnPricesUpdatedInput!]!, $useWeightedPrices: Boolean) {\n onPricesUpdated(input: $input, useWeightedPrices: $useWeightedPrices) {\n address\n blockNumber\n networkId\n priceUsd\n timestamp\n }\n}": types.OnPricesUpdatedDocument, "subscription OnTokenBarsUpdated($networkId: Int, $tokenId: String) {\n onTokenBarsUpdated(networkId: $networkId, tokenId: $tokenId) {\n aggregates {\n r1 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r1D {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r1S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r5 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r5S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r7D {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r15 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r15S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r30 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r30S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r60 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r240 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r720 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n }\n eventSortKey\n networkId\n statsType\n timestamp\n tokenAddress\n tokenId\n }\n}": types.OnTokenBarsUpdatedDocument, - "subscription OnTokenEventsCreated($input: OnTokenEventsCreatedInput!) {\n onTokenEventsCreated(input: $input) {\n events {\n address\n baseTokenPrice\n blockHash\n blockNumber\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n id\n }\n}": types.OnTokenEventsCreatedDocument, + "subscription OnTokenEventsCreated($input: OnTokenEventsCreatedInput!) {\n onTokenEventsCreated(input: $input) {\n events {\n address\n baseTokenPrice\n blockHash\n blockNumber\n commitmentLevel\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n supplementalIndex\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n id\n }\n}": types.OnTokenEventsCreatedDocument, "subscription OnTokenLifecycleEventsCreated($address: String, $networkId: Int) {\n onTokenLifecycleEventsCreated(address: $address, networkId: $networkId) {\n events {\n blockHash\n blockNumber\n data {\n ... on TokenBurnEventData {\n amount\n circulatingSupply\n totalSupply\n }\n ... on TokenMintEventData {\n amount\n circulatingSupply\n totalSupply\n }\n }\n eventType\n id\n logIndex\n maker\n networkId\n timestamp\n tokenAddress\n transactionHash\n transactionIndex\n }\n id\n }\n}": types.OnTokenLifecycleEventsCreatedDocument, "subscription OnUnconfirmedBarsUpdated($pairId: String, $quoteToken: QuoteToken) {\n onUnconfirmedBarsUpdated(pairId: $pairId, quoteToken: $quoteToken) {\n aggregates {\n r1 {\n c\n h\n l\n o\n t\n v\n volume\n }\n r1D {\n c\n h\n l\n o\n t\n v\n volume\n }\n r1S {\n c\n h\n l\n o\n t\n v\n volume\n }\n r5 {\n c\n h\n l\n o\n t\n v\n volume\n }\n r5S {\n c\n h\n l\n o\n t\n v\n volume\n }\n r7D {\n c\n h\n l\n o\n t\n v\n volume\n }\n r15 {\n c\n h\n l\n o\n t\n v\n volume\n }\n r15S {\n c\n h\n l\n o\n t\n v\n volume\n }\n r60 {\n c\n h\n l\n o\n t\n v\n volume\n }\n r240 {\n c\n h\n l\n o\n t\n v\n volume\n }\n r720 {\n c\n h\n l\n o\n t\n v\n volume\n }\n }\n eventSortKey\n networkId\n pairAddress\n pairId\n quoteToken\n quoteTokenAddress\n timestamp\n }\n}": types.OnUnconfirmedBarsUpdatedDocument, "subscription OnUnconfirmedEventsCreated($address: String, $id: String, $quoteToken: QuoteToken) {\n onUnconfirmedEventsCreated(address: $address, id: $id, quoteToken: $quoteToken) {\n address\n events {\n address\n blockHash\n blockNumber\n data {\n ... on UnconfirmedLiquidityChangeEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n type\n }\n ... on UnconfirmedSwapEventData {\n amountBaseToken\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n type\n }\n }\n eventDisplayType\n eventType\n id\n logIndex\n maker\n networkId\n quoteToken\n supplementalIndex\n timestamp\n transactionHash\n transactionIndex\n }\n id\n networkId\n quoteToken\n }\n}": types.OnUnconfirmedEventsCreatedDocument, @@ -253,7 +251,7 @@ export function graphql(source: "mutation DeleteWebhooks($input: DeleteWebhooksI /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "mutation RefreshBalances($input: [RefreshBalancesInput!]!) {\n refreshBalances(input: $input) {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n}"): (typeof documents)["mutation RefreshBalances($input: [RefreshBalancesInput!]!) {\n refreshBalances(input: $input) {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n}"]; +export function graphql(source: "mutation RefreshBalances($input: [RefreshBalancesInput!]!) {\n refreshBalances(input: $input) {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n}"): (typeof documents)["mutation RefreshBalances($input: [RefreshBalancesInput!]!) {\n refreshBalances(input: $input) {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -265,7 +263,7 @@ export function graphql(source: "query ApiTokens {\n apiTokens {\n expiresTi /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "query Balances($input: BalancesInput!) {\n balances(input: $input) {\n cursor\n items {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n }\n}"): (typeof documents)["query Balances($input: BalancesInput!) {\n balances(input: $input) {\n cursor\n items {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n }\n}"]; +export function graphql(source: "query Balances($input: BalancesInput!) {\n balances(input: $input) {\n cursor\n items {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n }\n}"): (typeof documents)["query Balances($input: BalancesInput!) {\n balances(input: $input) {\n cursor\n items {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -297,11 +295,11 @@ export function graphql(source: "query FilterExchanges($filters: ExchangeFilters /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "query FilterPairs($filters: PairFilters, $limit: Int, $matchTokens: PairFilterMatchTokens, $offset: Int, $pairs: [String], $phrase: String, $rankings: [PairRanking], $statsType: TokenPairStatisticsType) {\n filterPairs(\n filters: $filters\n limit: $limit\n matchTokens: $matchTokens\n offset: $offset\n pairs: $pairs\n phrase: $phrase\n rankings: $rankings\n statsType: $statsType\n ) {\n count\n offset\n results {\n buyCount1\n buyCount4\n buyCount12\n buyCount24\n buyVolumeUSD1\n buyVolumeUSD4\n buyVolumeUSD12\n buyVolumeUSD24\n createdAt\n exchange {\n address\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n highPrice1\n highPrice4\n highPrice12\n highPrice24\n lastTransaction\n liquidity\n liquidityToken\n lockedLiquidityPercentage\n lowPrice1\n lowPrice4\n lowPrice12\n lowPrice24\n marketCap\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n potentialScamReasons\n price\n priceChange1\n priceChange4\n priceChange12\n priceChange24\n priceScale\n quoteToken\n sellCount1\n sellCount4\n sellCount12\n sellCount24\n sellVolumeUSD1\n sellVolumeUSD4\n sellVolumeUSD12\n sellVolumeUSD24\n swapPct1dOldWallet\n swapPct7dOldWallet\n token0 {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1 {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n txnCount1\n txnCount4\n txnCount12\n txnCount24\n uniqueBuys1\n uniqueBuys4\n uniqueBuys12\n uniqueBuys24\n uniqueSells1\n uniqueSells4\n uniqueSells12\n uniqueSells24\n uniqueTransactions1\n uniqueTransactions4\n uniqueTransactions12\n uniqueTransactions24\n volumeChange1\n volumeChange4\n volumeChange12\n volumeChange24\n volumeUSD1\n volumeUSD4\n volumeUSD12\n volumeUSD24\n walletAgeAvg\n walletAgeStd\n }\n }\n}"): (typeof documents)["query FilterPairs($filters: PairFilters, $limit: Int, $matchTokens: PairFilterMatchTokens, $offset: Int, $pairs: [String], $phrase: String, $rankings: [PairRanking], $statsType: TokenPairStatisticsType) {\n filterPairs(\n filters: $filters\n limit: $limit\n matchTokens: $matchTokens\n offset: $offset\n pairs: $pairs\n phrase: $phrase\n rankings: $rankings\n statsType: $statsType\n ) {\n count\n offset\n results {\n buyCount1\n buyCount4\n buyCount12\n buyCount24\n buyVolumeUSD1\n buyVolumeUSD4\n buyVolumeUSD12\n buyVolumeUSD24\n createdAt\n exchange {\n address\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n highPrice1\n highPrice4\n highPrice12\n highPrice24\n lastTransaction\n liquidity\n liquidityToken\n lockedLiquidityPercentage\n lowPrice1\n lowPrice4\n lowPrice12\n lowPrice24\n marketCap\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n potentialScamReasons\n price\n priceChange1\n priceChange4\n priceChange12\n priceChange24\n priceScale\n quoteToken\n sellCount1\n sellCount4\n sellCount12\n sellCount24\n sellVolumeUSD1\n sellVolumeUSD4\n sellVolumeUSD12\n sellVolumeUSD24\n swapPct1dOldWallet\n swapPct7dOldWallet\n token0 {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1 {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n txnCount1\n txnCount4\n txnCount12\n txnCount24\n uniqueBuys1\n uniqueBuys4\n uniqueBuys12\n uniqueBuys24\n uniqueSells1\n uniqueSells4\n uniqueSells12\n uniqueSells24\n uniqueTransactions1\n uniqueTransactions4\n uniqueTransactions12\n uniqueTransactions24\n volumeChange1\n volumeChange4\n volumeChange12\n volumeChange24\n volumeUSD1\n volumeUSD4\n volumeUSD12\n volumeUSD24\n walletAgeAvg\n walletAgeStd\n }\n }\n}"]; +export function graphql(source: "query FilterPairs($filters: PairFilters, $limit: Int, $matchTokens: PairFilterMatchTokens, $offset: Int, $pairs: [String], $phrase: String, $rankings: [PairRanking], $statsType: TokenPairStatisticsType) {\n filterPairs(\n filters: $filters\n limit: $limit\n matchTokens: $matchTokens\n offset: $offset\n pairs: $pairs\n phrase: $phrase\n rankings: $rankings\n statsType: $statsType\n ) {\n count\n offset\n results {\n buyCount1\n buyCount4\n buyCount12\n buyCount24\n buyVolumeUSD1\n buyVolumeUSD4\n buyVolumeUSD12\n buyVolumeUSD24\n createdAt\n exchange {\n address\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n highPrice1\n highPrice4\n highPrice12\n highPrice24\n lastTransaction\n liquidity\n liquidityToken\n lockedLiquidityPercentage\n lowPrice1\n lowPrice4\n lowPrice12\n lowPrice24\n marketCap\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n potentialScamReasons\n price\n priceChange1\n priceChange4\n priceChange12\n priceChange24\n priceScale\n quoteToken\n sellCount1\n sellCount4\n sellCount12\n sellCount24\n sellVolumeUSD1\n sellVolumeUSD4\n sellVolumeUSD12\n sellVolumeUSD24\n swapPct1dOldWallet\n swapPct7dOldWallet\n token0 {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1 {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n txnCount1\n txnCount4\n txnCount12\n txnCount24\n uniqueBuys1\n uniqueBuys4\n uniqueBuys12\n uniqueBuys24\n uniqueSells1\n uniqueSells4\n uniqueSells12\n uniqueSells24\n uniqueTransactions1\n uniqueTransactions4\n uniqueTransactions12\n uniqueTransactions24\n volumeChange1\n volumeChange4\n volumeChange12\n volumeChange24\n volumeUSD1\n volumeUSD4\n volumeUSD12\n volumeUSD24\n walletAgeAvg\n walletAgeStd\n }\n }\n}"): (typeof documents)["query FilterPairs($filters: PairFilters, $limit: Int, $matchTokens: PairFilterMatchTokens, $offset: Int, $pairs: [String], $phrase: String, $rankings: [PairRanking], $statsType: TokenPairStatisticsType) {\n filterPairs(\n filters: $filters\n limit: $limit\n matchTokens: $matchTokens\n offset: $offset\n pairs: $pairs\n phrase: $phrase\n rankings: $rankings\n statsType: $statsType\n ) {\n count\n offset\n results {\n buyCount1\n buyCount4\n buyCount12\n buyCount24\n buyVolumeUSD1\n buyVolumeUSD4\n buyVolumeUSD12\n buyVolumeUSD24\n createdAt\n exchange {\n address\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n highPrice1\n highPrice4\n highPrice12\n highPrice24\n lastTransaction\n liquidity\n liquidityToken\n lockedLiquidityPercentage\n lowPrice1\n lowPrice4\n lowPrice12\n lowPrice24\n marketCap\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n potentialScamReasons\n price\n priceChange1\n priceChange4\n priceChange12\n priceChange24\n priceScale\n quoteToken\n sellCount1\n sellCount4\n sellCount12\n sellCount24\n sellVolumeUSD1\n sellVolumeUSD4\n sellVolumeUSD12\n sellVolumeUSD24\n swapPct1dOldWallet\n swapPct7dOldWallet\n token0 {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1 {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n txnCount1\n txnCount4\n txnCount12\n txnCount24\n uniqueBuys1\n uniqueBuys4\n uniqueBuys12\n uniqueBuys24\n uniqueSells1\n uniqueSells4\n uniqueSells12\n uniqueSells24\n uniqueTransactions1\n uniqueTransactions4\n uniqueTransactions12\n uniqueTransactions24\n volumeChange1\n volumeChange4\n volumeChange12\n volumeChange24\n volumeUSD1\n volumeUSD4\n volumeUSD12\n volumeUSD24\n walletAgeAvg\n walletAgeStd\n }\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "query FilterPredictionEvents($eventIds: [String!], $excludeEventIds: [String!], $filters: PredictionEventFilters, $limit: Int, $marketSort: PredictionEventMarketSort, $offset: Int, $phrase: String, $rankings: [PredictionEventRanking!]) {\n filterPredictionEvents(\n eventIds: $eventIds\n excludeEventIds: $excludeEventIds\n filters: $filters\n limit: $limit\n marketSort: $marketSort\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n ) {\n count\n page\n results {\n age\n categories\n closesAt\n createdAt\n event {\n closesAt\n createdAt\n description\n exchangeAddress\n id\n imageThumbUrl\n networkId\n opensAt\n protocol\n question\n resolvedAt\n resolvesAt\n slug\n status\n tags\n venueEventId\n venueSeriesId\n venueUrl\n }\n expectedLifespan\n id\n lastTransactionAt\n liquidityCT\n liquidityChange1h\n liquidityChange1w\n liquidityChange4h\n liquidityChange5m\n liquidityChange12h\n liquidityChange24h\n liquidityUsd\n marketCount\n markets {\n id\n label\n }\n openInterestCT\n openInterestChange1h\n openInterestChange1w\n openInterestChange4h\n openInterestChange5m\n openInterestChange12h\n openInterestChange24h\n openInterestUsd\n opensAt\n predictionEvent {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n marketIds\n networkId\n opensAt\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rulesPrimary\n rulesSecondary\n status\n tags\n updatedAt\n url\n venueEventId\n venueSeriesId\n }\n protocol\n relatedEventIds\n relevanceScore1h\n relevanceScore1w\n relevanceScore4h\n relevanceScore5m\n relevanceScore12h\n relevanceScore24h\n resolutionSource\n resolvedAt\n resolvesAt\n status\n timestamp\n topMarkets {\n label\n marketId\n outcome0BidCT\n outcome0Label\n outcome1BidCT\n outcome1Label\n volumeCT1d\n volumeCT1w\n volumeCTAll\n }\n trades1h\n trades1w\n trades4h\n trades5m\n trades12h\n trades24h\n tradesChange1h\n tradesChange1w\n tradesChange4h\n tradesChange5m\n tradesChange12h\n tradesChange24h\n trendingScore1h\n trendingScore1w\n trendingScore4h\n trendingScore5m\n trendingScore12h\n trendingScore24h\n uniqueTraders1h\n uniqueTraders1w\n uniqueTraders4h\n uniqueTraders5m\n uniqueTraders12h\n uniqueTraders24h\n uniqueTradersChange1h\n uniqueTradersChange1w\n uniqueTradersChange4h\n uniqueTradersChange5m\n uniqueTradersChange12h\n uniqueTradersChange24h\n venueVolumeCT\n venueVolumeUsd\n volumeCTAll\n volumeChange1h\n volumeChange1w\n volumeChange4h\n volumeChange5m\n volumeChange12h\n volumeChange24h\n volumeUsd1h\n volumeUsd1w\n volumeUsd4h\n volumeUsd5m\n volumeUsd12h\n volumeUsd24h\n volumeUsdAll\n }\n }\n}"): (typeof documents)["query FilterPredictionEvents($eventIds: [String!], $excludeEventIds: [String!], $filters: PredictionEventFilters, $limit: Int, $marketSort: PredictionEventMarketSort, $offset: Int, $phrase: String, $rankings: [PredictionEventRanking!]) {\n filterPredictionEvents(\n eventIds: $eventIds\n excludeEventIds: $excludeEventIds\n filters: $filters\n limit: $limit\n marketSort: $marketSort\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n ) {\n count\n page\n results {\n age\n categories\n closesAt\n createdAt\n event {\n closesAt\n createdAt\n description\n exchangeAddress\n id\n imageThumbUrl\n networkId\n opensAt\n protocol\n question\n resolvedAt\n resolvesAt\n slug\n status\n tags\n venueEventId\n venueSeriesId\n venueUrl\n }\n expectedLifespan\n id\n lastTransactionAt\n liquidityCT\n liquidityChange1h\n liquidityChange1w\n liquidityChange4h\n liquidityChange5m\n liquidityChange12h\n liquidityChange24h\n liquidityUsd\n marketCount\n markets {\n id\n label\n }\n openInterestCT\n openInterestChange1h\n openInterestChange1w\n openInterestChange4h\n openInterestChange5m\n openInterestChange12h\n openInterestChange24h\n openInterestUsd\n opensAt\n predictionEvent {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n marketIds\n networkId\n opensAt\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rulesPrimary\n rulesSecondary\n status\n tags\n updatedAt\n url\n venueEventId\n venueSeriesId\n }\n protocol\n relatedEventIds\n relevanceScore1h\n relevanceScore1w\n relevanceScore4h\n relevanceScore5m\n relevanceScore12h\n relevanceScore24h\n resolutionSource\n resolvedAt\n resolvesAt\n status\n timestamp\n topMarkets {\n label\n marketId\n outcome0BidCT\n outcome0Label\n outcome1BidCT\n outcome1Label\n volumeCT1d\n volumeCT1w\n volumeCTAll\n }\n trades1h\n trades1w\n trades4h\n trades5m\n trades12h\n trades24h\n tradesChange1h\n tradesChange1w\n tradesChange4h\n tradesChange5m\n tradesChange12h\n tradesChange24h\n trendingScore1h\n trendingScore1w\n trendingScore4h\n trendingScore5m\n trendingScore12h\n trendingScore24h\n uniqueTraders1h\n uniqueTraders1w\n uniqueTraders4h\n uniqueTraders5m\n uniqueTraders12h\n uniqueTraders24h\n uniqueTradersChange1h\n uniqueTradersChange1w\n uniqueTradersChange4h\n uniqueTradersChange5m\n uniqueTradersChange12h\n uniqueTradersChange24h\n venueVolumeCT\n venueVolumeUsd\n volumeCTAll\n volumeChange1h\n volumeChange1w\n volumeChange4h\n volumeChange5m\n volumeChange12h\n volumeChange24h\n volumeUsd1h\n volumeUsd1w\n volumeUsd4h\n volumeUsd5m\n volumeUsd12h\n volumeUsd24h\n volumeUsdAll\n }\n }\n}"]; +export function graphql(source: "query FilterPredictionEvents($eventIds: [String!], $excludeEventIds: [String!], $filters: PredictionEventFilters, $limit: Int, $marketSort: PredictionEventMarketSort, $offset: Int, $phrase: String, $rankings: [PredictionEventRanking!]) {\n filterPredictionEvents(\n eventIds: $eventIds\n excludeEventIds: $excludeEventIds\n filters: $filters\n limit: $limit\n marketSort: $marketSort\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n ) {\n count\n page\n results {\n age\n categories\n closesAt\n createdAt\n event {\n closesAt\n createdAt\n description\n exchangeAddress\n id\n imageThumbUrl\n networkId\n opensAt\n protocol\n question\n resolvedAt\n resolvesAt\n slug\n status\n tags\n venueEventId\n venueSeriesId\n venueUrl\n }\n expectedLifespan\n id\n lastTransactionAt\n liquidityCT\n liquidityChange1h\n liquidityChange1w\n liquidityChange4h\n liquidityChange5m\n liquidityChange12h\n liquidityChange24h\n liquidityUsd\n marketCount\n markets {\n id\n label\n }\n openInterestCT\n openInterestChange1h\n openInterestChange1w\n openInterestChange4h\n openInterestChange5m\n openInterestChange12h\n openInterestChange24h\n openInterestUsd\n opensAt\n predictionEvent {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n marketIds\n networkId\n opensAt\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rulesPrimary\n rulesSecondary\n status\n tags\n updatedAt\n url\n venueEventId\n venueSeriesId\n }\n protocol\n relatedEventIds\n relevanceScore1h\n relevanceScore1w\n relevanceScore4h\n relevanceScore5m\n relevanceScore12h\n relevanceScore24h\n resolutionSource\n resolvedAt\n resolvesAt\n status\n timestamp\n topMarkets {\n label\n marketId\n outcome0AskCT\n outcome0AskUSD\n outcome0BidCT\n outcome0BidUSD\n outcome0Label\n outcome1AskCT\n outcome1AskUSD\n outcome1BidCT\n outcome1BidUSD\n outcome1Label\n volumeCT1d\n volumeCT1w\n volumeCTAll\n volumeUSD1d\n volumeUSD1w\n volumeUSDAll\n }\n trades1h\n trades1w\n trades4h\n trades5m\n trades12h\n trades24h\n tradesChange1h\n tradesChange1w\n tradesChange4h\n tradesChange5m\n tradesChange12h\n tradesChange24h\n trendingScore1h\n trendingScore1w\n trendingScore4h\n trendingScore5m\n trendingScore12h\n trendingScore24h\n uniqueTraders1h\n uniqueTraders1w\n uniqueTraders4h\n uniqueTraders5m\n uniqueTraders12h\n uniqueTraders24h\n uniqueTradersChange1h\n uniqueTradersChange1w\n uniqueTradersChange4h\n uniqueTradersChange5m\n uniqueTradersChange12h\n uniqueTradersChange24h\n venueVolumeCT\n venueVolumeUsd\n volumeCTAll\n volumeChange1h\n volumeChange1w\n volumeChange4h\n volumeChange5m\n volumeChange12h\n volumeChange24h\n volumeUsd1h\n volumeUsd1w\n volumeUsd4h\n volumeUsd5m\n volumeUsd12h\n volumeUsd24h\n volumeUsdAll\n }\n }\n}"): (typeof documents)["query FilterPredictionEvents($eventIds: [String!], $excludeEventIds: [String!], $filters: PredictionEventFilters, $limit: Int, $marketSort: PredictionEventMarketSort, $offset: Int, $phrase: String, $rankings: [PredictionEventRanking!]) {\n filterPredictionEvents(\n eventIds: $eventIds\n excludeEventIds: $excludeEventIds\n filters: $filters\n limit: $limit\n marketSort: $marketSort\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n ) {\n count\n page\n results {\n age\n categories\n closesAt\n createdAt\n event {\n closesAt\n createdAt\n description\n exchangeAddress\n id\n imageThumbUrl\n networkId\n opensAt\n protocol\n question\n resolvedAt\n resolvesAt\n slug\n status\n tags\n venueEventId\n venueSeriesId\n venueUrl\n }\n expectedLifespan\n id\n lastTransactionAt\n liquidityCT\n liquidityChange1h\n liquidityChange1w\n liquidityChange4h\n liquidityChange5m\n liquidityChange12h\n liquidityChange24h\n liquidityUsd\n marketCount\n markets {\n id\n label\n }\n openInterestCT\n openInterestChange1h\n openInterestChange1w\n openInterestChange4h\n openInterestChange5m\n openInterestChange12h\n openInterestChange24h\n openInterestUsd\n opensAt\n predictionEvent {\n categories {\n name\n slug\n subcategories {\n name\n slug\n subcategories {\n name\n slug\n }\n }\n }\n closesAt\n createdAt\n id\n imageLargeUrl\n imageSmallUrl\n imageThumbUrl\n marketIds\n networkId\n opensAt\n protocol\n question\n resolution {\n result\n source\n }\n resolvedAt\n resolvesAt\n rulesPrimary\n rulesSecondary\n status\n tags\n updatedAt\n url\n venueEventId\n venueSeriesId\n }\n protocol\n relatedEventIds\n relevanceScore1h\n relevanceScore1w\n relevanceScore4h\n relevanceScore5m\n relevanceScore12h\n relevanceScore24h\n resolutionSource\n resolvedAt\n resolvesAt\n status\n timestamp\n topMarkets {\n label\n marketId\n outcome0AskCT\n outcome0AskUSD\n outcome0BidCT\n outcome0BidUSD\n outcome0Label\n outcome1AskCT\n outcome1AskUSD\n outcome1BidCT\n outcome1BidUSD\n outcome1Label\n volumeCT1d\n volumeCT1w\n volumeCTAll\n volumeUSD1d\n volumeUSD1w\n volumeUSDAll\n }\n trades1h\n trades1w\n trades4h\n trades5m\n trades12h\n trades24h\n tradesChange1h\n tradesChange1w\n tradesChange4h\n tradesChange5m\n tradesChange12h\n tradesChange24h\n trendingScore1h\n trendingScore1w\n trendingScore4h\n trendingScore5m\n trendingScore12h\n trendingScore24h\n uniqueTraders1h\n uniqueTraders1w\n uniqueTraders4h\n uniqueTraders5m\n uniqueTraders12h\n uniqueTraders24h\n uniqueTradersChange1h\n uniqueTradersChange1w\n uniqueTradersChange4h\n uniqueTradersChange5m\n uniqueTradersChange12h\n uniqueTradersChange24h\n venueVolumeCT\n venueVolumeUsd\n volumeCTAll\n volumeChange1h\n volumeChange1w\n volumeChange4h\n volumeChange5m\n volumeChange12h\n volumeChange24h\n volumeUsd1h\n volumeUsd1w\n volumeUsd4h\n volumeUsd5m\n volumeUsd12h\n volumeUsd24h\n volumeUsdAll\n }\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -321,7 +319,7 @@ export function graphql(source: "query FilterTokenWallets($input: FilterTokenWal /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "query FilterTokens($excludeTokens: [String], $filters: TokenFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [TokenRanking], $statsType: TokenPairStatisticsType, $tokens: [String], $useAggregatedStats: Boolean) {\n filterTokens(\n excludeTokens: $excludeTokens\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n statsType: $statsType\n tokens: $tokens\n useAggregatedStats: $useAggregatedStats\n ) {\n count\n page\n results {\n baseFees1\n baseFees4\n baseFees5m\n baseFees12\n baseFees24\n builderTips1\n builderTips4\n builderTips5m\n builderTips12\n builderTips24\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n buyCount4\n buyCount5m\n buyCount12\n buyCount24\n buyVolume1\n buyVolume4\n buyVolume5m\n buyVolume12\n buyVolume24\n change1\n change4\n change5m\n change12\n change24\n circulatingMarketCap\n createdAt\n devHeldPercentage\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n feeToVolumeRatio1\n feeToVolumeRatio4\n feeToVolumeRatio5m\n feeToVolumeRatio12\n feeToVolumeRatio24\n high1\n high4\n high5m\n high12\n high24\n holders\n insiderCount\n insiderHeldPercentage\n isScam\n l1DataFees1\n l1DataFees4\n l1DataFees5m\n l1DataFees12\n l1DataFees24\n lastTransaction\n liquidPair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n liquidPairLiquidity\n liquidPairPriceUSD\n liquidity\n low1\n low4\n low5m\n low12\n low24\n marketCap\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n poolFees1\n poolFees4\n poolFees5m\n poolFees12\n poolFees24\n potentialScamReasons\n priceUSD\n priorityFees1\n priorityFees4\n priorityFees5m\n priorityFees12\n priorityFees24\n quoteToken\n sellCount1\n sellCount4\n sellCount5m\n sellCount12\n sellCount24\n sellVolume1\n sellVolume4\n sellVolume5m\n sellVolume12\n sellVolume24\n sniperCount\n sniperHeldPercentage\n swapPct1dOldWallet\n swapPct7dOldWallet\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n totalFees1\n totalFees4\n totalFees5m\n totalFees12\n totalFees24\n trendingScore\n txnCount1\n txnCount4\n txnCount5m\n txnCount12\n txnCount24\n uniqueBuys1\n uniqueBuys4\n uniqueBuys5m\n uniqueBuys12\n uniqueBuys24\n uniqueSells1\n uniqueSells4\n uniqueSells5m\n uniqueSells12\n uniqueSells24\n uniqueTransactions1\n uniqueTransactions4\n uniqueTransactions5m\n uniqueTransactions12\n uniqueTransactions24\n volume1\n volume4\n volume5m\n volume12\n volume24\n volumeChange1\n volumeChange4\n volumeChange5m\n volumeChange12\n volumeChange24\n walletAgeAvg\n walletAgeStd\n }\n }\n}"): (typeof documents)["query FilterTokens($excludeTokens: [String], $filters: TokenFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [TokenRanking], $statsType: TokenPairStatisticsType, $tokens: [String], $useAggregatedStats: Boolean) {\n filterTokens(\n excludeTokens: $excludeTokens\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n statsType: $statsType\n tokens: $tokens\n useAggregatedStats: $useAggregatedStats\n ) {\n count\n page\n results {\n baseFees1\n baseFees4\n baseFees5m\n baseFees12\n baseFees24\n builderTips1\n builderTips4\n builderTips5m\n builderTips12\n builderTips24\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n buyCount4\n buyCount5m\n buyCount12\n buyCount24\n buyVolume1\n buyVolume4\n buyVolume5m\n buyVolume12\n buyVolume24\n change1\n change4\n change5m\n change12\n change24\n circulatingMarketCap\n createdAt\n devHeldPercentage\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n feeToVolumeRatio1\n feeToVolumeRatio4\n feeToVolumeRatio5m\n feeToVolumeRatio12\n feeToVolumeRatio24\n high1\n high4\n high5m\n high12\n high24\n holders\n insiderCount\n insiderHeldPercentage\n isScam\n l1DataFees1\n l1DataFees4\n l1DataFees5m\n l1DataFees12\n l1DataFees24\n lastTransaction\n liquidPair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n liquidPairLiquidity\n liquidPairPriceUSD\n liquidity\n low1\n low4\n low5m\n low12\n low24\n marketCap\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n poolFees1\n poolFees4\n poolFees5m\n poolFees12\n poolFees24\n potentialScamReasons\n priceUSD\n priorityFees1\n priorityFees4\n priorityFees5m\n priorityFees12\n priorityFees24\n quoteToken\n sellCount1\n sellCount4\n sellCount5m\n sellCount12\n sellCount24\n sellVolume1\n sellVolume4\n sellVolume5m\n sellVolume12\n sellVolume24\n sniperCount\n sniperHeldPercentage\n swapPct1dOldWallet\n swapPct7dOldWallet\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n totalFees1\n totalFees4\n totalFees5m\n totalFees12\n totalFees24\n trendingScore\n txnCount1\n txnCount4\n txnCount5m\n txnCount12\n txnCount24\n uniqueBuys1\n uniqueBuys4\n uniqueBuys5m\n uniqueBuys12\n uniqueBuys24\n uniqueSells1\n uniqueSells4\n uniqueSells5m\n uniqueSells12\n uniqueSells24\n uniqueTransactions1\n uniqueTransactions4\n uniqueTransactions5m\n uniqueTransactions12\n uniqueTransactions24\n volume1\n volume4\n volume5m\n volume12\n volume24\n volumeChange1\n volumeChange4\n volumeChange5m\n volumeChange12\n volumeChange24\n walletAgeAvg\n walletAgeStd\n }\n }\n}"]; +export function graphql(source: "query FilterTokens($excludeTokens: [String], $filters: TokenFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [TokenRanking], $statsType: TokenPairStatisticsType, $tokens: [String], $useAggregatedStats: Boolean) {\n filterTokens(\n excludeTokens: $excludeTokens\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n statsType: $statsType\n tokens: $tokens\n useAggregatedStats: $useAggregatedStats\n ) {\n count\n page\n results {\n baseFees1\n baseFees4\n baseFees5m\n baseFees12\n baseFees24\n builderTips1\n builderTips4\n builderTips5m\n builderTips12\n builderTips24\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n buyCount4\n buyCount5m\n buyCount12\n buyCount24\n buyVolume1\n buyVolume4\n buyVolume5m\n buyVolume12\n buyVolume24\n change1\n change4\n change5m\n change12\n change24\n circulatingMarketCap\n createdAt\n devHeldPercentage\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n feeToVolumeRatio1\n feeToVolumeRatio4\n feeToVolumeRatio5m\n feeToVolumeRatio12\n feeToVolumeRatio24\n high1\n high4\n high5m\n high12\n high24\n holders\n insiderCount\n insiderHeldPercentage\n isScam\n l1DataFees1\n l1DataFees4\n l1DataFees5m\n l1DataFees12\n l1DataFees24\n lastTransaction\n liquidPair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n liquidPairLiquidity\n liquidPairPriceUSD\n liquidity\n low1\n low4\n low5m\n low12\n low24\n marketCap\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n poolFees1\n poolFees4\n poolFees5m\n poolFees12\n poolFees24\n potentialScamReasons\n priceUSD\n priorityFees1\n priorityFees4\n priorityFees5m\n priorityFees12\n priorityFees24\n quoteToken\n sellCount1\n sellCount4\n sellCount5m\n sellCount12\n sellCount24\n sellVolume1\n sellVolume4\n sellVolume5m\n sellVolume12\n sellVolume24\n sniperCount\n sniperHeldPercentage\n swapPct1dOldWallet\n swapPct7dOldWallet\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n totalFees1\n totalFees4\n totalFees5m\n totalFees12\n totalFees24\n trendingScore\n txnCount1\n txnCount4\n txnCount5m\n txnCount12\n txnCount24\n uniqueBuys1\n uniqueBuys4\n uniqueBuys5m\n uniqueBuys12\n uniqueBuys24\n uniqueSells1\n uniqueSells4\n uniqueSells5m\n uniqueSells12\n uniqueSells24\n uniqueTransactions1\n uniqueTransactions4\n uniqueTransactions5m\n uniqueTransactions12\n uniqueTransactions24\n volume1\n volume4\n volume5m\n volume12\n volume24\n volumeChange1\n volumeChange4\n volumeChange5m\n volumeChange12\n volumeChange24\n walletAgeAvg\n walletAgeStd\n }\n }\n}"): (typeof documents)["query FilterTokens($excludeTokens: [String], $filters: TokenFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [TokenRanking], $statsType: TokenPairStatisticsType, $tokens: [String], $useAggregatedStats: Boolean) {\n filterTokens(\n excludeTokens: $excludeTokens\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n statsType: $statsType\n tokens: $tokens\n useAggregatedStats: $useAggregatedStats\n ) {\n count\n page\n results {\n baseFees1\n baseFees4\n baseFees5m\n baseFees12\n baseFees24\n builderTips1\n builderTips4\n builderTips5m\n builderTips12\n builderTips24\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n buyCount4\n buyCount5m\n buyCount12\n buyCount24\n buyVolume1\n buyVolume4\n buyVolume5m\n buyVolume12\n buyVolume24\n change1\n change4\n change5m\n change12\n change24\n circulatingMarketCap\n createdAt\n devHeldPercentage\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n feeToVolumeRatio1\n feeToVolumeRatio4\n feeToVolumeRatio5m\n feeToVolumeRatio12\n feeToVolumeRatio24\n high1\n high4\n high5m\n high12\n high24\n holders\n insiderCount\n insiderHeldPercentage\n isScam\n l1DataFees1\n l1DataFees4\n l1DataFees5m\n l1DataFees12\n l1DataFees24\n lastTransaction\n liquidPair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n liquidPairLiquidity\n liquidPairPriceUSD\n liquidity\n low1\n low4\n low5m\n low12\n low24\n marketCap\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n poolFees1\n poolFees4\n poolFees5m\n poolFees12\n poolFees24\n potentialScamReasons\n priceUSD\n priorityFees1\n priorityFees4\n priorityFees5m\n priorityFees12\n priorityFees24\n quoteToken\n sellCount1\n sellCount4\n sellCount5m\n sellCount12\n sellCount24\n sellVolume1\n sellVolume4\n sellVolume5m\n sellVolume12\n sellVolume24\n sniperCount\n sniperHeldPercentage\n swapPct1dOldWallet\n swapPct7dOldWallet\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n totalFees1\n totalFees4\n totalFees5m\n totalFees12\n totalFees24\n trendingScore\n txnCount1\n txnCount4\n txnCount5m\n txnCount12\n txnCount24\n uniqueBuys1\n uniqueBuys4\n uniqueBuys5m\n uniqueBuys12\n uniqueBuys24\n uniqueSells1\n uniqueSells4\n uniqueSells5m\n uniqueSells12\n uniqueSells24\n uniqueTransactions1\n uniqueTransactions4\n uniqueTransactions5m\n uniqueTransactions12\n uniqueTransactions24\n volume1\n volume4\n volume5m\n volume12\n volume24\n volumeChange1\n volumeChange4\n volumeChange5m\n volumeChange12\n volumeChange24\n walletAgeAvg\n walletAgeStd\n }\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -329,19 +327,19 @@ export function graphql(source: "query FilterWallets($input: FilterWalletsInput! /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "query GetBars($countback: Int, $currencyCode: String, $from: Int!, $quoteToken: QuoteToken, $removeEmptyBars: Boolean, $removeLeadingNullValues: Boolean, $resolution: String!, $statsType: TokenPairStatisticsType, $symbol: String!, $symbolType: SymbolType, $to: Int!) {\n getBars(\n countback: $countback\n currencyCode: $currencyCode\n from: $from\n quoteToken: $quoteToken\n removeEmptyBars: $removeEmptyBars\n removeLeadingNullValues: $removeLeadingNullValues\n resolution: $resolution\n statsType: $statsType\n symbol: $symbol\n symbolType: $symbolType\n to: $to\n ) {\n averageCostPerTrade\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n feeRegimeClassification\n feeToVolumeRatio\n gasPerVolume\n h\n l\n l1DataFees\n liquidity\n mevRiskLevel\n mevToTotalFeesRatio\n o\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n poolFees\n priorityFees\n s\n sandwichRate\n sellVolume\n sellers\n sells\n t\n totalFees\n traders\n transactions\n volume\n volumeNativeToken\n }\n}"): (typeof documents)["query GetBars($countback: Int, $currencyCode: String, $from: Int!, $quoteToken: QuoteToken, $removeEmptyBars: Boolean, $removeLeadingNullValues: Boolean, $resolution: String!, $statsType: TokenPairStatisticsType, $symbol: String!, $symbolType: SymbolType, $to: Int!) {\n getBars(\n countback: $countback\n currencyCode: $currencyCode\n from: $from\n quoteToken: $quoteToken\n removeEmptyBars: $removeEmptyBars\n removeLeadingNullValues: $removeLeadingNullValues\n resolution: $resolution\n statsType: $statsType\n symbol: $symbol\n symbolType: $symbolType\n to: $to\n ) {\n averageCostPerTrade\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n feeRegimeClassification\n feeToVolumeRatio\n gasPerVolume\n h\n l\n l1DataFees\n liquidity\n mevRiskLevel\n mevToTotalFeesRatio\n o\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n poolFees\n priorityFees\n s\n sandwichRate\n sellVolume\n sellers\n sells\n t\n totalFees\n traders\n transactions\n volume\n volumeNativeToken\n }\n}"]; +export function graphql(source: "query GetBars($countback: Int, $currencyCode: String, $from: Int!, $quoteToken: QuoteToken, $removeEmptyBars: Boolean, $removeLeadingNullValues: Boolean, $resolution: String!, $statsType: TokenPairStatisticsType, $symbol: String!, $symbolType: SymbolType, $to: Int!) {\n getBars(\n countback: $countback\n currencyCode: $currencyCode\n from: $from\n quoteToken: $quoteToken\n removeEmptyBars: $removeEmptyBars\n removeLeadingNullValues: $removeLeadingNullValues\n resolution: $resolution\n statsType: $statsType\n symbol: $symbol\n symbolType: $symbolType\n to: $to\n ) {\n averageCostPerTrade\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n feeRegimeClassification\n feeToVolumeRatio\n gasPerVolume\n h\n l\n l1DataFees\n liquidity\n mevRiskLevel\n mevToTotalFeesRatio\n o\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n poolFees\n priorityFees\n s\n sandwichRate\n sellVolume\n sellers\n sells\n t\n totalFees\n traders\n transactions\n volume\n volumeNativeToken\n }\n}"): (typeof documents)["query GetBars($countback: Int, $currencyCode: String, $from: Int!, $quoteToken: QuoteToken, $removeEmptyBars: Boolean, $removeLeadingNullValues: Boolean, $resolution: String!, $statsType: TokenPairStatisticsType, $symbol: String!, $symbolType: SymbolType, $to: Int!) {\n getBars(\n countback: $countback\n currencyCode: $currencyCode\n from: $from\n quoteToken: $quoteToken\n removeEmptyBars: $removeEmptyBars\n removeLeadingNullValues: $removeLeadingNullValues\n resolution: $resolution\n statsType: $statsType\n symbol: $symbol\n symbolType: $symbolType\n to: $to\n ) {\n averageCostPerTrade\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n feeRegimeClassification\n feeToVolumeRatio\n gasPerVolume\n h\n l\n l1DataFees\n liquidity\n mevRiskLevel\n mevToTotalFeesRatio\n o\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n poolFees\n priorityFees\n s\n sandwichRate\n sellVolume\n sellers\n sells\n t\n totalFees\n traders\n transactions\n volume\n volumeNativeToken\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "query GetCommunityNotes($input: CommunityNotesInput) {\n getCommunityNotes(input: $input) {\n count\n cursor\n items {\n address\n contractType\n currentContract {\n ... on EnhancedNftContract {\n address\n description\n ercType\n id\n image\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n totalSupply\n }\n ... on EnhancedToken {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n currentData\n id\n moderatedAt\n networkId\n previousData\n proposalData\n proposalNum\n proposalType\n proposedAt\n sortKey\n status\n }\n }\n}"): (typeof documents)["query GetCommunityNotes($input: CommunityNotesInput) {\n getCommunityNotes(input: $input) {\n count\n cursor\n items {\n address\n contractType\n currentContract {\n ... on EnhancedNftContract {\n address\n description\n ercType\n id\n image\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n totalSupply\n }\n ... on EnhancedToken {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n currentData\n id\n moderatedAt\n networkId\n previousData\n proposalData\n proposalNum\n proposalType\n proposedAt\n sortKey\n status\n }\n }\n}"]; +export function graphql(source: "query GetCommunityNotes($input: CommunityNotesInput) {\n getCommunityNotes(input: $input) {\n count\n cursor\n items {\n address\n contractType\n currentContract {\n ... on EnhancedNftContract {\n address\n description\n ercType\n id\n image\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n totalSupply\n }\n ... on EnhancedToken {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n currentData\n id\n moderatedAt\n networkId\n previousData\n proposalData\n proposalNum\n proposalType\n proposedAt\n sortKey\n status\n }\n }\n}"): (typeof documents)["query GetCommunityNotes($input: CommunityNotesInput) {\n getCommunityNotes(input: $input) {\n count\n cursor\n items {\n address\n contractType\n currentContract {\n ... on EnhancedNftContract {\n address\n description\n ercType\n id\n image\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n totalSupply\n }\n ... on EnhancedToken {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n currentData\n id\n moderatedAt\n networkId\n previousData\n proposalData\n proposalNum\n proposalType\n proposedAt\n sortKey\n status\n }\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "query GetDetailedPairStats($bucketCount: Int, $durations: [DetailedPairStatsDuration], $networkId: Int!, $pairAddress: String!, $statsType: TokenPairStatisticsType, $timestamp: Int, $tokenOfInterest: TokenOfInterest) {\n getDetailedPairStats(\n bucketCount: $bucketCount\n durations: $durations\n networkId: $networkId\n pairAddress: $pairAddress\n statsType: $statsType\n timestamp: $timestamp\n tokenOfInterest: $tokenOfInterest\n ) {\n bucketCount\n lastTransaction\n networkId\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n pairAddress\n queryTimestamp\n statsType\n stats_day1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_day30 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour4 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour12 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min5 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min15 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_week1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n tokenOfInterest\n }\n}"): (typeof documents)["query GetDetailedPairStats($bucketCount: Int, $durations: [DetailedPairStatsDuration], $networkId: Int!, $pairAddress: String!, $statsType: TokenPairStatisticsType, $timestamp: Int, $tokenOfInterest: TokenOfInterest) {\n getDetailedPairStats(\n bucketCount: $bucketCount\n durations: $durations\n networkId: $networkId\n pairAddress: $pairAddress\n statsType: $statsType\n timestamp: $timestamp\n tokenOfInterest: $tokenOfInterest\n ) {\n bucketCount\n lastTransaction\n networkId\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n pairAddress\n queryTimestamp\n statsType\n stats_day1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_day30 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour4 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour12 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min5 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min15 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_week1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n tokenOfInterest\n }\n}"]; +export function graphql(source: "query GetDetailedPairStats($bucketCount: Int, $durations: [DetailedPairStatsDuration], $networkId: Int!, $pairAddress: String!, $statsType: TokenPairStatisticsType, $timestamp: Int, $tokenOfInterest: TokenOfInterest) {\n getDetailedPairStats(\n bucketCount: $bucketCount\n durations: $durations\n networkId: $networkId\n pairAddress: $pairAddress\n statsType: $statsType\n timestamp: $timestamp\n tokenOfInterest: $tokenOfInterest\n ) {\n bucketCount\n lastTransaction\n networkId\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n pairAddress\n queryTimestamp\n statsType\n stats_day1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_day30 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour4 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour12 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min5 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min15 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_week1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n tokenOfInterest\n }\n}"): (typeof documents)["query GetDetailedPairStats($bucketCount: Int, $durations: [DetailedPairStatsDuration], $networkId: Int!, $pairAddress: String!, $statsType: TokenPairStatisticsType, $timestamp: Int, $tokenOfInterest: TokenOfInterest) {\n getDetailedPairStats(\n bucketCount: $bucketCount\n durations: $durations\n networkId: $networkId\n pairAddress: $pairAddress\n statsType: $statsType\n timestamp: $timestamp\n tokenOfInterest: $tokenOfInterest\n ) {\n bucketCount\n lastTransaction\n networkId\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n pairAddress\n queryTimestamp\n statsType\n stats_day1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_day30 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour4 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour12 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min5 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min15 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_week1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n tokenOfInterest\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "query GetDetailedPairsStats($input: [GetDetailedPairsStatsInput!]!) {\n getDetailedPairsStats(input: $input) {\n bucketCount\n lastTransaction\n networkId\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n pairAddress\n queryTimestamp\n statsType\n stats_day1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_day30 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour4 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour12 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min5 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min15 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_week1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n tokenOfInterest\n }\n}"): (typeof documents)["query GetDetailedPairsStats($input: [GetDetailedPairsStatsInput!]!) {\n getDetailedPairsStats(input: $input) {\n bucketCount\n lastTransaction\n networkId\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n pairAddress\n queryTimestamp\n statsType\n stats_day1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_day30 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour4 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour12 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min5 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min15 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_week1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n tokenOfInterest\n }\n}"]; +export function graphql(source: "query GetDetailedPairsStats($input: [GetDetailedPairsStatsInput!]!) {\n getDetailedPairsStats(input: $input) {\n bucketCount\n lastTransaction\n networkId\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n pairAddress\n queryTimestamp\n statsType\n stats_day1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_day30 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour4 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour12 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min5 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min15 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_week1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n tokenOfInterest\n }\n}"): (typeof documents)["query GetDetailedPairsStats($input: [GetDetailedPairsStatsInput!]!) {\n getDetailedPairsStats(input: $input) {\n bucketCount\n lastTransaction\n networkId\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n pairAddress\n queryTimestamp\n statsType\n stats_day1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_day30 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour4 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_hour12 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min5 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_min15 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n stats_week1 {\n duration\n end\n start\n statsNonCurrency {\n buyers {\n buckets\n change\n currentValue\n previousValue\n }\n buys {\n buckets\n change\n currentValue\n previousValue\n }\n sellers {\n buckets\n change\n currentValue\n previousValue\n }\n sells {\n buckets\n change\n currentValue\n previousValue\n }\n traders {\n buckets\n change\n currentValue\n previousValue\n }\n transactions {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n buyVolume {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highest {\n buckets\n change\n currentValue\n previousValue\n }\n liquidity {\n buckets\n change\n currentValue\n previousValue\n }\n lowest {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n sellVolume {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n timestamps {\n end\n start\n }\n }\n tokenOfInterest\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -377,15 +375,15 @@ export function graphql(source: "query GetSymbol($currencyCode: String, $symbol: /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "query GetTokenBars($countback: Int, $currencyCode: QuoteCurrency, $from: Int!, $removeEmptyBars: Boolean, $removeLeadingNullValues: Boolean, $resolution: String!, $statsType: TokenPairStatisticsType, $symbol: String!, $to: Int!) {\n getTokenBars(\n countback: $countback\n currencyCode: $currencyCode\n from: $from\n removeEmptyBars: $removeEmptyBars\n removeLeadingNullValues: $removeLeadingNullValues\n resolution: $resolution\n statsType: $statsType\n symbol: $symbol\n to: $to\n ) {\n averageCostPerTrade\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n feeRegimeClassification\n feeToVolumeRatio\n gasPerVolume\n h\n l\n l1DataFees\n liquidity\n mevRiskLevel\n mevToTotalFeesRatio\n o\n poolFees\n priorityFees\n s\n sandwichRate\n sellVolume\n sellers\n sells\n t\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n totalFees\n traders\n transactions\n volume\n volumeNativeToken\n }\n}"): (typeof documents)["query GetTokenBars($countback: Int, $currencyCode: QuoteCurrency, $from: Int!, $removeEmptyBars: Boolean, $removeLeadingNullValues: Boolean, $resolution: String!, $statsType: TokenPairStatisticsType, $symbol: String!, $to: Int!) {\n getTokenBars(\n countback: $countback\n currencyCode: $currencyCode\n from: $from\n removeEmptyBars: $removeEmptyBars\n removeLeadingNullValues: $removeLeadingNullValues\n resolution: $resolution\n statsType: $statsType\n symbol: $symbol\n to: $to\n ) {\n averageCostPerTrade\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n feeRegimeClassification\n feeToVolumeRatio\n gasPerVolume\n h\n l\n l1DataFees\n liquidity\n mevRiskLevel\n mevToTotalFeesRatio\n o\n poolFees\n priorityFees\n s\n sandwichRate\n sellVolume\n sellers\n sells\n t\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n totalFees\n traders\n transactions\n volume\n volumeNativeToken\n }\n}"]; +export function graphql(source: "query GetTokenBars($countback: Int, $currencyCode: QuoteCurrency, $from: Int!, $removeEmptyBars: Boolean, $removeLeadingNullValues: Boolean, $resolution: String!, $statsType: TokenPairStatisticsType, $symbol: String!, $to: Int!) {\n getTokenBars(\n countback: $countback\n currencyCode: $currencyCode\n from: $from\n removeEmptyBars: $removeEmptyBars\n removeLeadingNullValues: $removeLeadingNullValues\n resolution: $resolution\n statsType: $statsType\n symbol: $symbol\n to: $to\n ) {\n averageCostPerTrade\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n feeRegimeClassification\n feeToVolumeRatio\n gasPerVolume\n h\n l\n l1DataFees\n liquidity\n mevRiskLevel\n mevToTotalFeesRatio\n o\n poolFees\n priorityFees\n s\n sandwichRate\n sellVolume\n sellers\n sells\n t\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n totalFees\n traders\n transactions\n volume\n volumeNativeToken\n }\n}"): (typeof documents)["query GetTokenBars($countback: Int, $currencyCode: QuoteCurrency, $from: Int!, $removeEmptyBars: Boolean, $removeLeadingNullValues: Boolean, $resolution: String!, $statsType: TokenPairStatisticsType, $symbol: String!, $to: Int!) {\n getTokenBars(\n countback: $countback\n currencyCode: $currencyCode\n from: $from\n removeEmptyBars: $removeEmptyBars\n removeLeadingNullValues: $removeLeadingNullValues\n resolution: $resolution\n statsType: $statsType\n symbol: $symbol\n to: $to\n ) {\n averageCostPerTrade\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n feeRegimeClassification\n feeToVolumeRatio\n gasPerVolume\n h\n l\n l1DataFees\n liquidity\n mevRiskLevel\n mevToTotalFeesRatio\n o\n poolFees\n priorityFees\n s\n sandwichRate\n sellVolume\n sellers\n sells\n t\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n totalFees\n traders\n transactions\n volume\n volumeNativeToken\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "query GetTokenEvents($cursor: String, $direction: RankingDirection, $limit: Int, $query: EventsQueryInput!) {\n getTokenEvents(\n cursor: $cursor\n direction: $direction\n limit: $limit\n query: $query\n ) {\n cursor\n items {\n address\n baseTokenPrice\n blockHash\n blockNumber\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n }\n}"): (typeof documents)["query GetTokenEvents($cursor: String, $direction: RankingDirection, $limit: Int, $query: EventsQueryInput!) {\n getTokenEvents(\n cursor: $cursor\n direction: $direction\n limit: $limit\n query: $query\n ) {\n cursor\n items {\n address\n baseTokenPrice\n blockHash\n blockNumber\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n }\n}"]; +export function graphql(source: "query GetTokenEvents($cursor: String, $direction: RankingDirection, $limit: Int, $query: EventsQueryInput!) {\n getTokenEvents(\n cursor: $cursor\n direction: $direction\n limit: $limit\n query: $query\n ) {\n cursor\n items {\n address\n baseTokenPrice\n blockHash\n blockNumber\n commitmentLevel\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n supplementalIndex\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n }\n}"): (typeof documents)["query GetTokenEvents($cursor: String, $direction: RankingDirection, $limit: Int, $query: EventsQueryInput!) {\n getTokenEvents(\n cursor: $cursor\n direction: $direction\n limit: $limit\n query: $query\n ) {\n cursor\n items {\n address\n baseTokenPrice\n blockHash\n blockNumber\n commitmentLevel\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n supplementalIndex\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "query GetTokenEventsForMaker($cursor: String, $direction: RankingDirection, $limit: Int, $query: MakerEventsQueryInput!) {\n getTokenEventsForMaker(\n cursor: $cursor\n direction: $direction\n limit: $limit\n query: $query\n ) {\n cursor\n items {\n address\n baseTokenPrice\n blockHash\n blockNumber\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n }\n}"): (typeof documents)["query GetTokenEventsForMaker($cursor: String, $direction: RankingDirection, $limit: Int, $query: MakerEventsQueryInput!) {\n getTokenEventsForMaker(\n cursor: $cursor\n direction: $direction\n limit: $limit\n query: $query\n ) {\n cursor\n items {\n address\n baseTokenPrice\n blockHash\n blockNumber\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n }\n}"]; +export function graphql(source: "query GetTokenEventsForMaker($cursor: String, $direction: RankingDirection, $limit: Int, $query: MakerEventsQueryInput!) {\n getTokenEventsForMaker(\n cursor: $cursor\n direction: $direction\n limit: $limit\n query: $query\n ) {\n cursor\n items {\n address\n baseTokenPrice\n blockHash\n blockNumber\n commitmentLevel\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n supplementalIndex\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n }\n}"): (typeof documents)["query GetTokenEventsForMaker($cursor: String, $direction: RankingDirection, $limit: Int, $query: MakerEventsQueryInput!) {\n getTokenEventsForMaker(\n cursor: $cursor\n direction: $direction\n limit: $limit\n query: $query\n ) {\n cursor\n items {\n address\n baseTokenPrice\n blockHash\n blockNumber\n commitmentLevel\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n supplementalIndex\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -397,7 +395,7 @@ export function graphql(source: "query GetWebhooks($bucketId: String, $bucketSor /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "query Holders($input: HoldersInput!) {\n holders(input: $input) {\n count\n cursor\n items {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n status\n top10HoldersPercent\n }\n}"): (typeof documents)["query Holders($input: HoldersInput!) {\n holders(input: $input) {\n count\n cursor\n items {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n status\n top10HoldersPercent\n }\n}"]; +export function graphql(source: "query Holders($input: HoldersInput!) {\n holders(input: $input) {\n count\n cursor\n items {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n status\n top10HoldersPercent\n }\n}"): (typeof documents)["query Holders($input: HoldersInput!) {\n holders(input: $input) {\n count\n cursor\n items {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n status\n top10HoldersPercent\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -413,15 +411,15 @@ export function graphql(source: "query LiquidityMetadataByToken($networkId: Int! /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "query ListPairsForToken($limit: Int, $networkId: Int!, $tokenAddress: String!) {\n listPairsForToken(\n limit: $limit\n networkId: $networkId\n tokenAddress: $tokenAddress\n ) {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n}"): (typeof documents)["query ListPairsForToken($limit: Int, $networkId: Int!, $tokenAddress: String!) {\n listPairsForToken(\n limit: $limit\n networkId: $networkId\n tokenAddress: $tokenAddress\n ) {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n}"]; +export function graphql(source: "query ListPairsForToken($limit: Int, $networkId: Int!, $tokenAddress: String!) {\n listPairsForToken(\n limit: $limit\n networkId: $networkId\n tokenAddress: $tokenAddress\n ) {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n}"): (typeof documents)["query ListPairsForToken($limit: Int, $networkId: Int!, $tokenAddress: String!) {\n listPairsForToken(\n limit: $limit\n networkId: $networkId\n tokenAddress: $tokenAddress\n ) {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "query ListPairsWithMetadataForToken($limit: Int, $networkId: Int!, $tokenAddress: String!) {\n listPairsWithMetadataForToken(\n limit: $limit\n networkId: $networkId\n tokenAddress: $tokenAddress\n ) {\n results {\n backingToken {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n exchange {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n liquidity\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n quoteToken\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n volume\n }\n }\n}"): (typeof documents)["query ListPairsWithMetadataForToken($limit: Int, $networkId: Int!, $tokenAddress: String!) {\n listPairsWithMetadataForToken(\n limit: $limit\n networkId: $networkId\n tokenAddress: $tokenAddress\n ) {\n results {\n backingToken {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n exchange {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n liquidity\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n quoteToken\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n volume\n }\n }\n}"]; +export function graphql(source: "query ListPairsWithMetadataForToken($limit: Int, $networkId: Int!, $tokenAddress: String!) {\n listPairsWithMetadataForToken(\n limit: $limit\n networkId: $networkId\n tokenAddress: $tokenAddress\n ) {\n results {\n backingToken {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n exchange {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n liquidity\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n quoteToken\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n volume\n }\n }\n}"): (typeof documents)["query ListPairsWithMetadataForToken($limit: Int, $networkId: Int!, $tokenAddress: String!) {\n listPairsWithMetadataForToken(\n limit: $limit\n networkId: $networkId\n tokenAddress: $tokenAddress\n ) {\n results {\n backingToken {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n exchange {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n liquidity\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n quoteToken\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n volume\n }\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "query PairMetadata($pairId: String!, $quoteToken: QuoteToken, $statsType: TokenPairStatisticsType) {\n pairMetadata(pairId: $pairId, quoteToken: $quoteToken, statsType: $statsType) {\n createdAt\n enhancedToken0 {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n enhancedToken1 {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n exchangeId\n fee\n highPrice1\n highPrice4\n highPrice5m\n highPrice12\n highPrice24\n id\n liquidity\n liquidityToken\n lowPrice1\n lowPrice4\n lowPrice5m\n lowPrice12\n lowPrice24\n networkId\n nonLiquidityToken\n pairAddress\n price\n priceChange1\n priceChange4\n priceChange5m\n priceChange12\n priceChange24\n priceNonQuoteToken\n quoteToken\n statsType\n tickSpacing\n token0 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n token1 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n top10HoldersPercent\n volume1\n volume4\n volume5m\n volume12\n volume24\n walletActivity {\n bundlerCount\n bundlerHeldPercentage\n devHeldPercentage\n insiderCount\n insiderHeldPercentage\n sniperCount\n sniperHeldPercentage\n }\n }\n}"): (typeof documents)["query PairMetadata($pairId: String!, $quoteToken: QuoteToken, $statsType: TokenPairStatisticsType) {\n pairMetadata(pairId: $pairId, quoteToken: $quoteToken, statsType: $statsType) {\n createdAt\n enhancedToken0 {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n enhancedToken1 {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n exchangeId\n fee\n highPrice1\n highPrice4\n highPrice5m\n highPrice12\n highPrice24\n id\n liquidity\n liquidityToken\n lowPrice1\n lowPrice4\n lowPrice5m\n lowPrice12\n lowPrice24\n networkId\n nonLiquidityToken\n pairAddress\n price\n priceChange1\n priceChange4\n priceChange5m\n priceChange12\n priceChange24\n priceNonQuoteToken\n quoteToken\n statsType\n tickSpacing\n token0 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n token1 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n top10HoldersPercent\n volume1\n volume4\n volume5m\n volume12\n volume24\n walletActivity {\n bundlerCount\n bundlerHeldPercentage\n devHeldPercentage\n insiderCount\n insiderHeldPercentage\n sniperCount\n sniperHeldPercentage\n }\n }\n}"]; +export function graphql(source: "query PairMetadata($pairId: String!, $quoteToken: QuoteToken, $statsType: TokenPairStatisticsType) {\n pairMetadata(pairId: $pairId, quoteToken: $quoteToken, statsType: $statsType) {\n createdAt\n enhancedToken0 {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n enhancedToken1 {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n exchangeId\n fee\n highPrice1\n highPrice4\n highPrice5m\n highPrice12\n highPrice24\n id\n liquidity\n liquidityToken\n lowPrice1\n lowPrice4\n lowPrice5m\n lowPrice12\n lowPrice24\n networkId\n nonLiquidityToken\n pairAddress\n price\n priceChange1\n priceChange4\n priceChange5m\n priceChange12\n priceChange24\n priceNonQuoteToken\n quoteToken\n statsType\n tickSpacing\n token0 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n token1 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n top10HoldersPercent\n volume1\n volume4\n volume5m\n volume12\n volume24\n walletActivity {\n bundlerCount\n bundlerHeldPercentage\n devHeldPercentage\n insiderCount\n insiderHeldPercentage\n sniperCount\n sniperHeldPercentage\n }\n }\n}"): (typeof documents)["query PairMetadata($pairId: String!, $quoteToken: QuoteToken, $statsType: TokenPairStatisticsType) {\n pairMetadata(pairId: $pairId, quoteToken: $quoteToken, statsType: $statsType) {\n createdAt\n enhancedToken0 {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n enhancedToken1 {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n exchangeId\n fee\n highPrice1\n highPrice4\n highPrice5m\n highPrice12\n highPrice24\n id\n liquidity\n liquidityToken\n lowPrice1\n lowPrice4\n lowPrice5m\n lowPrice12\n lowPrice24\n networkId\n nonLiquidityToken\n pairAddress\n price\n priceChange1\n priceChange4\n priceChange5m\n priceChange12\n priceChange24\n priceNonQuoteToken\n quoteToken\n statsType\n tickSpacing\n token0 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n token1 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n top10HoldersPercent\n volume1\n volume4\n volume5m\n volume12\n volume24\n walletActivity {\n bundlerCount\n bundlerHeldPercentage\n devHeldPercentage\n insiderCount\n insiderHeldPercentage\n sniperCount\n sniperHeldPercentage\n }\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -473,7 +471,7 @@ export function graphql(source: "query PredictionTrades($input: PredictionTrades /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "query Token($input: TokenInput!) {\n token(input: $input) {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n}"): (typeof documents)["query Token($input: TokenInput!) {\n token(input: $input) {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n}"]; +export function graphql(source: "query Token($input: TokenInput!) {\n token(input: $input) {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n}"): (typeof documents)["query Token($input: TokenInput!) {\n token(input: $input) {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -489,7 +487,7 @@ export function graphql(source: "query TokenTopTraders($input: TokenTopTradersIn /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "query Tokens($ids: [TokenInput!]) {\n tokens(ids: $ids) {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n}"): (typeof documents)["query Tokens($ids: [TokenInput!]) {\n tokens(ids: $ids) {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n}"]; +export function graphql(source: "query Tokens($ids: [TokenInput!]) {\n tokens(ids: $ids) {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n}"): (typeof documents)["query Tokens($ids: [TokenInput!]) {\n tokens(ids: $ids) {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -505,11 +503,11 @@ export function graphql(source: "query WalletChart($input: WalletChartInput!) {\ /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "subscription OnBalanceUpdated($walletAddress: String!) {\n onBalanceUpdated(walletAddress: $walletAddress) {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n}"): (typeof documents)["subscription OnBalanceUpdated($walletAddress: String!) {\n onBalanceUpdated(walletAddress: $walletAddress) {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n}"]; +export function graphql(source: "subscription OnBalanceUpdated($walletAddress: String!) {\n onBalanceUpdated(walletAddress: $walletAddress) {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n}"): (typeof documents)["subscription OnBalanceUpdated($walletAddress: String!) {\n onBalanceUpdated(walletAddress: $walletAddress) {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "subscription OnBarsUpdated($pairId: String, $quoteToken: QuoteToken) {\n onBarsUpdated(pairId: $pairId, quoteToken: $quoteToken) {\n aggregates {\n r1 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r1D {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r1S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r5 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r5S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r7D {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r15 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r15S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r30 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r30S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r60 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r240 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r720 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n }\n eventSortKey\n networkId\n pairAddress\n pairId\n quoteToken\n quoteTokenAddress\n statsType\n timestamp\n }\n}"): (typeof documents)["subscription OnBarsUpdated($pairId: String, $quoteToken: QuoteToken) {\n onBarsUpdated(pairId: $pairId, quoteToken: $quoteToken) {\n aggregates {\n r1 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r1D {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r1S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r5 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r5S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r7D {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r15 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r15S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r30 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r30S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r60 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r240 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r720 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n }\n eventSortKey\n networkId\n pairAddress\n pairId\n quoteToken\n quoteTokenAddress\n statsType\n timestamp\n }\n}"]; +export function graphql(source: "subscription OnBarsUpdated($commitmentLevel: [BarCommitmentLevel!], $pairId: String, $quoteToken: QuoteToken) {\n onBarsUpdated(\n commitmentLevel: $commitmentLevel\n pairId: $pairId\n quoteToken: $quoteToken\n ) {\n aggregates {\n r1 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r1D {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r1S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r5 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r5S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r7D {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r15 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r15S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r30 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r30S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r60 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r240 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r720 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n }\n commitmentLevel\n eventSortKey\n networkId\n pairAddress\n pairId\n quoteToken\n quoteTokenAddress\n statsType\n timestamp\n }\n}"): (typeof documents)["subscription OnBarsUpdated($commitmentLevel: [BarCommitmentLevel!], $pairId: String, $quoteToken: QuoteToken) {\n onBarsUpdated(\n commitmentLevel: $commitmentLevel\n pairId: $pairId\n quoteToken: $quoteToken\n ) {\n aggregates {\n r1 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r1D {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r1S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r5 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r5S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r7D {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r15 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r15S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r30 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r30S {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r60 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r240 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n r720 {\n t\n token {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n baseFees\n builderTips\n buyVolume\n buyers\n buys\n c\n h\n l\n l1DataFees\n liquidity\n o\n poolFees\n priorityFees\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n }\n }\n commitmentLevel\n eventSortKey\n networkId\n pairAddress\n pairId\n quoteToken\n quoteTokenAddress\n statsType\n timestamp\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -533,23 +531,19 @@ export function graphql(source: "subscription OnEventLabelCreated($id: String) { /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "subscription OnEventsCreated($address: String, $id: String, $networkId: Int, $quoteToken: QuoteToken) {\n onEventsCreated(\n address: $address\n id: $id\n networkId: $networkId\n quoteToken: $quoteToken\n ) {\n address\n events {\n address\n baseTokenPrice\n blockHash\n blockNumber\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n id\n networkId\n quoteToken\n }\n}"): (typeof documents)["subscription OnEventsCreated($address: String, $id: String, $networkId: Int, $quoteToken: QuoteToken) {\n onEventsCreated(\n address: $address\n id: $id\n networkId: $networkId\n quoteToken: $quoteToken\n ) {\n address\n events {\n address\n baseTokenPrice\n blockHash\n blockNumber\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n id\n networkId\n quoteToken\n }\n}"]; +export function graphql(source: "subscription OnEventsCreated($address: String, $commitmentLevel: [EventCommitmentLevel!], $id: String, $networkId: Int, $quoteToken: QuoteToken) {\n onEventsCreated(\n address: $address\n commitmentLevel: $commitmentLevel\n id: $id\n networkId: $networkId\n quoteToken: $quoteToken\n ) {\n address\n events {\n address\n baseTokenPrice\n blockHash\n blockNumber\n commitmentLevel\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n supplementalIndex\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n id\n networkId\n quoteToken\n }\n}"): (typeof documents)["subscription OnEventsCreated($address: String, $commitmentLevel: [EventCommitmentLevel!], $id: String, $networkId: Int, $quoteToken: QuoteToken) {\n onEventsCreated(\n address: $address\n commitmentLevel: $commitmentLevel\n id: $id\n networkId: $networkId\n quoteToken: $quoteToken\n ) {\n address\n events {\n address\n baseTokenPrice\n blockHash\n blockNumber\n commitmentLevel\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n supplementalIndex\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n id\n networkId\n quoteToken\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "subscription OnEventsCreatedByMaker($input: OnEventsCreatedByMakerInput!) {\n onEventsCreatedByMaker(input: $input) {\n events {\n address\n baseTokenPrice\n blockHash\n blockNumber\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n makerAddress\n }\n}"): (typeof documents)["subscription OnEventsCreatedByMaker($input: OnEventsCreatedByMakerInput!) {\n onEventsCreatedByMaker(input: $input) {\n events {\n address\n baseTokenPrice\n blockHash\n blockNumber\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n makerAddress\n }\n}"]; +export function graphql(source: "subscription OnEventsCreatedByMaker($commitmentLevel: [EventCommitmentLevel!], $input: OnEventsCreatedByMakerInput!) {\n onEventsCreatedByMaker(commitmentLevel: $commitmentLevel, input: $input) {\n events {\n address\n baseTokenPrice\n blockHash\n blockNumber\n commitmentLevel\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n supplementalIndex\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n makerAddress\n }\n}"): (typeof documents)["subscription OnEventsCreatedByMaker($commitmentLevel: [EventCommitmentLevel!], $input: OnEventsCreatedByMakerInput!) {\n onEventsCreatedByMaker(commitmentLevel: $commitmentLevel, input: $input) {\n events {\n address\n baseTokenPrice\n blockHash\n blockNumber\n commitmentLevel\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n supplementalIndex\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n makerAddress\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "subscription OnFilterTokenUpdated($excludeTokens: [String], $filters: TokenFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [TokenRanking], $statsType: TokenPairStatisticsType, $tokens: [String], $updatePeriod: Int, $useAggregatedStats: Boolean) {\n onFilterTokensUpdated(\n excludeTokens: $excludeTokens\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n statsType: $statsType\n tokens: $tokens\n updatePeriod: $updatePeriod\n useAggregatedStats: $useAggregatedStats\n ) {\n updates {\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n buyCount4\n buyCount5m\n buyCount12\n buyCount24\n buyVolume1\n buyVolume4\n buyVolume5m\n buyVolume12\n buyVolume24\n change1\n change4\n change5m\n change12\n change24\n circulatingMarketCap\n createdAt\n devHeldPercentage\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n high1\n high4\n high5m\n high12\n high24\n holders\n insiderCount\n insiderHeldPercentage\n isScam\n lastTransaction\n liquidPair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n liquidPairLiquidity\n liquidPairPriceUSD\n liquidity\n low1\n low4\n low5m\n low12\n low24\n marketCap\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n potentialScamReasons\n priceUSD\n quoteToken\n sellCount1\n sellCount4\n sellCount5m\n sellCount12\n sellCount24\n sellVolume1\n sellVolume4\n sellVolume5m\n sellVolume12\n sellVolume24\n sniperCount\n sniperHeldPercentage\n swapPct1dOldWallet\n swapPct7dOldWallet\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n trendingScore\n txnCount1\n txnCount4\n txnCount5m\n txnCount12\n txnCount24\n uniqueBuys1\n uniqueBuys4\n uniqueBuys5m\n uniqueBuys12\n uniqueBuys24\n uniqueSells1\n uniqueSells4\n uniqueSells5m\n uniqueSells12\n uniqueSells24\n uniqueTransactions1\n uniqueTransactions4\n uniqueTransactions5m\n uniqueTransactions12\n uniqueTransactions24\n volume1\n volume4\n volume5m\n volume12\n volume24\n volumeChange1\n volumeChange4\n volumeChange5m\n volumeChange12\n volumeChange24\n walletAgeAvg\n walletAgeStd\n }\n }\n}"): (typeof documents)["subscription OnFilterTokenUpdated($excludeTokens: [String], $filters: TokenFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [TokenRanking], $statsType: TokenPairStatisticsType, $tokens: [String], $updatePeriod: Int, $useAggregatedStats: Boolean) {\n onFilterTokensUpdated(\n excludeTokens: $excludeTokens\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n statsType: $statsType\n tokens: $tokens\n updatePeriod: $updatePeriod\n useAggregatedStats: $useAggregatedStats\n ) {\n updates {\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n buyCount4\n buyCount5m\n buyCount12\n buyCount24\n buyVolume1\n buyVolume4\n buyVolume5m\n buyVolume12\n buyVolume24\n change1\n change4\n change5m\n change12\n change24\n circulatingMarketCap\n createdAt\n devHeldPercentage\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n high1\n high4\n high5m\n high12\n high24\n holders\n insiderCount\n insiderHeldPercentage\n isScam\n lastTransaction\n liquidPair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n liquidPairLiquidity\n liquidPairPriceUSD\n liquidity\n low1\n low4\n low5m\n low12\n low24\n marketCap\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n potentialScamReasons\n priceUSD\n quoteToken\n sellCount1\n sellCount4\n sellCount5m\n sellCount12\n sellCount24\n sellVolume1\n sellVolume4\n sellVolume5m\n sellVolume12\n sellVolume24\n sniperCount\n sniperHeldPercentage\n swapPct1dOldWallet\n swapPct7dOldWallet\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n trendingScore\n txnCount1\n txnCount4\n txnCount5m\n txnCount12\n txnCount24\n uniqueBuys1\n uniqueBuys4\n uniqueBuys5m\n uniqueBuys12\n uniqueBuys24\n uniqueSells1\n uniqueSells4\n uniqueSells5m\n uniqueSells12\n uniqueSells24\n uniqueTransactions1\n uniqueTransactions4\n uniqueTransactions5m\n uniqueTransactions12\n uniqueTransactions24\n volume1\n volume4\n volume5m\n volume12\n volume24\n volumeChange1\n volumeChange4\n volumeChange5m\n volumeChange12\n volumeChange24\n walletAgeAvg\n walletAgeStd\n }\n }\n}"]; +export function graphql(source: "subscription OnFilterTokensUpdated($excludeTokens: [String], $filters: TokenFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [TokenRanking], $statsType: TokenPairStatisticsType, $tokens: [String], $updatePeriod: Int, $useAggregatedStats: Boolean) {\n onFilterTokensUpdated(\n excludeTokens: $excludeTokens\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n statsType: $statsType\n tokens: $tokens\n updatePeriod: $updatePeriod\n useAggregatedStats: $useAggregatedStats\n ) {\n updates {\n baseFees1\n baseFees4\n baseFees5m\n baseFees12\n baseFees24\n builderTips1\n builderTips4\n builderTips5m\n builderTips12\n builderTips24\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n buyCount4\n buyCount5m\n buyCount12\n buyCount24\n buyVolume1\n buyVolume4\n buyVolume5m\n buyVolume12\n buyVolume24\n change1\n change4\n change5m\n change12\n change24\n circulatingMarketCap\n createdAt\n devHeldPercentage\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n feeToVolumeRatio1\n feeToVolumeRatio4\n feeToVolumeRatio5m\n feeToVolumeRatio12\n feeToVolumeRatio24\n high1\n high4\n high5m\n high12\n high24\n holders\n insiderCount\n insiderHeldPercentage\n isScam\n l1DataFees1\n l1DataFees4\n l1DataFees5m\n l1DataFees12\n l1DataFees24\n lastTransaction\n liquidPair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n liquidPairLiquidity\n liquidPairPriceUSD\n liquidity\n low1\n low4\n low5m\n low12\n low24\n marketCap\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n poolFees1\n poolFees4\n poolFees5m\n poolFees12\n poolFees24\n potentialScamReasons\n priceUSD\n priorityFees1\n priorityFees4\n priorityFees5m\n priorityFees12\n priorityFees24\n quoteToken\n sellCount1\n sellCount4\n sellCount5m\n sellCount12\n sellCount24\n sellVolume1\n sellVolume4\n sellVolume5m\n sellVolume12\n sellVolume24\n sniperCount\n sniperHeldPercentage\n swapPct1dOldWallet\n swapPct7dOldWallet\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n totalFees1\n totalFees4\n totalFees5m\n totalFees12\n totalFees24\n trendingScore\n txnCount1\n txnCount4\n txnCount5m\n txnCount12\n txnCount24\n uniqueBuys1\n uniqueBuys4\n uniqueBuys5m\n uniqueBuys12\n uniqueBuys24\n uniqueSells1\n uniqueSells4\n uniqueSells5m\n uniqueSells12\n uniqueSells24\n uniqueTransactions1\n uniqueTransactions4\n uniqueTransactions5m\n uniqueTransactions12\n uniqueTransactions24\n volume1\n volume4\n volume5m\n volume12\n volume24\n volumeChange1\n volumeChange4\n volumeChange5m\n volumeChange12\n volumeChange24\n walletAgeAvg\n walletAgeStd\n }\n }\n}"): (typeof documents)["subscription OnFilterTokensUpdated($excludeTokens: [String], $filters: TokenFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [TokenRanking], $statsType: TokenPairStatisticsType, $tokens: [String], $updatePeriod: Int, $useAggregatedStats: Boolean) {\n onFilterTokensUpdated(\n excludeTokens: $excludeTokens\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n statsType: $statsType\n tokens: $tokens\n updatePeriod: $updatePeriod\n useAggregatedStats: $useAggregatedStats\n ) {\n updates {\n baseFees1\n baseFees4\n baseFees5m\n baseFees12\n baseFees24\n builderTips1\n builderTips4\n builderTips5m\n builderTips12\n builderTips24\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n buyCount4\n buyCount5m\n buyCount12\n buyCount24\n buyVolume1\n buyVolume4\n buyVolume5m\n buyVolume12\n buyVolume24\n change1\n change4\n change5m\n change12\n change24\n circulatingMarketCap\n createdAt\n devHeldPercentage\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n feeToVolumeRatio1\n feeToVolumeRatio4\n feeToVolumeRatio5m\n feeToVolumeRatio12\n feeToVolumeRatio24\n high1\n high4\n high5m\n high12\n high24\n holders\n insiderCount\n insiderHeldPercentage\n isScam\n l1DataFees1\n l1DataFees4\n l1DataFees5m\n l1DataFees12\n l1DataFees24\n lastTransaction\n liquidPair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n liquidPairLiquidity\n liquidPairPriceUSD\n liquidity\n low1\n low4\n low5m\n low12\n low24\n marketCap\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n poolFees1\n poolFees4\n poolFees5m\n poolFees12\n poolFees24\n potentialScamReasons\n priceUSD\n priorityFees1\n priorityFees4\n priorityFees5m\n priorityFees12\n priorityFees24\n quoteToken\n sellCount1\n sellCount4\n sellCount5m\n sellCount12\n sellCount24\n sellVolume1\n sellVolume4\n sellVolume5m\n sellVolume12\n sellVolume24\n sniperCount\n sniperHeldPercentage\n swapPct1dOldWallet\n swapPct7dOldWallet\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n totalFees1\n totalFees4\n totalFees5m\n totalFees12\n totalFees24\n trendingScore\n txnCount1\n txnCount4\n txnCount5m\n txnCount12\n txnCount24\n uniqueBuys1\n uniqueBuys4\n uniqueBuys5m\n uniqueBuys12\n uniqueBuys24\n uniqueSells1\n uniqueSells4\n uniqueSells5m\n uniqueSells12\n uniqueSells24\n uniqueTransactions1\n uniqueTransactions4\n uniqueTransactions5m\n uniqueTransactions12\n uniqueTransactions24\n volume1\n volume4\n volume5m\n volume12\n volume24\n volumeChange1\n volumeChange4\n volumeChange5m\n volumeChange12\n volumeChange24\n walletAgeAvg\n walletAgeStd\n }\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "subscription OnFilterTokensUpdated($excludeTokens: [String], $filters: TokenFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [TokenRanking], $statsType: TokenPairStatisticsType, $tokens: [String], $updatePeriod: Int, $useAggregatedStats: Boolean) {\n onFilterTokensUpdated(\n excludeTokens: $excludeTokens\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n statsType: $statsType\n tokens: $tokens\n updatePeriod: $updatePeriod\n useAggregatedStats: $useAggregatedStats\n ) {\n updates {\n baseFees1\n baseFees4\n baseFees5m\n baseFees12\n baseFees24\n builderTips1\n builderTips4\n builderTips5m\n builderTips12\n builderTips24\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n buyCount4\n buyCount5m\n buyCount12\n buyCount24\n buyVolume1\n buyVolume4\n buyVolume5m\n buyVolume12\n buyVolume24\n change1\n change4\n change5m\n change12\n change24\n circulatingMarketCap\n createdAt\n devHeldPercentage\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n feeToVolumeRatio1\n feeToVolumeRatio4\n feeToVolumeRatio5m\n feeToVolumeRatio12\n feeToVolumeRatio24\n high1\n high4\n high5m\n high12\n high24\n holders\n insiderCount\n insiderHeldPercentage\n isScam\n l1DataFees1\n l1DataFees4\n l1DataFees5m\n l1DataFees12\n l1DataFees24\n lastTransaction\n liquidPair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n liquidPairLiquidity\n liquidPairPriceUSD\n liquidity\n low1\n low4\n low5m\n low12\n low24\n marketCap\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n poolFees1\n poolFees4\n poolFees5m\n poolFees12\n poolFees24\n potentialScamReasons\n priceUSD\n priorityFees1\n priorityFees4\n priorityFees5m\n priorityFees12\n priorityFees24\n quoteToken\n sellCount1\n sellCount4\n sellCount5m\n sellCount12\n sellCount24\n sellVolume1\n sellVolume4\n sellVolume5m\n sellVolume12\n sellVolume24\n sniperCount\n sniperHeldPercentage\n swapPct1dOldWallet\n swapPct7dOldWallet\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n totalFees1\n totalFees4\n totalFees5m\n totalFees12\n totalFees24\n trendingScore\n txnCount1\n txnCount4\n txnCount5m\n txnCount12\n txnCount24\n uniqueBuys1\n uniqueBuys4\n uniqueBuys5m\n uniqueBuys12\n uniqueBuys24\n uniqueSells1\n uniqueSells4\n uniqueSells5m\n uniqueSells12\n uniqueSells24\n uniqueTransactions1\n uniqueTransactions4\n uniqueTransactions5m\n uniqueTransactions12\n uniqueTransactions24\n volume1\n volume4\n volume5m\n volume12\n volume24\n volumeChange1\n volumeChange4\n volumeChange5m\n volumeChange12\n volumeChange24\n walletAgeAvg\n walletAgeStd\n }\n }\n}"): (typeof documents)["subscription OnFilterTokensUpdated($excludeTokens: [String], $filters: TokenFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [TokenRanking], $statsType: TokenPairStatisticsType, $tokens: [String], $updatePeriod: Int, $useAggregatedStats: Boolean) {\n onFilterTokensUpdated(\n excludeTokens: $excludeTokens\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n statsType: $statsType\n tokens: $tokens\n updatePeriod: $updatePeriod\n useAggregatedStats: $useAggregatedStats\n ) {\n updates {\n baseFees1\n baseFees4\n baseFees5m\n baseFees12\n baseFees24\n builderTips1\n builderTips4\n builderTips5m\n builderTips12\n builderTips24\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n buyCount4\n buyCount5m\n buyCount12\n buyCount24\n buyVolume1\n buyVolume4\n buyVolume5m\n buyVolume12\n buyVolume24\n change1\n change4\n change5m\n change12\n change24\n circulatingMarketCap\n createdAt\n devHeldPercentage\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n feeToVolumeRatio1\n feeToVolumeRatio4\n feeToVolumeRatio5m\n feeToVolumeRatio12\n feeToVolumeRatio24\n high1\n high4\n high5m\n high12\n high24\n holders\n insiderCount\n insiderHeldPercentage\n isScam\n l1DataFees1\n l1DataFees4\n l1DataFees5m\n l1DataFees12\n l1DataFees24\n lastTransaction\n liquidPair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n liquidPairLiquidity\n liquidPairPriceUSD\n liquidity\n low1\n low4\n low5m\n low12\n low24\n marketCap\n pair {\n address\n createdAt\n exchangeHash\n fee\n id\n networkId\n pooled {\n token0\n token1\n }\n protocol\n protocolData {\n ... on ArenaTradeData {\n tokenId\n type\n }\n ... on PumpData {\n creator\n type\n }\n ... on UniswapV4Data {\n isDynamicFee\n isToken0NetworkToken\n type\n uniswapV4HookAddress\n }\n }\n tickSpacing\n token0\n token0Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n token1\n token1Data {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n virtualPooled {\n token0\n token1\n }\n }\n poolFees1\n poolFees4\n poolFees5m\n poolFees12\n poolFees24\n potentialScamReasons\n priceUSD\n priorityFees1\n priorityFees4\n priorityFees5m\n priorityFees12\n priorityFees24\n quoteToken\n sellCount1\n sellCount4\n sellCount5m\n sellCount12\n sellCount24\n sellVolume1\n sellVolume4\n sellVolume5m\n sellVolume12\n sellVolume24\n sniperCount\n sniperHeldPercentage\n swapPct1dOldWallet\n swapPct7dOldWallet\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n totalFees1\n totalFees4\n totalFees5m\n totalFees12\n totalFees24\n trendingScore\n txnCount1\n txnCount4\n txnCount5m\n txnCount12\n txnCount24\n uniqueBuys1\n uniqueBuys4\n uniqueBuys5m\n uniqueBuys12\n uniqueBuys24\n uniqueSells1\n uniqueSells4\n uniqueSells5m\n uniqueSells12\n uniqueSells24\n uniqueTransactions1\n uniqueTransactions4\n uniqueTransactions5m\n uniqueTransactions12\n uniqueTransactions24\n volume1\n volume4\n volume5m\n volume12\n volume24\n volumeChange1\n volumeChange4\n volumeChange5m\n volumeChange12\n volumeChange24\n walletAgeAvg\n walletAgeStd\n }\n }\n}"]; -/** - * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. - */ -export function graphql(source: "subscription OnHoldersUpdated($tokenId: String!) {\n onHoldersUpdated(tokenId: $tokenId) {\n balances {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n holders\n networkId\n tokenAddress\n tokenId\n }\n}"): (typeof documents)["subscription OnHoldersUpdated($tokenId: String!) {\n onHoldersUpdated(tokenId: $tokenId) {\n balances {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n holders\n networkId\n tokenAddress\n tokenId\n }\n}"]; +export function graphql(source: "subscription OnHoldersUpdated($tokenId: String!) {\n onHoldersUpdated(tokenId: $tokenId) {\n balances {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n holders\n networkId\n tokenAddress\n tokenId\n }\n}"): (typeof documents)["subscription OnHoldersUpdated($tokenId: String!) {\n onHoldersUpdated(tokenId: $tokenId) {\n balances {\n address\n balance\n balanceUsd\n firstHeldTimestamp\n liquidityUsd\n networkId\n shiftedBalance\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n holders\n networkId\n tokenAddress\n tokenId\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -561,11 +555,11 @@ export function graphql(source: "subscription OnLatestTokens($id: String, $netwo /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "subscription OnLaunchpadTokenEvent($input: OnLaunchpadTokenEventInput) {\n onLaunchpadTokenEvent(input: $input) {\n address\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n devHeldPercentage\n eventType\n holders\n insiderCount\n insiderHeldPercentage\n launchpadName\n liquidity\n marketCap\n networkId\n price\n protocol\n sellCount1\n sniperCount\n sniperHeldPercentage\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n transactions1\n volume1\n }\n}"): (typeof documents)["subscription OnLaunchpadTokenEvent($input: OnLaunchpadTokenEventInput) {\n onLaunchpadTokenEvent(input: $input) {\n address\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n devHeldPercentage\n eventType\n holders\n insiderCount\n insiderHeldPercentage\n launchpadName\n liquidity\n marketCap\n networkId\n price\n protocol\n sellCount1\n sniperCount\n sniperHeldPercentage\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n transactions1\n volume1\n }\n}"]; +export function graphql(source: "subscription OnLaunchpadTokenEvent($input: OnLaunchpadTokenEventInput) {\n onLaunchpadTokenEvent(input: $input) {\n address\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n devHeldPercentage\n eventType\n holders\n insiderCount\n insiderHeldPercentage\n launchpadName\n liquidity\n marketCap\n networkId\n price\n protocol\n sellCount1\n sniperCount\n sniperHeldPercentage\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n transactions1\n volume1\n }\n}"): (typeof documents)["subscription OnLaunchpadTokenEvent($input: OnLaunchpadTokenEventInput) {\n onLaunchpadTokenEvent(input: $input) {\n address\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n devHeldPercentage\n eventType\n holders\n insiderCount\n insiderHeldPercentage\n launchpadName\n liquidity\n marketCap\n networkId\n price\n protocol\n sellCount1\n sniperCount\n sniperHeldPercentage\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n transactions1\n volume1\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "subscription OnLaunchpadTokenEventBatch($input: OnLaunchpadTokenEventBatchInput) {\n onLaunchpadTokenEventBatch(input: $input) {\n address\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n devHeldPercentage\n eventType\n holders\n insiderCount\n insiderHeldPercentage\n launchpadName\n liquidity\n marketCap\n networkId\n price\n protocol\n sellCount1\n sniperCount\n sniperHeldPercentage\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n transactions1\n volume1\n }\n}"): (typeof documents)["subscription OnLaunchpadTokenEventBatch($input: OnLaunchpadTokenEventBatchInput) {\n onLaunchpadTokenEventBatch(input: $input) {\n address\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n devHeldPercentage\n eventType\n holders\n insiderCount\n insiderHeldPercentage\n launchpadName\n liquidity\n marketCap\n networkId\n price\n protocol\n sellCount1\n sniperCount\n sniperHeldPercentage\n token {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n transactions1\n volume1\n }\n}"]; +export function graphql(source: "subscription OnLaunchpadTokenEventBatch($input: OnLaunchpadTokenEventBatchInput) {\n onLaunchpadTokenEventBatch(input: $input) {\n address\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n devHeldPercentage\n eventType\n holders\n insiderCount\n insiderHeldPercentage\n launchpadName\n liquidity\n marketCap\n networkId\n price\n protocol\n sellCount1\n sniperCount\n sniperHeldPercentage\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n transactions1\n volume1\n }\n}"): (typeof documents)["subscription OnLaunchpadTokenEventBatch($input: OnLaunchpadTokenEventBatchInput) {\n onLaunchpadTokenEventBatch(input: $input) {\n address\n bundlerCount\n bundlerHeldPercentage\n buyCount1\n devHeldPercentage\n eventType\n holders\n insiderCount\n insiderHeldPercentage\n launchpadName\n liquidity\n marketCap\n networkId\n price\n protocol\n sellCount1\n sniperCount\n sniperHeldPercentage\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n top10HoldersPercent\n transactions1\n volume1\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -581,7 +575,7 @@ export function graphql(source: "subscription OnNftPoolEventsCreated($collection /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "subscription OnPairMetadataUpdated($id: String, $quoteToken: QuoteToken, $useNonLiquidityTokenAsQuoteToken: Boolean) {\n onPairMetadataUpdated(\n id: $id\n quoteToken: $quoteToken\n useNonLiquidityTokenAsQuoteToken: $useNonLiquidityTokenAsQuoteToken\n ) {\n createdAt\n enhancedToken0 {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n enhancedToken1 {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n exchangeId\n fee\n highPrice1\n highPrice4\n highPrice5m\n highPrice12\n highPrice24\n id\n liquidity\n liquidityToken\n lowPrice1\n lowPrice4\n lowPrice5m\n lowPrice12\n lowPrice24\n networkId\n nonLiquidityToken\n pairAddress\n price\n priceChange1\n priceChange4\n priceChange5m\n priceChange12\n priceChange24\n priceNonQuoteToken\n quoteToken\n statsType\n tickSpacing\n token0 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n token1 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n top10HoldersPercent\n volume1\n volume4\n volume5m\n volume12\n volume24\n walletActivity {\n bundlerCount\n bundlerHeldPercentage\n devHeldPercentage\n insiderCount\n insiderHeldPercentage\n sniperCount\n sniperHeldPercentage\n }\n }\n}"): (typeof documents)["subscription OnPairMetadataUpdated($id: String, $quoteToken: QuoteToken, $useNonLiquidityTokenAsQuoteToken: Boolean) {\n onPairMetadataUpdated(\n id: $id\n quoteToken: $quoteToken\n useNonLiquidityTokenAsQuoteToken: $useNonLiquidityTokenAsQuoteToken\n ) {\n createdAt\n enhancedToken0 {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n enhancedToken1 {\n address\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n id\n info {\n address\n circulatingSupply\n cmcId\n description\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n exchangeId\n fee\n highPrice1\n highPrice4\n highPrice5m\n highPrice12\n highPrice24\n id\n liquidity\n liquidityToken\n lowPrice1\n lowPrice4\n lowPrice5m\n lowPrice12\n lowPrice24\n networkId\n nonLiquidityToken\n pairAddress\n price\n priceChange1\n priceChange4\n priceChange5m\n priceChange12\n priceChange24\n priceNonQuoteToken\n quoteToken\n statsType\n tickSpacing\n token0 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n token1 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n top10HoldersPercent\n volume1\n volume4\n volume5m\n volume12\n volume24\n walletActivity {\n bundlerCount\n bundlerHeldPercentage\n devHeldPercentage\n insiderCount\n insiderHeldPercentage\n sniperCount\n sniperHeldPercentage\n }\n }\n}"]; +export function graphql(source: "subscription OnPairMetadataUpdated($id: String, $quoteToken: QuoteToken, $useNonLiquidityTokenAsQuoteToken: Boolean) {\n onPairMetadataUpdated(\n id: $id\n quoteToken: $quoteToken\n useNonLiquidityTokenAsQuoteToken: $useNonLiquidityTokenAsQuoteToken\n ) {\n createdAt\n enhancedToken0 {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n enhancedToken1 {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n exchangeId\n fee\n highPrice1\n highPrice4\n highPrice5m\n highPrice12\n highPrice24\n id\n liquidity\n liquidityToken\n lowPrice1\n lowPrice4\n lowPrice5m\n lowPrice12\n lowPrice24\n networkId\n nonLiquidityToken\n pairAddress\n price\n priceChange1\n priceChange4\n priceChange5m\n priceChange12\n priceChange24\n priceNonQuoteToken\n quoteToken\n statsType\n tickSpacing\n token0 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n token1 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n top10HoldersPercent\n volume1\n volume4\n volume5m\n volume12\n volume24\n walletActivity {\n bundlerCount\n bundlerHeldPercentage\n devHeldPercentage\n insiderCount\n insiderHeldPercentage\n sniperCount\n sniperHeldPercentage\n }\n }\n}"): (typeof documents)["subscription OnPairMetadataUpdated($id: String, $quoteToken: QuoteToken, $useNonLiquidityTokenAsQuoteToken: Boolean) {\n onPairMetadataUpdated(\n id: $id\n quoteToken: $quoteToken\n useNonLiquidityTokenAsQuoteToken: $useNonLiquidityTokenAsQuoteToken\n ) {\n createdAt\n enhancedToken0 {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n enhancedToken1 {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n token {\n address\n asset {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n bluechipRating\n cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\n decimals\n exchanges {\n address\n color\n exchangeVersion\n iconUrl\n id\n name\n networkId\n tradeUrl\n }\n freezable\n gridAssetId\n id\n info {\n address\n bluechipRating\n circulatingSupply\n cmcId\n description\n gridAssetId\n id\n imageBannerUrl\n imageLargeUrl\n imageSmallUrl\n imageThumbHash\n imageThumbUrl\n isScam\n name\n networkId\n symbol\n totalSupply\n videoExternalUrl\n }\n isFreezableValid\n isMintableValid\n isScam\n launchpad {\n completed\n completedAt\n completedSlot\n graduationPercent\n isCashbackEnabled\n launchpadIconUrl\n launchpadName\n launchpadProtocol\n migrated\n migratedAt\n migratedPoolAddress\n migratedSlot\n poolAddress\n }\n mintable\n name\n networkId\n organization {\n assets {\n assetDeployments {\n address\n assetId\n id\n networkId\n rootId\n standard\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n }\n description\n icon\n id\n name\n rootId\n status\n ticker\n type\n }\n descriptionLong\n descriptionShort\n foundingDate\n header\n icon\n logo\n name\n rootId\n sector\n socials {\n type\n url\n }\n tagLine\n type\n urls {\n type\n url\n }\n }\n profanity\n socialLinks {\n bitcointalk\n blog\n coingecko\n coinmarketcap\n discord\n email\n facebook\n github\n instagram\n linkedin\n reddit\n slack\n telegram\n twitch\n twitter\n website\n wechat\n whitepaper\n youtube\n }\n symbol\n top10HoldersPercent\n }\n exchangeId\n fee\n highPrice1\n highPrice4\n highPrice5m\n highPrice12\n highPrice24\n id\n liquidity\n liquidityToken\n lowPrice1\n lowPrice4\n lowPrice5m\n lowPrice12\n lowPrice24\n networkId\n nonLiquidityToken\n pairAddress\n price\n priceChange1\n priceChange4\n priceChange5m\n priceChange12\n priceChange24\n priceNonQuoteToken\n quoteToken\n statsType\n tickSpacing\n token0 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n token1 {\n address\n decimals\n labels {\n createdAt\n subType\n type\n }\n name\n networkId\n pooled\n price\n symbol\n }\n top10HoldersPercent\n volume1\n volume4\n volume5m\n volume12\n volume24\n walletActivity {\n bundlerCount\n bundlerHeldPercentage\n devHeldPercentage\n insiderCount\n insiderHeldPercentage\n sniperCount\n sniperHeldPercentage\n }\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -609,7 +603,7 @@ export function graphql(source: "subscription OnTokenBarsUpdated($networkId: Int /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "subscription OnTokenEventsCreated($input: OnTokenEventsCreatedInput!) {\n onTokenEventsCreated(input: $input) {\n events {\n address\n baseTokenPrice\n blockHash\n blockNumber\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n id\n }\n}"): (typeof documents)["subscription OnTokenEventsCreated($input: OnTokenEventsCreatedInput!) {\n onTokenEventsCreated(input: $input) {\n events {\n address\n baseTokenPrice\n blockHash\n blockNumber\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n id\n }\n}"]; +export function graphql(source: "subscription OnTokenEventsCreated($input: OnTokenEventsCreatedInput!) {\n onTokenEventsCreated(input: $input) {\n events {\n address\n baseTokenPrice\n blockHash\n blockNumber\n commitmentLevel\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n supplementalIndex\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n id\n }\n}"): (typeof documents)["subscription OnTokenEventsCreated($input: OnTokenEventsCreatedInput!) {\n onTokenEventsCreated(input: $input) {\n events {\n address\n baseTokenPrice\n blockHash\n blockNumber\n commitmentLevel\n data {\n ... on BurnEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on MintEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n tickLower\n tickUpper\n type\n }\n ... on PoolBalanceChangedEventData {\n amount0\n amount0Shifted\n amount1\n amount1Shifted\n liquidity0\n liquidity1\n protocolFeeAmount0\n protocolFeeAmount1\n sender\n token0\n token1\n type\n }\n ... on SwapEventData {\n amount0\n amount0In\n amount0Out\n amount1\n amount1In\n amount1Out\n amountNonLiquidityToken\n priceBaseToken\n priceBaseTokenTotal\n priceUsd\n priceUsdTotal\n tick\n type\n }\n }\n eventDisplayType\n eventType\n feeData {\n baseFeeNativeUnit\n builderTipNativeUnit\n dynamicFee\n estimatedPoolFee\n gasUsed\n l1DataFeeNativeUnit\n poolFeeAmountRaw\n poolFeeBps\n poolFeeRateRaw\n priorityFeeNativeUnit\n supplementalFeeData {\n ... on PumpAmmCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n ... on PumpCashbackFeeData {\n cashbackAmountLamports\n cashbackFeeBps\n type\n }\n }\n txEventCount\n }\n id\n labels {\n sandwich {\n label\n sandwichType\n token0DrainedAmount\n token1DrainedAmount\n }\n washtrade {\n label\n }\n }\n liquidityToken\n logIndex\n maker\n networkId\n quoteToken\n supplementalIndex\n timestamp\n token0Address\n token0PoolValueUsd\n token0SwapValueUsd\n token0ValueBase\n token1Address\n token1PoolValueUsd\n token1SwapValueUsd\n token1ValueBase\n transactionHash\n transactionIndex\n walletAge\n walletLabels\n }\n id\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ diff --git a/src/sdk/generated/graphql.ts b/src/sdk/generated/graphql.ts index 0f6eda4..393bb91 100644 --- a/src/sdk/generated/graphql.ts +++ b/src/sdk/generated/graphql.ts @@ -93,7 +93,7 @@ export type AddTokenLifecycleEventsOutput = { id: Scalars['String']['output']; }; -/** Response returned by `onUnconfirmedEventsCreatedByMaker`. */ +/** Response returned by deprecated `onUnconfirmedEventsCreatedByMaker`. Prefer `onEventsCreatedByMaker(commitmentLevel: [Processed])`. */ export type AddUnconfirmedEventsByMakerOutput = { __typename?: 'AddUnconfirmedEventsByMakerOutput'; /** A list of transactions for the maker. */ @@ -102,7 +102,7 @@ export type AddUnconfirmedEventsByMakerOutput = { makerAddress: Scalars['String']['output']; }; -/** Response returned by `onUnconfirmedEventsCreated`. */ +/** Response returned by deprecated `onUnconfirmedEventsCreated`. Prefer `onEventsCreated(commitmentLevel: [Processed])`. */ export type AddUnconfirmedEventsOutput = { __typename?: 'AddUnconfirmedEventsOutput'; /** The contract address of the pair. */ @@ -166,6 +166,48 @@ export type ArenaTradeData = { type: Scalars['String']['output']; }; +/** A Grid asset — a canonical representation of an on-chain token or instrument. */ +export type Asset = { + __typename?: 'Asset'; + /** Deployments of this asset across chains. */ + assetDeployments: Array; + /** A description of the asset. */ + description?: Maybe; + /** The asset icon URL. */ + icon?: Maybe; + /** The Grid asset ID. */ + id: Scalars['String']['output']; + /** The asset name. */ + name?: Maybe; + /** The Grid root ID for the parent organization. */ + rootId: Scalars['String']['output']; + /** The asset status. */ + status?: Maybe; + /** The asset ticker symbol. */ + ticker?: Maybe; + /** The asset type (e.g. `token`, `stablecoin`). */ + type?: Maybe; +}; + +/** A deployment of a Grid asset on a specific chain. */ +export type AssetDeployment = { + __typename?: 'AssetDeployment'; + /** The contract address of the deployment. */ + address: Scalars['String']['output']; + /** The Grid asset ID. */ + assetId: Scalars['String']['output']; + /** The deployment ID. */ + id: Scalars['String']['output']; + /** The network ID the asset is deployed on. */ + networkId: Scalars['Int']['output']; + /** The Grid root ID for the parent organization. */ + rootId: Scalars['String']['output']; + /** The token standard (e.g. `ERC20`, `SPL`). */ + standard?: Maybe; + /** The enhanced token this deployment represents. */ + token?: Maybe; +}; + /** Wallet balance of a token. */ export type Balance = { __typename?: 'Balance'; @@ -242,6 +284,12 @@ export enum BalancesSortAttribute { UsdValue = 'USD_VALUE' } +/** The commitment level of a streamed bar update for Solana subscriptions. */ +export enum BarCommitmentLevel { + Confirmed = 'Confirmed', + Processed = 'Processed' +} + /** Bar chart data to track price changes over time. */ export type BarsResponse = { __typename?: 'BarsResponse'; @@ -1492,6 +1540,10 @@ export type EnhancedToken = { __typename?: 'EnhancedToken'; /** The contract address of the token. */ address: Scalars['String']['output']; + /** The Grid asset associated with this token. */ + asset?: Maybe; + /** The Grid bluechip rating for this token (e.g. `A+`, `B-`). */ + bluechipRating?: Maybe; /** * The circulating supply of the token. * @deprecated Use the TokenInfo type @@ -1518,6 +1570,8 @@ export type EnhancedToken = { explorerData?: Maybe; /** Returns freeze authority address if token is freezable. If null, verify against isFreezableValid. */ freezable?: Maybe; + /** The Grid asset ID, if this token is linked to a Grid asset. */ + gridAssetId?: Maybe; /** The ID of the token (`address:networkId`). */ id: Scalars['String']['output']; /** @@ -1551,6 +1605,8 @@ export type EnhancedToken = { name?: Maybe; /** The network ID the token is deployed on. */ networkId: Scalars['Int']['output']; + /** The Grid organization associated with this token. */ + organization?: Maybe; /** * The amount of this token in the pair. * @deprecated Pooled can be found on the pair instead @@ -1672,6 +1728,8 @@ export type Event = { blockHash: Scalars['String']['output']; /** The block number for the transaction. */ blockNumber: Scalars['Int']['output']; + /** The commitment level of the event within the live stream. */ + commitmentLevel: EventCommitmentLevel; /** The event-specific data for the transaction. Can be `BurnEventData` or `MintEventData` or `SwapEventData`. */ data?: Maybe; /** A more specific breakdown of `eventType`. Splits `Swap` into `Buy` or `Sell`. */ @@ -1694,6 +1752,8 @@ export type Event = { networkId: Scalars['Int']['output']; /** The token of interest within the token's top pair. Can be `token0` or `token1`. */ quoteToken?: Maybe; + /** An optional unique identifier describing where the event appears within the transaction. */ + supplementalIndex?: Maybe; /** The unix timestamp for when the transaction occurred. */ timestamp: Scalars['Int']['output']; /** The address of the event's token0. */ @@ -1722,6 +1782,12 @@ export type Event = { walletLabels?: Maybe>; }; +/** The commitment level of a streamed event for Solana subscriptions. */ +export enum EventCommitmentLevel { + Confirmed = 'Confirmed', + Processed = 'Processed' +} + /** Response returned by `getTokenEvents`. */ export type EventConnection = { __typename?: 'EventConnection'; @@ -5871,8 +5937,10 @@ export type NumberFilter = { /** Response returned by `onBarsUpdated`. */ export type OnBarsUpdatedResponse = { __typename?: 'OnBarsUpdatedResponse'; - /** Price data broken down by resolution. */ + /** Price data broken down by resolution. For processed updates, this is a confirmed-shaped compatibility projection. */ aggregates: ResolutionBarData; + /** The commitment level of the bar update within the live stream. */ + commitmentLevel: BarCommitmentLevel; /** The sortKey for the bar (`blockNumber`#`transactionIndex`#`logIndex`, zero padded). For example, `0000000016414564#00000224#00000413`. */ eventSortKey: Scalars['String']['output']; /** The network ID the pair is deployed on. */ @@ -6008,7 +6076,7 @@ export type OnTokenEventsCreatedInput = { tokenAddress?: InputMaybe; }; -/** Response returned by `onUnconfirmedBarsUpdated`. */ +/** Response returned by deprecated `onUnconfirmedBarsUpdated`. Prefer `onBarsUpdated(commitmentLevel: [Processed])`. */ export type OnUnconfirmedBarsUpdated = { __typename?: 'OnUnconfirmedBarsUpdated'; /** Price data broken down by resolution. */ @@ -6029,7 +6097,7 @@ export type OnUnconfirmedBarsUpdated = { timestamp: Scalars['Int']['output']; }; -/** Input for `onUnconfirmedEventsCreatedByMaker`. */ +/** Input for deprecated `onUnconfirmedEventsCreatedByMaker`. */ export type OnUnconfirmedEventsCreatedByMakerInput = { /** The wallet address of the maker. */ makerAddress: Scalars['String']['input']; @@ -6061,6 +6129,56 @@ export type OneOfTokenTransferDirectionConditionInput = { oneOf: Array; }; +/** A Grid organization — the entity behind one or more on-chain assets. */ +export type Organization = { + __typename?: 'Organization'; + /** Assets managed by this organization. */ + assets: Array; + /** A detailed description of the organization. */ + descriptionLong?: Maybe; + /** A short description of the organization. */ + descriptionShort?: Maybe; + /** The founding date of the organization. */ + foundingDate?: Maybe; + header?: Maybe; + /** The organization's icon URL. */ + icon?: Maybe; + /** The organization's logo URL. */ + logo?: Maybe; + /** The organization name. */ + name: Scalars['String']['output']; + /** The Grid root ID for the organization. */ + rootId: Scalars['String']['output']; + /** The sector the organization operates in. */ + sector?: Maybe; + /** Social links for the organization. */ + socials: Array; + /** The organization's tagline. */ + tagLine?: Maybe; + /** The type of organization (e.g. `protocol`, `company`). */ + type?: Maybe; + /** URLs associated with the organization. */ + urls: Array; +}; + +/** A social link associated with a Grid organization. */ +export type OrganizationSocial = { + __typename?: 'OrganizationSocial'; + /** The type of social link (e.g. `twitter`, `discord`). */ + type?: Maybe; + /** The social URL. */ + url: Scalars['String']['output']; +}; + +/** A URL associated with a Grid organization. */ +export type OrganizationUrl = { + __typename?: 'OrganizationUrl'; + /** The type of URL (e.g. `website`, `docs`). */ + type?: Maybe; + /** The URL. */ + url: Scalars['String']['output']; +}; + /** Buy/sell volume breakdown including shares. */ export type OutcomeBuySellVolumeStats = { __typename?: 'OutcomeBuySellVolumeStats'; @@ -7687,12 +7805,24 @@ export type PredictionEventTopMarket = { label: Scalars['String']['output']; /** The unique identifier of the market. */ marketId: Scalars['String']['output']; + /** The ask CT of the outcome 0. */ + outcome0AskCT: Scalars['String']['output']; + /** The ask USD of the outcome 0. */ + outcome0AskUSD: Scalars['String']['output']; /** The bid CT of the outcome 0. */ outcome0BidCT: Scalars['String']['output']; + /** The bid USD of the outcome 0. */ + outcome0BidUSD: Scalars['String']['output']; /** The label of the outcome 0. */ outcome0Label: Scalars['String']['output']; + /** The ask CT of the outcome 1. */ + outcome1AskCT: Scalars['String']['output']; + /** The ask USD of the outcome 1. */ + outcome1AskUSD: Scalars['String']['output']; /** The bid CT of the outcome 1. */ outcome1BidCT: Scalars['String']['output']; + /** The bid USD of the outcome 1. */ + outcome1BidUSD: Scalars['String']['output']; /** The label of the outcome 1. */ outcome1Label: Scalars['String']['output']; /** The volume CT of the market in the last 1 day. */ @@ -7701,6 +7831,12 @@ export type PredictionEventTopMarket = { volumeCT1w: Scalars['String']['output']; /** The volume CT of the market in all time. */ volumeCTAll: Scalars['String']['output']; + /** The volume USD of the market in the last 1 day. */ + volumeUSD1d: Scalars['String']['output']; + /** The volume USD of the market in the last 1 week. */ + volumeUSD1w: Scalars['String']['output']; + /** The volume USD of the market in all time. */ + volumeUSDAll: Scalars['String']['output']; }; /** Input type of `predictionEventTopMarketsBars`. */ @@ -12003,7 +12139,7 @@ export type Subscription = { __typename?: 'Subscription'; /** Live-streamed balance updates for a given wallet. */ onBalanceUpdated: Balance; - /** Live-streamed bar chart data to track price changes over time. */ + /** Live-streamed bar chart data to track price changes over time. Processed updates are projected into `aggregates` using the confirmed bar shape. */ onBarsUpdated?: Maybe; /** Streams updated detailed stats for a specific prediction event. */ onDetailedPredictionEventStatsUpdated?: Maybe; @@ -12017,7 +12153,7 @@ export type Subscription = { onEventLabelCreated?: Maybe; /** Live-streamed transactions for a pair. */ onEventsCreated?: Maybe; - /** Live-streamed transactions for a maker. */ + /** Live-streamed transactions for a maker. On Solana, use `commitmentLevel` to request processed events, confirmed events, or both. */ onEventsCreatedByMaker?: Maybe; /** Live-streamed filter token updates for the current `filterTokens` result set. */ onFilterTokensUpdated?: Maybe; @@ -12070,11 +12206,20 @@ export type Subscription = { onTokenEventsCreated: AddTokenEventsOutput; /** Live-streamed token lifecycle events (mints and burns). */ onTokenLifecycleEventsCreated: AddTokenLifecycleEventsOutput; - /** Unconfirmed live-streamed bar chart data to track price changes over time. (Solana only) */ + /** + * Deprecated unconfirmed live-streamed bar chart data to track price changes over time. Use `onBarsUpdated(commitmentLevel: [Processed])` instead. (Solana only) + * @deprecated Use onBarsUpdated(commitmentLevel: [Processed]) instead + */ onUnconfirmedBarsUpdated?: Maybe; - /** Live-streamed unconfirmed transactions for a token. (Solana only) */ + /** + * Deprecated unconfirmed live-streamed transactions for a token. Use `onEventsCreated(commitmentLevel: [Processed])` instead. (Solana only) + * @deprecated Use onEventsCreated(commitmentLevel: [Processed]) instead + */ onUnconfirmedEventsCreated?: Maybe; - /** Live-streamed unconfirmed transactions for a maker. (Solana only) */ + /** + * Deprecated unconfirmed live-streamed transactions for a maker. Use `onEventsCreatedByMaker(commitmentLevel: [Processed])` instead. (Solana only) + * @deprecated Use onEventsCreatedByMaker(commitmentLevel: [Processed]) instead + */ onUnconfirmedEventsCreatedByMaker?: Maybe; }; @@ -12087,6 +12232,7 @@ export type SubscriptionOnBalanceUpdatedArgs = { /** Live-streamed prediction data subscriptions for trades, stats, and bar updates. */ export type SubscriptionOnBarsUpdatedArgs = { + commitmentLevel?: InputMaybe>; pairId?: InputMaybe; quoteToken?: InputMaybe; }; @@ -12126,6 +12272,7 @@ export type SubscriptionOnEventLabelCreatedArgs = { /** Live-streamed prediction data subscriptions for trades, stats, and bar updates. */ export type SubscriptionOnEventsCreatedArgs = { address?: InputMaybe; + commitmentLevel?: InputMaybe>; id?: InputMaybe; networkId?: InputMaybe; quoteToken?: InputMaybe; @@ -12134,6 +12281,7 @@ export type SubscriptionOnEventsCreatedArgs = { /** Live-streamed prediction data subscriptions for trades, stats, and bar updates. */ export type SubscriptionOnEventsCreatedByMakerArgs = { + commitmentLevel?: InputMaybe>; input: OnEventsCreatedByMakerInput; }; @@ -12864,6 +13012,8 @@ export type TokenFilterResult = { export type TokenFilters = { /** @deprecated Age isn't supported - use createdAt instead */ age?: InputMaybe; + /** Filter by Grid bluechip ratings. Returns tokens matching any of the provided ratings. */ + bluechipRatings?: InputMaybe>; /** Filter by number of wallets that have bundled the token */ bundlerCount?: InputMaybe; /** Filter by percentage of tokens held by bundlers */ @@ -12921,6 +13071,8 @@ export type TokenFilters = { feeToVolumeRatio24?: InputMaybe; /** The token is freezable. */ freezable?: InputMaybe; + /** Filter by whether the token has linked Grid asset data. */ + hasGridData?: InputMaybe; /** The highest price in USD in the past hour. */ high1?: InputMaybe; /** The highest price in USD in the past 4 hours. */ @@ -13100,12 +13252,16 @@ export type TokenInfo = { __typename?: 'TokenInfo'; /** The contract address of the token. */ address: Scalars['String']['output']; + /** The Grid bluechip rating for this token (e.g. `A+`, `B-`). */ + bluechipRating?: Maybe; /** The circulating supply of the token. */ circulatingSupply?: Maybe; /** The token ID on CoinMarketCap. */ cmcId?: Maybe; /** A description of the token. */ description?: Maybe; + /** The Grid asset ID, if this token is linked to a Grid asset. */ + gridAssetId?: Maybe; /** Uniquely identifies the token. */ id: Scalars['String']['output']; /** The token banner URL. */ @@ -15523,7 +15679,7 @@ export type RefreshBalancesMutationVariables = Exact<{ }>; -export type RefreshBalancesMutation = { __typename?: 'Mutation', refreshBalances: Array<{ __typename?: 'Balance', address: string, balance: string, balanceUsd?: string | null, firstHeldTimestamp?: number | null, liquidityUsd?: string | null, networkId: number, shiftedBalance: number, tokenAddress: string, tokenId: string, tokenPriceUsd?: string | null, walletId: string, token?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }; +export type RefreshBalancesMutation = { __typename?: 'Mutation', refreshBalances: Array<{ __typename?: 'Balance', address: string, balance: string, balanceUsd?: string | null, firstHeldTimestamp?: number | null, liquidityUsd?: string | null, networkId: number, shiftedBalance: number, tokenAddress: string, tokenId: string, tokenPriceUsd?: string | null, walletId: string, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }; export type ApiTokenQueryVariables = Exact<{ token: Scalars['String']['input']; @@ -15542,7 +15698,7 @@ export type BalancesQueryVariables = Exact<{ }>; -export type BalancesQuery = { __typename?: 'Query', balances: { __typename?: 'BalancesResponse', cursor?: string | null, items: Array<{ __typename?: 'Balance', address: string, balance: string, balanceUsd?: string | null, firstHeldTimestamp?: number | null, liquidityUsd?: string | null, networkId: number, shiftedBalance: number, tokenAddress: string, tokenId: string, tokenPriceUsd?: string | null, walletId: string, token?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } }; +export type BalancesQuery = { __typename?: 'Query', balances: { __typename?: 'BalancesResponse', cursor?: string | null, items: Array<{ __typename?: 'Balance', address: string, balance: string, balanceUsd?: string | null, firstHeldTimestamp?: number | null, liquidityUsd?: string | null, networkId: number, shiftedBalance: number, tokenAddress: string, tokenId: string, tokenPriceUsd?: string | null, walletId: string, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } }; export type BlocksQueryVariables = Exact<{ input: BlocksInput; @@ -15609,7 +15765,7 @@ export type FilterPairsQueryVariables = Exact<{ }>; -export type FilterPairsQuery = { __typename?: 'Query', filterPairs?: { __typename?: 'PairFilterConnection', count?: number | null, offset?: number | null, results?: Array<{ __typename?: 'PairFilterResult', buyCount1?: number | null, buyCount4?: number | null, buyCount12?: number | null, buyCount24?: number | null, buyVolumeUSD1?: string | null, buyVolumeUSD4?: string | null, buyVolumeUSD12?: string | null, buyVolumeUSD24?: string | null, createdAt?: number | null, highPrice1?: string | null, highPrice4?: string | null, highPrice12?: string | null, highPrice24?: string | null, lastTransaction?: number | null, liquidity?: string | null, liquidityToken?: string | null, lockedLiquidityPercentage: number, lowPrice1?: string | null, lowPrice4?: string | null, lowPrice12?: string | null, lowPrice24?: string | null, marketCap?: string | null, potentialScamReasons?: Array | null, price?: string | null, priceChange1?: string | null, priceChange4?: string | null, priceChange12?: string | null, priceChange24?: string | null, priceScale?: string | null, quoteToken?: string | null, sellCount1?: number | null, sellCount4?: number | null, sellCount12?: number | null, sellCount24?: number | null, sellVolumeUSD1?: string | null, sellVolumeUSD4?: string | null, sellVolumeUSD12?: string | null, sellVolumeUSD24?: string | null, swapPct1dOldWallet?: string | null, swapPct7dOldWallet?: string | null, txnCount1?: number | null, txnCount4?: number | null, txnCount12?: number | null, txnCount24?: number | null, uniqueBuys1?: number | null, uniqueBuys4?: number | null, uniqueBuys12?: number | null, uniqueBuys24?: number | null, uniqueSells1?: number | null, uniqueSells4?: number | null, uniqueSells12?: number | null, uniqueSells24?: number | null, uniqueTransactions1?: number | null, uniqueTransactions4?: number | null, uniqueTransactions12?: number | null, uniqueTransactions24?: number | null, volumeChange1?: string | null, volumeChange4?: string | null, volumeChange12?: string | null, volumeChange24?: string | null, volumeUSD1?: string | null, volumeUSD4?: string | null, volumeUSD12?: string | null, volumeUSD24?: string | null, walletAgeAvg?: string | null, walletAgeStd?: string | null, exchange?: { __typename?: 'FilterExchange', address: string, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null } | null, pair?: { __typename?: 'Pair', address: string, createdAt?: number | null, exchangeHash: string, fee?: number | null, id: string, networkId: number, protocol?: string | null, tickSpacing?: number | null, token0: string, token1: string, pooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null, protocolData?: { __typename?: 'ArenaTradeData', tokenId?: string | null, type: string } | { __typename?: 'PumpData', creator?: string | null, type: string } | { __typename?: 'UniswapV4Data', isDynamicFee?: boolean | null, isToken0NetworkToken?: boolean | null, type: string, uniswapV4HookAddress?: string | null } | null, token0Data?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, token1Data?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, virtualPooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null } | null, token0?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, token1?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null } | null> | null } | null }; +export type FilterPairsQuery = { __typename?: 'Query', filterPairs?: { __typename?: 'PairFilterConnection', count?: number | null, offset?: number | null, results?: Array<{ __typename?: 'PairFilterResult', buyCount1?: number | null, buyCount4?: number | null, buyCount12?: number | null, buyCount24?: number | null, buyVolumeUSD1?: string | null, buyVolumeUSD4?: string | null, buyVolumeUSD12?: string | null, buyVolumeUSD24?: string | null, createdAt?: number | null, highPrice1?: string | null, highPrice4?: string | null, highPrice12?: string | null, highPrice24?: string | null, lastTransaction?: number | null, liquidity?: string | null, liquidityToken?: string | null, lockedLiquidityPercentage: number, lowPrice1?: string | null, lowPrice4?: string | null, lowPrice12?: string | null, lowPrice24?: string | null, marketCap?: string | null, potentialScamReasons?: Array | null, price?: string | null, priceChange1?: string | null, priceChange4?: string | null, priceChange12?: string | null, priceChange24?: string | null, priceScale?: string | null, quoteToken?: string | null, sellCount1?: number | null, sellCount4?: number | null, sellCount12?: number | null, sellCount24?: number | null, sellVolumeUSD1?: string | null, sellVolumeUSD4?: string | null, sellVolumeUSD12?: string | null, sellVolumeUSD24?: string | null, swapPct1dOldWallet?: string | null, swapPct7dOldWallet?: string | null, txnCount1?: number | null, txnCount4?: number | null, txnCount12?: number | null, txnCount24?: number | null, uniqueBuys1?: number | null, uniqueBuys4?: number | null, uniqueBuys12?: number | null, uniqueBuys24?: number | null, uniqueSells1?: number | null, uniqueSells4?: number | null, uniqueSells12?: number | null, uniqueSells24?: number | null, uniqueTransactions1?: number | null, uniqueTransactions4?: number | null, uniqueTransactions12?: number | null, uniqueTransactions24?: number | null, volumeChange1?: string | null, volumeChange4?: string | null, volumeChange12?: string | null, volumeChange24?: string | null, volumeUSD1?: string | null, volumeUSD4?: string | null, volumeUSD12?: string | null, volumeUSD24?: string | null, walletAgeAvg?: string | null, walletAgeStd?: string | null, exchange?: { __typename?: 'FilterExchange', address: string, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null } | null, pair?: { __typename?: 'Pair', address: string, createdAt?: number | null, exchangeHash: string, fee?: number | null, id: string, networkId: number, protocol?: string | null, tickSpacing?: number | null, token0: string, token1: string, pooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null, protocolData?: { __typename?: 'ArenaTradeData', tokenId?: string | null, type: string } | { __typename?: 'PumpData', creator?: string | null, type: string } | { __typename?: 'UniswapV4Data', isDynamicFee?: boolean | null, isToken0NetworkToken?: boolean | null, type: string, uniswapV4HookAddress?: string | null } | null, token0Data?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, token1Data?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, virtualPooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null } | null, token0?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, token1?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null } | null> | null } | null }; export type FilterPredictionEventsQueryVariables = Exact<{ eventIds?: InputMaybe | Scalars['String']['input']>; @@ -15623,7 +15779,7 @@ export type FilterPredictionEventsQueryVariables = Exact<{ }>; -export type FilterPredictionEventsQuery = { __typename?: 'Query', filterPredictionEvents?: { __typename?: 'PredictionEventFilterConnection', count: number, page: number, results: Array<{ __typename?: 'PredictionEventFilterResult', age?: number | null, categories: Array, closesAt?: number | null, createdAt: number, expectedLifespan?: number | null, id: string, lastTransactionAt: number, liquidityCT?: string | null, liquidityChange1h?: number | null, liquidityChange1w?: number | null, liquidityChange4h?: number | null, liquidityChange5m?: number | null, liquidityChange12h?: number | null, liquidityChange24h?: number | null, liquidityUsd?: string | null, marketCount: number, openInterestCT?: string | null, openInterestChange1h?: number | null, openInterestChange1w?: number | null, openInterestChange4h?: number | null, openInterestChange5m?: number | null, openInterestChange12h?: number | null, openInterestChange24h?: number | null, openInterestUsd?: string | null, opensAt: number, protocol: PredictionProtocol, relatedEventIds: Array, relevanceScore1h?: number | null, relevanceScore1w?: number | null, relevanceScore4h?: number | null, relevanceScore5m?: number | null, relevanceScore12h?: number | null, relevanceScore24h?: number | null, resolutionSource?: string | null, resolvedAt?: number | null, resolvesAt?: number | null, status: PredictionEventStatus, timestamp: number, trades1h?: number | null, trades1w?: number | null, trades4h?: number | null, trades5m?: number | null, trades12h?: number | null, trades24h?: number | null, tradesChange1h?: number | null, tradesChange1w?: number | null, tradesChange4h?: number | null, tradesChange5m?: number | null, tradesChange12h?: number | null, tradesChange24h?: number | null, trendingScore1h?: number | null, trendingScore1w?: number | null, trendingScore4h?: number | null, trendingScore5m?: number | null, trendingScore12h?: number | null, trendingScore24h?: number | null, uniqueTraders1h?: number | null, uniqueTraders1w?: number | null, uniqueTraders4h?: number | null, uniqueTraders5m?: number | null, uniqueTraders12h?: number | null, uniqueTraders24h?: number | null, uniqueTradersChange1h?: number | null, uniqueTradersChange1w?: number | null, uniqueTradersChange4h?: number | null, uniqueTradersChange5m?: number | null, uniqueTradersChange12h?: number | null, uniqueTradersChange24h?: number | null, venueVolumeCT?: string | null, venueVolumeUsd?: string | null, volumeCTAll?: string | null, volumeChange1h?: number | null, volumeChange1w?: number | null, volumeChange4h?: number | null, volumeChange5m?: number | null, volumeChange12h?: number | null, volumeChange24h?: number | null, volumeUsd1h?: string | null, volumeUsd1w?: string | null, volumeUsd4h?: string | null, volumeUsd5m?: string | null, volumeUsd12h?: string | null, volumeUsd24h?: string | null, volumeUsdAll?: string | null, event: { __typename?: 'SearchPredictionEvent', closesAt?: number | null, createdAt: number, description?: string | null, exchangeAddress?: string | null, id: string, imageThumbUrl?: string | null, networkId?: number | null, opensAt: number, protocol: PredictionProtocol, question: string, resolvedAt?: number | null, resolvesAt?: number | null, slug: string, status: PredictionEventStatus, tags: Array, venueEventId: string, venueSeriesId?: string | null, venueUrl: string }, markets: Array<{ __typename?: 'PredictionEventFilterResultMarket', id: string, label?: string | null }>, predictionEvent?: { __typename?: 'PredictionEvent', closesAt?: number | null, createdAt: number, id: string, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbUrl?: string | null, marketIds?: Array | null, networkId?: number | null, opensAt: number, protocol: PredictionProtocol, question: string, resolvedAt?: number | null, resolvesAt?: number | null, rulesPrimary: string, rulesSecondary?: string | null, status: PredictionEventStatus, tags: Array, updatedAt: number, url: string, venueEventId: string, venueSeriesId?: string | null, categories?: Array<{ __typename?: 'PredictionCategory', name: string, slug: string, subcategories?: Array<{ __typename?: 'PredictionSubcategory', name: string, slug: string, subcategories?: Array<{ __typename?: 'PredictionSubSubcategory', name: string, slug: string }> | null }> | null }> | null, resolution?: { __typename?: 'PredictionResolution', result?: string | null, source?: string | null } | null } | null, topMarkets: Array<{ __typename?: 'PredictionEventTopMarket', label: string, marketId: string, outcome0BidCT: string, outcome0Label: string, outcome1BidCT: string, outcome1Label: string, volumeCT1d: string, volumeCT1w: string, volumeCTAll: string }> }> } | null }; +export type FilterPredictionEventsQuery = { __typename?: 'Query', filterPredictionEvents?: { __typename?: 'PredictionEventFilterConnection', count: number, page: number, results: Array<{ __typename?: 'PredictionEventFilterResult', age?: number | null, categories: Array, closesAt?: number | null, createdAt: number, expectedLifespan?: number | null, id: string, lastTransactionAt: number, liquidityCT?: string | null, liquidityChange1h?: number | null, liquidityChange1w?: number | null, liquidityChange4h?: number | null, liquidityChange5m?: number | null, liquidityChange12h?: number | null, liquidityChange24h?: number | null, liquidityUsd?: string | null, marketCount: number, openInterestCT?: string | null, openInterestChange1h?: number | null, openInterestChange1w?: number | null, openInterestChange4h?: number | null, openInterestChange5m?: number | null, openInterestChange12h?: number | null, openInterestChange24h?: number | null, openInterestUsd?: string | null, opensAt: number, protocol: PredictionProtocol, relatedEventIds: Array, relevanceScore1h?: number | null, relevanceScore1w?: number | null, relevanceScore4h?: number | null, relevanceScore5m?: number | null, relevanceScore12h?: number | null, relevanceScore24h?: number | null, resolutionSource?: string | null, resolvedAt?: number | null, resolvesAt?: number | null, status: PredictionEventStatus, timestamp: number, trades1h?: number | null, trades1w?: number | null, trades4h?: number | null, trades5m?: number | null, trades12h?: number | null, trades24h?: number | null, tradesChange1h?: number | null, tradesChange1w?: number | null, tradesChange4h?: number | null, tradesChange5m?: number | null, tradesChange12h?: number | null, tradesChange24h?: number | null, trendingScore1h?: number | null, trendingScore1w?: number | null, trendingScore4h?: number | null, trendingScore5m?: number | null, trendingScore12h?: number | null, trendingScore24h?: number | null, uniqueTraders1h?: number | null, uniqueTraders1w?: number | null, uniqueTraders4h?: number | null, uniqueTraders5m?: number | null, uniqueTraders12h?: number | null, uniqueTraders24h?: number | null, uniqueTradersChange1h?: number | null, uniqueTradersChange1w?: number | null, uniqueTradersChange4h?: number | null, uniqueTradersChange5m?: number | null, uniqueTradersChange12h?: number | null, uniqueTradersChange24h?: number | null, venueVolumeCT?: string | null, venueVolumeUsd?: string | null, volumeCTAll?: string | null, volumeChange1h?: number | null, volumeChange1w?: number | null, volumeChange4h?: number | null, volumeChange5m?: number | null, volumeChange12h?: number | null, volumeChange24h?: number | null, volumeUsd1h?: string | null, volumeUsd1w?: string | null, volumeUsd4h?: string | null, volumeUsd5m?: string | null, volumeUsd12h?: string | null, volumeUsd24h?: string | null, volumeUsdAll?: string | null, event: { __typename?: 'SearchPredictionEvent', closesAt?: number | null, createdAt: number, description?: string | null, exchangeAddress?: string | null, id: string, imageThumbUrl?: string | null, networkId?: number | null, opensAt: number, protocol: PredictionProtocol, question: string, resolvedAt?: number | null, resolvesAt?: number | null, slug: string, status: PredictionEventStatus, tags: Array, venueEventId: string, venueSeriesId?: string | null, venueUrl: string }, markets: Array<{ __typename?: 'PredictionEventFilterResultMarket', id: string, label?: string | null }>, predictionEvent?: { __typename?: 'PredictionEvent', closesAt?: number | null, createdAt: number, id: string, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbUrl?: string | null, marketIds?: Array | null, networkId?: number | null, opensAt: number, protocol: PredictionProtocol, question: string, resolvedAt?: number | null, resolvesAt?: number | null, rulesPrimary: string, rulesSecondary?: string | null, status: PredictionEventStatus, tags: Array, updatedAt: number, url: string, venueEventId: string, venueSeriesId?: string | null, categories?: Array<{ __typename?: 'PredictionCategory', name: string, slug: string, subcategories?: Array<{ __typename?: 'PredictionSubcategory', name: string, slug: string, subcategories?: Array<{ __typename?: 'PredictionSubSubcategory', name: string, slug: string }> | null }> | null }> | null, resolution?: { __typename?: 'PredictionResolution', result?: string | null, source?: string | null } | null } | null, topMarkets: Array<{ __typename?: 'PredictionEventTopMarket', label: string, marketId: string, outcome0AskCT: string, outcome0AskUSD: string, outcome0BidCT: string, outcome0BidUSD: string, outcome0Label: string, outcome1AskCT: string, outcome1AskUSD: string, outcome1BidCT: string, outcome1BidUSD: string, outcome1Label: string, volumeCT1d: string, volumeCT1w: string, volumeCTAll: string, volumeUSD1d: string, volumeUSD1w: string, volumeUSDAll: string }> }> } | null }; export type FilterPredictionMarketsQueryVariables = Exact<{ eventIds?: InputMaybe | Scalars['String']['input']>; @@ -15690,7 +15846,7 @@ export type FilterTokensQueryVariables = Exact<{ }>; -export type FilterTokensQuery = { __typename?: 'Query', filterTokens?: { __typename?: 'TokenFilterConnection', count?: number | null, page?: number | null, results?: Array<{ __typename?: 'TokenFilterResult', baseFees1?: string | null, baseFees4?: string | null, baseFees5m?: string | null, baseFees12?: string | null, baseFees24?: string | null, builderTips1?: string | null, builderTips4?: string | null, builderTips5m?: string | null, builderTips12?: string | null, builderTips24?: string | null, bundlerCount?: number | null, bundlerHeldPercentage?: number | null, buyCount1?: number | null, buyCount4?: number | null, buyCount5m?: number | null, buyCount12?: number | null, buyCount24?: number | null, buyVolume1?: string | null, buyVolume4?: string | null, buyVolume5m?: string | null, buyVolume12?: string | null, buyVolume24?: string | null, change1?: string | null, change4?: string | null, change5m?: string | null, change12?: string | null, change24?: string | null, circulatingMarketCap?: string | null, createdAt?: number | null, devHeldPercentage?: number | null, feeToVolumeRatio1?: string | null, feeToVolumeRatio4?: string | null, feeToVolumeRatio5m?: string | null, feeToVolumeRatio12?: string | null, feeToVolumeRatio24?: string | null, high1?: string | null, high4?: string | null, high5m?: string | null, high12?: string | null, high24?: string | null, holders?: number | null, insiderCount?: number | null, insiderHeldPercentage?: number | null, isScam?: boolean | null, l1DataFees1?: string | null, l1DataFees4?: string | null, l1DataFees5m?: string | null, l1DataFees12?: string | null, l1DataFees24?: string | null, lastTransaction?: number | null, liquidPairLiquidity?: string | null, liquidPairPriceUSD?: string | null, liquidity?: string | null, low1?: string | null, low4?: string | null, low5m?: string | null, low12?: string | null, low24?: string | null, marketCap?: string | null, poolFees1?: string | null, poolFees4?: string | null, poolFees5m?: string | null, poolFees12?: string | null, poolFees24?: string | null, potentialScamReasons?: Array | null, priceUSD?: string | null, priorityFees1?: string | null, priorityFees4?: string | null, priorityFees5m?: string | null, priorityFees12?: string | null, priorityFees24?: string | null, quoteToken?: string | null, sellCount1?: number | null, sellCount4?: number | null, sellCount5m?: number | null, sellCount12?: number | null, sellCount24?: number | null, sellVolume1?: string | null, sellVolume4?: string | null, sellVolume5m?: string | null, sellVolume12?: string | null, sellVolume24?: string | null, sniperCount?: number | null, sniperHeldPercentage?: number | null, swapPct1dOldWallet?: string | null, swapPct7dOldWallet?: string | null, top10HoldersPercent?: number | null, totalFees1?: string | null, totalFees4?: string | null, totalFees5m?: string | null, totalFees12?: string | null, totalFees24?: string | null, trendingScore?: number | null, txnCount1?: number | null, txnCount4?: number | null, txnCount5m?: number | null, txnCount12?: number | null, txnCount24?: number | null, uniqueBuys1?: number | null, uniqueBuys4?: number | null, uniqueBuys5m?: number | null, uniqueBuys12?: number | null, uniqueBuys24?: number | null, uniqueSells1?: number | null, uniqueSells4?: number | null, uniqueSells5m?: number | null, uniqueSells12?: number | null, uniqueSells24?: number | null, uniqueTransactions1?: number | null, uniqueTransactions4?: number | null, uniqueTransactions5m?: number | null, uniqueTransactions12?: number | null, uniqueTransactions24?: number | null, volume1?: string | null, volume4?: string | null, volume5m?: string | null, volume12?: string | null, volume24?: string | null, volumeChange1?: string | null, volumeChange4?: string | null, volumeChange5m?: string | null, volumeChange12?: string | null, volumeChange24?: string | null, walletAgeAvg?: string | null, walletAgeStd?: string | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null } | null> | null, liquidPair?: { __typename?: 'Pair', address: string, createdAt?: number | null, exchangeHash: string, fee?: number | null, id: string, networkId: number, protocol?: string | null, tickSpacing?: number | null, token0: string, token1: string, pooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null, protocolData?: { __typename?: 'ArenaTradeData', tokenId?: string | null, type: string } | { __typename?: 'PumpData', creator?: string | null, type: string } | { __typename?: 'UniswapV4Data', isDynamicFee?: boolean | null, isToken0NetworkToken?: boolean | null, type: string, uniswapV4HookAddress?: string | null } | null, token0Data?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, token1Data?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, virtualPooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null } | null, pair?: { __typename?: 'Pair', address: string, createdAt?: number | null, exchangeHash: string, fee?: number | null, id: string, networkId: number, protocol?: string | null, tickSpacing?: number | null, token0: string, token1: string, pooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null, protocolData?: { __typename?: 'ArenaTradeData', tokenId?: string | null, type: string } | { __typename?: 'PumpData', creator?: string | null, type: string } | { __typename?: 'UniswapV4Data', isDynamicFee?: boolean | null, isToken0NetworkToken?: boolean | null, type: string, uniswapV4HookAddress?: string | null } | null, token0Data?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, token1Data?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, virtualPooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null } | null, token?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null } | null> | null } | null }; +export type FilterTokensQuery = { __typename?: 'Query', filterTokens?: { __typename?: 'TokenFilterConnection', count?: number | null, page?: number | null, results?: Array<{ __typename?: 'TokenFilterResult', baseFees1?: string | null, baseFees4?: string | null, baseFees5m?: string | null, baseFees12?: string | null, baseFees24?: string | null, builderTips1?: string | null, builderTips4?: string | null, builderTips5m?: string | null, builderTips12?: string | null, builderTips24?: string | null, bundlerCount?: number | null, bundlerHeldPercentage?: number | null, buyCount1?: number | null, buyCount4?: number | null, buyCount5m?: number | null, buyCount12?: number | null, buyCount24?: number | null, buyVolume1?: string | null, buyVolume4?: string | null, buyVolume5m?: string | null, buyVolume12?: string | null, buyVolume24?: string | null, change1?: string | null, change4?: string | null, change5m?: string | null, change12?: string | null, change24?: string | null, circulatingMarketCap?: string | null, createdAt?: number | null, devHeldPercentage?: number | null, feeToVolumeRatio1?: string | null, feeToVolumeRatio4?: string | null, feeToVolumeRatio5m?: string | null, feeToVolumeRatio12?: string | null, feeToVolumeRatio24?: string | null, high1?: string | null, high4?: string | null, high5m?: string | null, high12?: string | null, high24?: string | null, holders?: number | null, insiderCount?: number | null, insiderHeldPercentage?: number | null, isScam?: boolean | null, l1DataFees1?: string | null, l1DataFees4?: string | null, l1DataFees5m?: string | null, l1DataFees12?: string | null, l1DataFees24?: string | null, lastTransaction?: number | null, liquidPairLiquidity?: string | null, liquidPairPriceUSD?: string | null, liquidity?: string | null, low1?: string | null, low4?: string | null, low5m?: string | null, low12?: string | null, low24?: string | null, marketCap?: string | null, poolFees1?: string | null, poolFees4?: string | null, poolFees5m?: string | null, poolFees12?: string | null, poolFees24?: string | null, potentialScamReasons?: Array | null, priceUSD?: string | null, priorityFees1?: string | null, priorityFees4?: string | null, priorityFees5m?: string | null, priorityFees12?: string | null, priorityFees24?: string | null, quoteToken?: string | null, sellCount1?: number | null, sellCount4?: number | null, sellCount5m?: number | null, sellCount12?: number | null, sellCount24?: number | null, sellVolume1?: string | null, sellVolume4?: string | null, sellVolume5m?: string | null, sellVolume12?: string | null, sellVolume24?: string | null, sniperCount?: number | null, sniperHeldPercentage?: number | null, swapPct1dOldWallet?: string | null, swapPct7dOldWallet?: string | null, top10HoldersPercent?: number | null, totalFees1?: string | null, totalFees4?: string | null, totalFees5m?: string | null, totalFees12?: string | null, totalFees24?: string | null, trendingScore?: number | null, txnCount1?: number | null, txnCount4?: number | null, txnCount5m?: number | null, txnCount12?: number | null, txnCount24?: number | null, uniqueBuys1?: number | null, uniqueBuys4?: number | null, uniqueBuys5m?: number | null, uniqueBuys12?: number | null, uniqueBuys24?: number | null, uniqueSells1?: number | null, uniqueSells4?: number | null, uniqueSells5m?: number | null, uniqueSells12?: number | null, uniqueSells24?: number | null, uniqueTransactions1?: number | null, uniqueTransactions4?: number | null, uniqueTransactions5m?: number | null, uniqueTransactions12?: number | null, uniqueTransactions24?: number | null, volume1?: string | null, volume4?: string | null, volume5m?: string | null, volume12?: string | null, volume24?: string | null, volumeChange1?: string | null, volumeChange4?: string | null, volumeChange5m?: string | null, volumeChange12?: string | null, volumeChange24?: string | null, walletAgeAvg?: string | null, walletAgeStd?: string | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null } | null> | null, liquidPair?: { __typename?: 'Pair', address: string, createdAt?: number | null, exchangeHash: string, fee?: number | null, id: string, networkId: number, protocol?: string | null, tickSpacing?: number | null, token0: string, token1: string, pooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null, protocolData?: { __typename?: 'ArenaTradeData', tokenId?: string | null, type: string } | { __typename?: 'PumpData', creator?: string | null, type: string } | { __typename?: 'UniswapV4Data', isDynamicFee?: boolean | null, isToken0NetworkToken?: boolean | null, type: string, uniswapV4HookAddress?: string | null } | null, token0Data?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, token1Data?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, virtualPooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null } | null, pair?: { __typename?: 'Pair', address: string, createdAt?: number | null, exchangeHash: string, fee?: number | null, id: string, networkId: number, protocol?: string | null, tickSpacing?: number | null, token0: string, token1: string, pooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null, protocolData?: { __typename?: 'ArenaTradeData', tokenId?: string | null, type: string } | { __typename?: 'PumpData', creator?: string | null, type: string } | { __typename?: 'UniswapV4Data', isDynamicFee?: boolean | null, isToken0NetworkToken?: boolean | null, type: string, uniswapV4HookAddress?: string | null } | null, token0Data?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, token1Data?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, virtualPooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null } | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null } | null> | null } | null }; export type FilterWalletsQueryVariables = Exact<{ input: FilterWalletsInput; @@ -15714,14 +15870,14 @@ export type GetBarsQueryVariables = Exact<{ }>; -export type GetBarsQuery = { __typename?: 'Query', getBars?: { __typename?: 'BarsResponse', averageCostPerTrade?: Array | null, baseFees?: Array | null, builderTips?: Array | null, buyVolume: Array, buyers: Array, buys: Array, c: Array, feeRegimeClassification?: Array | null, feeToVolumeRatio?: Array | null, gasPerVolume?: Array | null, h: Array, l: Array, l1DataFees?: Array | null, liquidity: Array, mevRiskLevel?: Array | null, mevToTotalFeesRatio?: Array | null, o: Array, poolFees?: Array | null, priorityFees?: Array | null, s: string, sandwichRate?: Array | null, sellVolume: Array, sellers: Array, sells: Array, t: Array, totalFees?: Array | null, traders: Array, transactions: Array, volume?: Array | null, volumeNativeToken?: Array | null, pair: { __typename?: 'Pair', address: string, createdAt?: number | null, exchangeHash: string, fee?: number | null, id: string, networkId: number, protocol?: string | null, tickSpacing?: number | null, token0: string, token1: string, pooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null, protocolData?: { __typename?: 'ArenaTradeData', tokenId?: string | null, type: string } | { __typename?: 'PumpData', creator?: string | null, type: string } | { __typename?: 'UniswapV4Data', isDynamicFee?: boolean | null, isToken0NetworkToken?: boolean | null, type: string, uniswapV4HookAddress?: string | null } | null, token0Data?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, token1Data?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, virtualPooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null } } | null }; +export type GetBarsQuery = { __typename?: 'Query', getBars?: { __typename?: 'BarsResponse', averageCostPerTrade?: Array | null, baseFees?: Array | null, builderTips?: Array | null, buyVolume: Array, buyers: Array, buys: Array, c: Array, feeRegimeClassification?: Array | null, feeToVolumeRatio?: Array | null, gasPerVolume?: Array | null, h: Array, l: Array, l1DataFees?: Array | null, liquidity: Array, mevRiskLevel?: Array | null, mevToTotalFeesRatio?: Array | null, o: Array, poolFees?: Array | null, priorityFees?: Array | null, s: string, sandwichRate?: Array | null, sellVolume: Array, sellers: Array, sells: Array, t: Array, totalFees?: Array | null, traders: Array, transactions: Array, volume?: Array | null, volumeNativeToken?: Array | null, pair: { __typename?: 'Pair', address: string, createdAt?: number | null, exchangeHash: string, fee?: number | null, id: string, networkId: number, protocol?: string | null, tickSpacing?: number | null, token0: string, token1: string, pooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null, protocolData?: { __typename?: 'ArenaTradeData', tokenId?: string | null, type: string } | { __typename?: 'PumpData', creator?: string | null, type: string } | { __typename?: 'UniswapV4Data', isDynamicFee?: boolean | null, isToken0NetworkToken?: boolean | null, type: string, uniswapV4HookAddress?: string | null } | null, token0Data?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, token1Data?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, virtualPooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null } } | null }; export type GetCommunityNotesQueryVariables = Exact<{ input?: InputMaybe; }>; -export type GetCommunityNotesQuery = { __typename?: 'Query', getCommunityNotes: { __typename?: 'CommunityNotesResponse', count: number, cursor?: string | null, items: Array<{ __typename?: 'CommunityNote', address: string, contractType: ContractType, currentData?: any | null, id: string, moderatedAt?: number | null, networkId: number, previousData?: any | null, proposalData: any, proposalNum: number, proposalType: CommunityNoteType, proposedAt: number, sortKey: string, status: ContractProposalStatus, currentContract?: { __typename?: 'EnhancedNftContract', address: string, description?: string | null, ercType: string, id: string, image?: string | null, name?: string | null, networkId: number, symbol?: string | null, totalSupply?: string | null, labels?: Array<{ __typename?: 'ContractLabel', createdAt: number, subType: ContractLabelSubType, type: ContractLabelType } | null> | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } }; +export type GetCommunityNotesQuery = { __typename?: 'Query', getCommunityNotes: { __typename?: 'CommunityNotesResponse', count: number, cursor?: string | null, items: Array<{ __typename?: 'CommunityNote', address: string, contractType: ContractType, currentData?: any | null, id: string, moderatedAt?: number | null, networkId: number, previousData?: any | null, proposalData: any, proposalNum: number, proposalType: CommunityNoteType, proposedAt: number, sortKey: string, status: ContractProposalStatus, currentContract?: { __typename?: 'EnhancedNftContract', address: string, description?: string | null, ercType: string, id: string, image?: string | null, name?: string | null, networkId: number, symbol?: string | null, totalSupply?: string | null, labels?: Array<{ __typename?: 'ContractLabel', createdAt: number, subType: ContractLabelSubType, type: ContractLabelType } | null> | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } }; export type GetDetailedPairStatsQueryVariables = Exact<{ bucketCount?: InputMaybe; @@ -15734,14 +15890,14 @@ export type GetDetailedPairStatsQueryVariables = Exact<{ }>; -export type GetDetailedPairStatsQuery = { __typename?: 'Query', getDetailedPairStats?: { __typename?: 'DetailedPairStats', bucketCount?: number | null, lastTransaction?: number | null, networkId: number, pairAddress: string, queryTimestamp?: number | null, statsType: TokenPairStatisticsType, tokenOfInterest?: TokenOfInterest | null, pair?: { __typename?: 'Pair', address: string, createdAt?: number | null, exchangeHash: string, fee?: number | null, id: string, networkId: number, protocol?: string | null, tickSpacing?: number | null, token0: string, token1: string, pooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null, protocolData?: { __typename?: 'ArenaTradeData', tokenId?: string | null, type: string } | { __typename?: 'PumpData', creator?: string | null, type: string } | { __typename?: 'UniswapV4Data', isDynamicFee?: boolean | null, isToken0NetworkToken?: boolean | null, type: string, uniswapV4HookAddress?: string | null } | null, token0Data?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, token1Data?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, virtualPooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null } | null, stats_day1?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_day30?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_hour1?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_hour4?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_hour12?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_min5?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_min15?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_week1?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null } | null }; +export type GetDetailedPairStatsQuery = { __typename?: 'Query', getDetailedPairStats?: { __typename?: 'DetailedPairStats', bucketCount?: number | null, lastTransaction?: number | null, networkId: number, pairAddress: string, queryTimestamp?: number | null, statsType: TokenPairStatisticsType, tokenOfInterest?: TokenOfInterest | null, pair?: { __typename?: 'Pair', address: string, createdAt?: number | null, exchangeHash: string, fee?: number | null, id: string, networkId: number, protocol?: string | null, tickSpacing?: number | null, token0: string, token1: string, pooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null, protocolData?: { __typename?: 'ArenaTradeData', tokenId?: string | null, type: string } | { __typename?: 'PumpData', creator?: string | null, type: string } | { __typename?: 'UniswapV4Data', isDynamicFee?: boolean | null, isToken0NetworkToken?: boolean | null, type: string, uniswapV4HookAddress?: string | null } | null, token0Data?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, token1Data?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, virtualPooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null } | null, stats_day1?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_day30?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_hour1?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_hour4?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_hour12?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_min5?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_min15?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_week1?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null } | null }; export type GetDetailedPairsStatsQueryVariables = Exact<{ input: Array | GetDetailedPairsStatsInput; }>; -export type GetDetailedPairsStatsQuery = { __typename?: 'Query', getDetailedPairsStats?: Array<{ __typename?: 'DetailedPairStats', bucketCount?: number | null, lastTransaction?: number | null, networkId: number, pairAddress: string, queryTimestamp?: number | null, statsType: TokenPairStatisticsType, tokenOfInterest?: TokenOfInterest | null, pair?: { __typename?: 'Pair', address: string, createdAt?: number | null, exchangeHash: string, fee?: number | null, id: string, networkId: number, protocol?: string | null, tickSpacing?: number | null, token0: string, token1: string, pooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null, protocolData?: { __typename?: 'ArenaTradeData', tokenId?: string | null, type: string } | { __typename?: 'PumpData', creator?: string | null, type: string } | { __typename?: 'UniswapV4Data', isDynamicFee?: boolean | null, isToken0NetworkToken?: boolean | null, type: string, uniswapV4HookAddress?: string | null } | null, token0Data?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, token1Data?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, virtualPooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null } | null, stats_day1?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_day30?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_hour1?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_hour4?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_hour12?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_min5?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_min15?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_week1?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null } | null> | null }; +export type GetDetailedPairsStatsQuery = { __typename?: 'Query', getDetailedPairsStats?: Array<{ __typename?: 'DetailedPairStats', bucketCount?: number | null, lastTransaction?: number | null, networkId: number, pairAddress: string, queryTimestamp?: number | null, statsType: TokenPairStatisticsType, tokenOfInterest?: TokenOfInterest | null, pair?: { __typename?: 'Pair', address: string, createdAt?: number | null, exchangeHash: string, fee?: number | null, id: string, networkId: number, protocol?: string | null, tickSpacing?: number | null, token0: string, token1: string, pooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null, protocolData?: { __typename?: 'ArenaTradeData', tokenId?: string | null, type: string } | { __typename?: 'PumpData', creator?: string | null, type: string } | { __typename?: 'UniswapV4Data', isDynamicFee?: boolean | null, isToken0NetworkToken?: boolean | null, type: string, uniswapV4HookAddress?: string | null } | null, token0Data?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, token1Data?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, virtualPooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null } | null, stats_day1?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_day30?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_hour1?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_hour4?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_hour12?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_min5?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_min15?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_week1?: { __typename?: 'WindowedDetailedPairStats', duration: DetailedPairStatsDuration, end: number, start: number, statsNonCurrency: { __typename?: 'WindowedDetailedNonCurrencyPairStats', buyers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, buys?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sellers?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sells?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, traders?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, transactions?: { __typename?: 'DetailedPairStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedCurrencyPairStats', buyVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, liquidity?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowest?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, sellVolume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedPairStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedPairStatsBucketTimestamp', end: number, start: number } | null> } | null } | null> | null }; export type GetDetailedTokenStatsQueryVariables = Exact<{ bucketCount?: InputMaybe; @@ -15820,7 +15976,7 @@ export type GetTokenBarsQueryVariables = Exact<{ }>; -export type GetTokenBarsQuery = { __typename?: 'Query', getTokenBars?: { __typename?: 'TokenBarsResponse', averageCostPerTrade?: Array | null, baseFees?: Array | null, builderTips?: Array | null, buyVolume: Array, buyers: Array, buys: Array, c: Array, feeRegimeClassification?: Array | null, feeToVolumeRatio?: Array | null, gasPerVolume?: Array | null, h: Array, l: Array, l1DataFees?: Array | null, liquidity: Array, mevRiskLevel?: Array | null, mevToTotalFeesRatio?: Array | null, o: Array, poolFees?: Array | null, priorityFees?: Array | null, s: string, sandwichRate?: Array | null, sellVolume: Array, sellers: Array, sells: Array, t: Array, totalFees?: Array | null, traders: Array, transactions: Array, volume?: Array | null, volumeNativeToken?: Array | null, token: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } } | null }; +export type GetTokenBarsQuery = { __typename?: 'Query', getTokenBars?: { __typename?: 'TokenBarsResponse', averageCostPerTrade?: Array | null, baseFees?: Array | null, builderTips?: Array | null, buyVolume: Array, buyers: Array, buys: Array, c: Array, feeRegimeClassification?: Array | null, feeToVolumeRatio?: Array | null, gasPerVolume?: Array | null, h: Array, l: Array, l1DataFees?: Array | null, liquidity: Array, mevRiskLevel?: Array | null, mevToTotalFeesRatio?: Array | null, o: Array, poolFees?: Array | null, priorityFees?: Array | null, s: string, sandwichRate?: Array | null, sellVolume: Array, sellers: Array, sells: Array, t: Array, totalFees?: Array | null, traders: Array, transactions: Array, volume?: Array | null, volumeNativeToken?: Array | null, token: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } } | null }; export type GetTokenEventsQueryVariables = Exact<{ cursor?: InputMaybe; @@ -15830,7 +15986,7 @@ export type GetTokenEventsQueryVariables = Exact<{ }>; -export type GetTokenEventsQuery = { __typename?: 'Query', getTokenEvents?: { __typename?: 'EventConnection', cursor?: string | null, items?: Array<{ __typename?: 'Event', address: string, baseTokenPrice?: string | null, blockHash: string, blockNumber: number, eventDisplayType?: EventDisplayType | null, eventType: EventType, id: string, liquidityToken?: string | null, logIndex: number, maker?: string | null, networkId: number, quoteToken?: QuoteToken | null, timestamp: number, token0Address?: string | null, token0PoolValueUsd?: string | null, token0SwapValueUsd?: string | null, token0ValueBase?: string | null, token1Address?: string | null, token1PoolValueUsd?: string | null, token1SwapValueUsd?: string | null, token1ValueBase?: string | null, transactionHash: string, transactionIndex: number, walletAge?: number | null, walletLabels?: Array | null, data?: { __typename?: 'BurnEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, tickLower?: string | null, tickUpper?: string | null, type: EventType } | { __typename?: 'MintEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, tickLower?: string | null, tickUpper?: string | null, type: EventType } | { __typename?: 'PoolBalanceChangedEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, liquidity0?: string | null, liquidity1?: string | null, protocolFeeAmount0?: string | null, protocolFeeAmount1?: string | null, sender?: string | null, token0?: string | null, token1?: string | null, type: EventType } | { __typename?: 'SwapEventData', amount0?: string | null, amount0In?: string | null, amount0Out?: string | null, amount1?: string | null, amount1In?: string | null, amount1Out?: string | null, amountNonLiquidityToken?: string | null, priceBaseToken?: string | null, priceBaseTokenTotal?: string | null, priceUsd?: string | null, priceUsdTotal?: string | null, tick?: string | null, type: EventType } | null, feeData?: { __typename?: 'EventFeeData', baseFeeNativeUnit?: string | null, builderTipNativeUnit?: string | null, dynamicFee?: boolean | null, estimatedPoolFee?: boolean | null, gasUsed?: string | null, l1DataFeeNativeUnit?: string | null, poolFeeAmountRaw?: string | null, poolFeeBps?: number | null, poolFeeRateRaw?: string | null, priorityFeeNativeUnit?: string | null, txEventCount?: number | null, supplementalFeeData?: { __typename?: 'PumpAmmCashbackFeeData', cashbackAmountLamports: string, cashbackFeeBps: number, type: string } | { __typename?: 'PumpCashbackFeeData', cashbackAmountLamports: string, cashbackFeeBps: number, type: string } | null } | null, labels?: { __typename?: 'LabelsForEvent', sandwich?: { __typename?: 'SandwichLabelForEvent', label: string, sandwichType: SandwichLabelForEventType, token0DrainedAmount: string, token1DrainedAmount: string } | null, washtrade?: { __typename?: 'WashtradeLabelForEvent', label: string } | null } | null } | null> | null } | null }; +export type GetTokenEventsQuery = { __typename?: 'Query', getTokenEvents?: { __typename?: 'EventConnection', cursor?: string | null, items?: Array<{ __typename?: 'Event', address: string, baseTokenPrice?: string | null, blockHash: string, blockNumber: number, commitmentLevel: EventCommitmentLevel, eventDisplayType?: EventDisplayType | null, eventType: EventType, id: string, liquidityToken?: string | null, logIndex: number, maker?: string | null, networkId: number, quoteToken?: QuoteToken | null, supplementalIndex?: number | null, timestamp: number, token0Address?: string | null, token0PoolValueUsd?: string | null, token0SwapValueUsd?: string | null, token0ValueBase?: string | null, token1Address?: string | null, token1PoolValueUsd?: string | null, token1SwapValueUsd?: string | null, token1ValueBase?: string | null, transactionHash: string, transactionIndex: number, walletAge?: number | null, walletLabels?: Array | null, data?: { __typename?: 'BurnEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, tickLower?: string | null, tickUpper?: string | null, type: EventType } | { __typename?: 'MintEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, tickLower?: string | null, tickUpper?: string | null, type: EventType } | { __typename?: 'PoolBalanceChangedEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, liquidity0?: string | null, liquidity1?: string | null, protocolFeeAmount0?: string | null, protocolFeeAmount1?: string | null, sender?: string | null, token0?: string | null, token1?: string | null, type: EventType } | { __typename?: 'SwapEventData', amount0?: string | null, amount0In?: string | null, amount0Out?: string | null, amount1?: string | null, amount1In?: string | null, amount1Out?: string | null, amountNonLiquidityToken?: string | null, priceBaseToken?: string | null, priceBaseTokenTotal?: string | null, priceUsd?: string | null, priceUsdTotal?: string | null, tick?: string | null, type: EventType } | null, feeData?: { __typename?: 'EventFeeData', baseFeeNativeUnit?: string | null, builderTipNativeUnit?: string | null, dynamicFee?: boolean | null, estimatedPoolFee?: boolean | null, gasUsed?: string | null, l1DataFeeNativeUnit?: string | null, poolFeeAmountRaw?: string | null, poolFeeBps?: number | null, poolFeeRateRaw?: string | null, priorityFeeNativeUnit?: string | null, txEventCount?: number | null, supplementalFeeData?: { __typename?: 'PumpAmmCashbackFeeData', cashbackAmountLamports: string, cashbackFeeBps: number, type: string } | { __typename?: 'PumpCashbackFeeData', cashbackAmountLamports: string, cashbackFeeBps: number, type: string } | null } | null, labels?: { __typename?: 'LabelsForEvent', sandwich?: { __typename?: 'SandwichLabelForEvent', label: string, sandwichType: SandwichLabelForEventType, token0DrainedAmount: string, token1DrainedAmount: string } | null, washtrade?: { __typename?: 'WashtradeLabelForEvent', label: string } | null } | null } | null> | null } | null }; export type GetTokenEventsForMakerQueryVariables = Exact<{ cursor?: InputMaybe; @@ -15840,7 +15996,7 @@ export type GetTokenEventsForMakerQueryVariables = Exact<{ }>; -export type GetTokenEventsForMakerQuery = { __typename?: 'Query', getTokenEventsForMaker?: { __typename?: 'MakerEventConnection', cursor?: string | null, items?: Array<{ __typename?: 'Event', address: string, baseTokenPrice?: string | null, blockHash: string, blockNumber: number, eventDisplayType?: EventDisplayType | null, eventType: EventType, id: string, liquidityToken?: string | null, logIndex: number, maker?: string | null, networkId: number, quoteToken?: QuoteToken | null, timestamp: number, token0Address?: string | null, token0PoolValueUsd?: string | null, token0SwapValueUsd?: string | null, token0ValueBase?: string | null, token1Address?: string | null, token1PoolValueUsd?: string | null, token1SwapValueUsd?: string | null, token1ValueBase?: string | null, transactionHash: string, transactionIndex: number, walletAge?: number | null, walletLabels?: Array | null, data?: { __typename?: 'BurnEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, tickLower?: string | null, tickUpper?: string | null, type: EventType } | { __typename?: 'MintEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, tickLower?: string | null, tickUpper?: string | null, type: EventType } | { __typename?: 'PoolBalanceChangedEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, liquidity0?: string | null, liquidity1?: string | null, protocolFeeAmount0?: string | null, protocolFeeAmount1?: string | null, sender?: string | null, token0?: string | null, token1?: string | null, type: EventType } | { __typename?: 'SwapEventData', amount0?: string | null, amount0In?: string | null, amount0Out?: string | null, amount1?: string | null, amount1In?: string | null, amount1Out?: string | null, amountNonLiquidityToken?: string | null, priceBaseToken?: string | null, priceBaseTokenTotal?: string | null, priceUsd?: string | null, priceUsdTotal?: string | null, tick?: string | null, type: EventType } | null, feeData?: { __typename?: 'EventFeeData', baseFeeNativeUnit?: string | null, builderTipNativeUnit?: string | null, dynamicFee?: boolean | null, estimatedPoolFee?: boolean | null, gasUsed?: string | null, l1DataFeeNativeUnit?: string | null, poolFeeAmountRaw?: string | null, poolFeeBps?: number | null, poolFeeRateRaw?: string | null, priorityFeeNativeUnit?: string | null, txEventCount?: number | null, supplementalFeeData?: { __typename?: 'PumpAmmCashbackFeeData', cashbackAmountLamports: string, cashbackFeeBps: number, type: string } | { __typename?: 'PumpCashbackFeeData', cashbackAmountLamports: string, cashbackFeeBps: number, type: string } | null } | null, labels?: { __typename?: 'LabelsForEvent', sandwich?: { __typename?: 'SandwichLabelForEvent', label: string, sandwichType: SandwichLabelForEventType, token0DrainedAmount: string, token1DrainedAmount: string } | null, washtrade?: { __typename?: 'WashtradeLabelForEvent', label: string } | null } | null } | null> | null } | null }; +export type GetTokenEventsForMakerQuery = { __typename?: 'Query', getTokenEventsForMaker?: { __typename?: 'MakerEventConnection', cursor?: string | null, items?: Array<{ __typename?: 'Event', address: string, baseTokenPrice?: string | null, blockHash: string, blockNumber: number, commitmentLevel: EventCommitmentLevel, eventDisplayType?: EventDisplayType | null, eventType: EventType, id: string, liquidityToken?: string | null, logIndex: number, maker?: string | null, networkId: number, quoteToken?: QuoteToken | null, supplementalIndex?: number | null, timestamp: number, token0Address?: string | null, token0PoolValueUsd?: string | null, token0SwapValueUsd?: string | null, token0ValueBase?: string | null, token1Address?: string | null, token1PoolValueUsd?: string | null, token1SwapValueUsd?: string | null, token1ValueBase?: string | null, transactionHash: string, transactionIndex: number, walletAge?: number | null, walletLabels?: Array | null, data?: { __typename?: 'BurnEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, tickLower?: string | null, tickUpper?: string | null, type: EventType } | { __typename?: 'MintEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, tickLower?: string | null, tickUpper?: string | null, type: EventType } | { __typename?: 'PoolBalanceChangedEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, liquidity0?: string | null, liquidity1?: string | null, protocolFeeAmount0?: string | null, protocolFeeAmount1?: string | null, sender?: string | null, token0?: string | null, token1?: string | null, type: EventType } | { __typename?: 'SwapEventData', amount0?: string | null, amount0In?: string | null, amount0Out?: string | null, amount1?: string | null, amount1In?: string | null, amount1Out?: string | null, amountNonLiquidityToken?: string | null, priceBaseToken?: string | null, priceBaseTokenTotal?: string | null, priceUsd?: string | null, priceUsdTotal?: string | null, tick?: string | null, type: EventType } | null, feeData?: { __typename?: 'EventFeeData', baseFeeNativeUnit?: string | null, builderTipNativeUnit?: string | null, dynamicFee?: boolean | null, estimatedPoolFee?: boolean | null, gasUsed?: string | null, l1DataFeeNativeUnit?: string | null, poolFeeAmountRaw?: string | null, poolFeeBps?: number | null, poolFeeRateRaw?: string | null, priorityFeeNativeUnit?: string | null, txEventCount?: number | null, supplementalFeeData?: { __typename?: 'PumpAmmCashbackFeeData', cashbackAmountLamports: string, cashbackFeeBps: number, type: string } | { __typename?: 'PumpCashbackFeeData', cashbackAmountLamports: string, cashbackFeeBps: number, type: string } | null } | null, labels?: { __typename?: 'LabelsForEvent', sandwich?: { __typename?: 'SandwichLabelForEvent', label: string, sandwichType: SandwichLabelForEventType, token0DrainedAmount: string, token1DrainedAmount: string } | null, washtrade?: { __typename?: 'WashtradeLabelForEvent', label: string } | null } | null } | null> | null } | null }; export type GetTokenPricesQueryVariables = Exact<{ inputs?: InputMaybe> | InputMaybe>; @@ -15865,7 +16021,7 @@ export type HoldersQueryVariables = Exact<{ }>; -export type HoldersQuery = { __typename?: 'Query', holders: { __typename?: 'HoldersResponse', count: number, cursor?: string | null, status: HoldersStatus, top10HoldersPercent?: number | null, items: Array<{ __typename?: 'Balance', address: string, balance: string, balanceUsd?: string | null, firstHeldTimestamp?: number | null, liquidityUsd?: string | null, networkId: number, shiftedBalance: number, tokenAddress: string, tokenId: string, tokenPriceUsd?: string | null, walletId: string, token?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } }; +export type HoldersQuery = { __typename?: 'Query', holders: { __typename?: 'HoldersResponse', count: number, cursor?: string | null, status: HoldersStatus, top10HoldersPercent?: number | null, items: Array<{ __typename?: 'Balance', address: string, balance: string, balanceUsd?: string | null, firstHeldTimestamp?: number | null, liquidityUsd?: string | null, networkId: number, shiftedBalance: number, tokenAddress: string, tokenId: string, tokenPriceUsd?: string | null, walletId: string, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } }; export type LiquidityLocksQueryVariables = Exact<{ cursor?: InputMaybe; @@ -15900,7 +16056,7 @@ export type ListPairsForTokenQueryVariables = Exact<{ }>; -export type ListPairsForTokenQuery = { __typename?: 'Query', listPairsForToken: Array<{ __typename?: 'Pair', address: string, createdAt?: number | null, exchangeHash: string, fee?: number | null, id: string, networkId: number, protocol?: string | null, tickSpacing?: number | null, token0: string, token1: string, pooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null, protocolData?: { __typename?: 'ArenaTradeData', tokenId?: string | null, type: string } | { __typename?: 'PumpData', creator?: string | null, type: string } | { __typename?: 'UniswapV4Data', isDynamicFee?: boolean | null, isToken0NetworkToken?: boolean | null, type: string, uniswapV4HookAddress?: string | null } | null, token0Data?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, token1Data?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, virtualPooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null } | null> }; +export type ListPairsForTokenQuery = { __typename?: 'Query', listPairsForToken: Array<{ __typename?: 'Pair', address: string, createdAt?: number | null, exchangeHash: string, fee?: number | null, id: string, networkId: number, protocol?: string | null, tickSpacing?: number | null, token0: string, token1: string, pooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null, protocolData?: { __typename?: 'ArenaTradeData', tokenId?: string | null, type: string } | { __typename?: 'PumpData', creator?: string | null, type: string } | { __typename?: 'UniswapV4Data', isDynamicFee?: boolean | null, isToken0NetworkToken?: boolean | null, type: string, uniswapV4HookAddress?: string | null } | null, token0Data?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, token1Data?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, virtualPooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null } | null> }; export type ListPairsWithMetadataForTokenQueryVariables = Exact<{ limit?: InputMaybe; @@ -15909,7 +16065,7 @@ export type ListPairsWithMetadataForTokenQueryVariables = Exact<{ }>; -export type ListPairsWithMetadataForTokenQuery = { __typename?: 'Query', listPairsWithMetadataForToken: { __typename?: 'ListPairsForTokenResponse', results: Array<{ __typename?: 'ListPairsForTokenValue', liquidity: string, quoteToken?: QuoteToken | null, volume: string, backingToken: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null }, exchange: { __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }, pair: { __typename?: 'Pair', address: string, createdAt?: number | null, exchangeHash: string, fee?: number | null, id: string, networkId: number, protocol?: string | null, tickSpacing?: number | null, token0: string, token1: string, pooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null, protocolData?: { __typename?: 'ArenaTradeData', tokenId?: string | null, type: string } | { __typename?: 'PumpData', creator?: string | null, type: string } | { __typename?: 'UniswapV4Data', isDynamicFee?: boolean | null, isToken0NetworkToken?: boolean | null, type: string, uniswapV4HookAddress?: string | null } | null, token0Data?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, token1Data?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, virtualPooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null }, token: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } }> } }; +export type ListPairsWithMetadataForTokenQuery = { __typename?: 'Query', listPairsWithMetadataForToken: { __typename?: 'ListPairsForTokenResponse', results: Array<{ __typename?: 'ListPairsForTokenValue', liquidity: string, quoteToken?: QuoteToken | null, volume: string, backingToken: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null }, exchange: { __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }, pair: { __typename?: 'Pair', address: string, createdAt?: number | null, exchangeHash: string, fee?: number | null, id: string, networkId: number, protocol?: string | null, tickSpacing?: number | null, token0: string, token1: string, pooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null, protocolData?: { __typename?: 'ArenaTradeData', tokenId?: string | null, type: string } | { __typename?: 'PumpData', creator?: string | null, type: string } | { __typename?: 'UniswapV4Data', isDynamicFee?: boolean | null, isToken0NetworkToken?: boolean | null, type: string, uniswapV4HookAddress?: string | null } | null, token0Data?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, token1Data?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, virtualPooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null }, token: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } }> } }; export type PairMetadataQueryVariables = Exact<{ pairId: Scalars['String']['input']; @@ -15918,7 +16074,7 @@ export type PairMetadataQueryVariables = Exact<{ }>; -export type PairMetadataQuery = { __typename?: 'Query', pairMetadata: { __typename?: 'PairMetadata', createdAt?: number | null, exchangeId?: string | null, fee?: number | null, highPrice1?: string | null, highPrice4?: string | null, highPrice5m?: string | null, highPrice12?: string | null, highPrice24?: string | null, id: string, liquidity: string, liquidityToken?: string | null, lowPrice1?: string | null, lowPrice4?: string | null, lowPrice5m?: string | null, lowPrice12?: string | null, lowPrice24?: string | null, networkId?: number | null, nonLiquidityToken?: string | null, pairAddress: string, price: string, priceChange1?: number | null, priceChange4?: number | null, priceChange5m?: number | null, priceChange12?: number | null, priceChange24?: number | null, priceNonQuoteToken: string, quoteToken?: QuoteToken | null, statsType: TokenPairStatisticsType, tickSpacing?: number | null, top10HoldersPercent?: number | null, volume1?: string | null, volume4?: string | null, volume5m?: string | null, volume12?: string | null, volume24?: string | null, enhancedToken0?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, enhancedToken1?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, token0: { __typename?: 'PairMetadataToken', address: string, decimals?: number | null, name: string, networkId: number, pooled: string, price: string, symbol: string, labels?: Array<{ __typename?: 'ContractLabel', createdAt: number, subType: ContractLabelSubType, type: ContractLabelType } | null> | null }, token1: { __typename?: 'PairMetadataToken', address: string, decimals?: number | null, name: string, networkId: number, pooled: string, price: string, symbol: string, labels?: Array<{ __typename?: 'ContractLabel', createdAt: number, subType: ContractLabelSubType, type: ContractLabelType } | null> | null }, walletActivity?: { __typename?: 'TokenWalletActivity', bundlerCount: number, bundlerHeldPercentage: number, devHeldPercentage: number, insiderCount: number, insiderHeldPercentage: number, sniperCount: number, sniperHeldPercentage: number } | null } }; +export type PairMetadataQuery = { __typename?: 'Query', pairMetadata: { __typename?: 'PairMetadata', createdAt?: number | null, exchangeId?: string | null, fee?: number | null, highPrice1?: string | null, highPrice4?: string | null, highPrice5m?: string | null, highPrice12?: string | null, highPrice24?: string | null, id: string, liquidity: string, liquidityToken?: string | null, lowPrice1?: string | null, lowPrice4?: string | null, lowPrice5m?: string | null, lowPrice12?: string | null, lowPrice24?: string | null, networkId?: number | null, nonLiquidityToken?: string | null, pairAddress: string, price: string, priceChange1?: number | null, priceChange4?: number | null, priceChange5m?: number | null, priceChange12?: number | null, priceChange24?: number | null, priceNonQuoteToken: string, quoteToken?: QuoteToken | null, statsType: TokenPairStatisticsType, tickSpacing?: number | null, top10HoldersPercent?: number | null, volume1?: string | null, volume4?: string | null, volume5m?: string | null, volume12?: string | null, volume24?: string | null, enhancedToken0?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, enhancedToken1?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, token0: { __typename?: 'PairMetadataToken', address: string, decimals?: number | null, name: string, networkId: number, pooled: string, price: string, symbol: string, labels?: Array<{ __typename?: 'ContractLabel', createdAt: number, subType: ContractLabelSubType, type: ContractLabelType } | null> | null }, token1: { __typename?: 'PairMetadataToken', address: string, decimals?: number | null, name: string, networkId: number, pooled: string, price: string, symbol: string, labels?: Array<{ __typename?: 'ContractLabel', createdAt: number, subType: ContractLabelSubType, type: ContractLabelType } | null> | null }, walletActivity?: { __typename?: 'TokenWalletActivity', bundlerCount: number, bundlerHeldPercentage: number, devHeldPercentage: number, insiderCount: number, insiderHeldPercentage: number, sniperCount: number, sniperHeldPercentage: number } | null } }; export type PredictionCategoriesQueryVariables = Exact<{ [key: string]: never; }>; @@ -16007,7 +16163,7 @@ export type TokenQueryVariables = Exact<{ }>; -export type TokenQuery = { __typename?: 'Query', token: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } }; +export type TokenQuery = { __typename?: 'Query', token: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } }; export type TokenLifecycleEventsQueryVariables = Exact<{ cursor?: InputMaybe; @@ -16037,7 +16193,7 @@ export type TokensQueryVariables = Exact<{ }>; -export type TokensQuery = { __typename?: 'Query', tokens: Array<{ __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null> }; +export type TokensQuery = { __typename?: 'Query', tokens: Array<{ __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null> }; export type Top10HoldersPercentQueryVariables = Exact<{ tokenId: Scalars['String']['input']; @@ -16065,15 +16221,16 @@ export type OnBalanceUpdatedSubscriptionVariables = Exact<{ }>; -export type OnBalanceUpdatedSubscription = { __typename?: 'Subscription', onBalanceUpdated: { __typename?: 'Balance', address: string, balance: string, balanceUsd?: string | null, firstHeldTimestamp?: number | null, liquidityUsd?: string | null, networkId: number, shiftedBalance: number, tokenAddress: string, tokenId: string, tokenPriceUsd?: string | null, walletId: string, token?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null } }; +export type OnBalanceUpdatedSubscription = { __typename?: 'Subscription', onBalanceUpdated: { __typename?: 'Balance', address: string, balance: string, balanceUsd?: string | null, firstHeldTimestamp?: number | null, liquidityUsd?: string | null, networkId: number, shiftedBalance: number, tokenAddress: string, tokenId: string, tokenPriceUsd?: string | null, walletId: string, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null } }; export type OnBarsUpdatedSubscriptionVariables = Exact<{ + commitmentLevel?: InputMaybe | BarCommitmentLevel>; pairId?: InputMaybe; quoteToken?: InputMaybe; }>; -export type OnBarsUpdatedSubscription = { __typename?: 'Subscription', onBarsUpdated?: { __typename?: 'OnBarsUpdatedResponse', eventSortKey: string, networkId: number, pairAddress: string, pairId: string, quoteToken?: QuoteToken | null, quoteTokenAddress: string, statsType: TokenPairStatisticsType, timestamp: number, aggregates: { __typename?: 'ResolutionBarData', r1?: { __typename?: 'CurrencyBarData', t: number, token: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string }, usd: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string } } | null, r1D?: { __typename?: 'CurrencyBarData', t: number, token: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string }, usd: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string } } | null, r1S?: { __typename?: 'CurrencyBarData', t: number, token: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string }, usd: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string } } | null, r5?: { __typename?: 'CurrencyBarData', t: number, token: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string }, usd: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string } } | null, r5S?: { __typename?: 'CurrencyBarData', t: number, token: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string }, usd: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string } } | null, r7D?: { __typename?: 'CurrencyBarData', t: number, token: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string }, usd: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string } } | null, r15?: { __typename?: 'CurrencyBarData', t: number, token: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string }, usd: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string } } | null, r15S?: { __typename?: 'CurrencyBarData', t: number, token: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string }, usd: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string } } | null, r30?: { __typename?: 'CurrencyBarData', t: number, token: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string }, usd: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string } } | null, r30S?: { __typename?: 'CurrencyBarData', t: number, token: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string }, usd: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string } } | null, r60?: { __typename?: 'CurrencyBarData', t: number, token: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string }, usd: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string } } | null, r240?: { __typename?: 'CurrencyBarData', t: number, token: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string }, usd: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string } } | null, r720?: { __typename?: 'CurrencyBarData', t: number, token: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string }, usd: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string } } | null } } | null }; +export type OnBarsUpdatedSubscription = { __typename?: 'Subscription', onBarsUpdated?: { __typename?: 'OnBarsUpdatedResponse', commitmentLevel: BarCommitmentLevel, eventSortKey: string, networkId: number, pairAddress: string, pairId: string, quoteToken?: QuoteToken | null, quoteTokenAddress: string, statsType: TokenPairStatisticsType, timestamp: number, aggregates: { __typename?: 'ResolutionBarData', r1?: { __typename?: 'CurrencyBarData', t: number, token: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string }, usd: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string } } | null, r1D?: { __typename?: 'CurrencyBarData', t: number, token: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string }, usd: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string } } | null, r1S?: { __typename?: 'CurrencyBarData', t: number, token: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string }, usd: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string } } | null, r5?: { __typename?: 'CurrencyBarData', t: number, token: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string }, usd: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string } } | null, r5S?: { __typename?: 'CurrencyBarData', t: number, token: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string }, usd: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string } } | null, r7D?: { __typename?: 'CurrencyBarData', t: number, token: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string }, usd: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string } } | null, r15?: { __typename?: 'CurrencyBarData', t: number, token: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string }, usd: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string } } | null, r15S?: { __typename?: 'CurrencyBarData', t: number, token: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string }, usd: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string } } | null, r30?: { __typename?: 'CurrencyBarData', t: number, token: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string }, usd: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string } } | null, r30S?: { __typename?: 'CurrencyBarData', t: number, token: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string }, usd: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string } } | null, r60?: { __typename?: 'CurrencyBarData', t: number, token: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string }, usd: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string } } | null, r240?: { __typename?: 'CurrencyBarData', t: number, token: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string }, usd: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string } } | null, r720?: { __typename?: 'CurrencyBarData', t: number, token: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string }, usd: { __typename?: 'IndividualBarData', baseFees?: string | null, builderTips?: string | null, buyVolume: string, buyers: number, buys: number, c: number, h: number, l: number, l1DataFees?: string | null, liquidity: string, o: number, poolFees?: string | null, priorityFees?: string | null, sellVolume: string, sellers: number, sells: number, t: number, traders: number, transactions: number, v?: number | null, volume: string, volumeNativeToken: string } } | null } } | null }; export type OnDetailedPredictionEventStatsUpdatedSubscriptionVariables = Exact<{ eventId: Scalars['String']['input']; @@ -16113,36 +16270,22 @@ export type OnEventLabelCreatedSubscription = { __typename?: 'Subscription', onE export type OnEventsCreatedSubscriptionVariables = Exact<{ address?: InputMaybe; + commitmentLevel?: InputMaybe | EventCommitmentLevel>; id?: InputMaybe; networkId?: InputMaybe; quoteToken?: InputMaybe; }>; -export type OnEventsCreatedSubscription = { __typename?: 'Subscription', onEventsCreated?: { __typename?: 'AddEventsOutput', address: string, id: string, networkId: number, quoteToken?: QuoteToken | null, events: Array<{ __typename?: 'Event', address: string, baseTokenPrice?: string | null, blockHash: string, blockNumber: number, eventDisplayType?: EventDisplayType | null, eventType: EventType, id: string, liquidityToken?: string | null, logIndex: number, maker?: string | null, networkId: number, quoteToken?: QuoteToken | null, timestamp: number, token0Address?: string | null, token0PoolValueUsd?: string | null, token0SwapValueUsd?: string | null, token0ValueBase?: string | null, token1Address?: string | null, token1PoolValueUsd?: string | null, token1SwapValueUsd?: string | null, token1ValueBase?: string | null, transactionHash: string, transactionIndex: number, walletAge?: number | null, walletLabels?: Array | null, data?: { __typename?: 'BurnEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, tickLower?: string | null, tickUpper?: string | null, type: EventType } | { __typename?: 'MintEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, tickLower?: string | null, tickUpper?: string | null, type: EventType } | { __typename?: 'PoolBalanceChangedEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, liquidity0?: string | null, liquidity1?: string | null, protocolFeeAmount0?: string | null, protocolFeeAmount1?: string | null, sender?: string | null, token0?: string | null, token1?: string | null, type: EventType } | { __typename?: 'SwapEventData', amount0?: string | null, amount0In?: string | null, amount0Out?: string | null, amount1?: string | null, amount1In?: string | null, amount1Out?: string | null, amountNonLiquidityToken?: string | null, priceBaseToken?: string | null, priceBaseTokenTotal?: string | null, priceUsd?: string | null, priceUsdTotal?: string | null, tick?: string | null, type: EventType } | null, feeData?: { __typename?: 'EventFeeData', baseFeeNativeUnit?: string | null, builderTipNativeUnit?: string | null, dynamicFee?: boolean | null, estimatedPoolFee?: boolean | null, gasUsed?: string | null, l1DataFeeNativeUnit?: string | null, poolFeeAmountRaw?: string | null, poolFeeBps?: number | null, poolFeeRateRaw?: string | null, priorityFeeNativeUnit?: string | null, txEventCount?: number | null, supplementalFeeData?: { __typename?: 'PumpAmmCashbackFeeData', cashbackAmountLamports: string, cashbackFeeBps: number, type: string } | { __typename?: 'PumpCashbackFeeData', cashbackAmountLamports: string, cashbackFeeBps: number, type: string } | null } | null, labels?: { __typename?: 'LabelsForEvent', sandwich?: { __typename?: 'SandwichLabelForEvent', label: string, sandwichType: SandwichLabelForEventType, token0DrainedAmount: string, token1DrainedAmount: string } | null, washtrade?: { __typename?: 'WashtradeLabelForEvent', label: string } | null } | null } | null> } | null }; +export type OnEventsCreatedSubscription = { __typename?: 'Subscription', onEventsCreated?: { __typename?: 'AddEventsOutput', address: string, id: string, networkId: number, quoteToken?: QuoteToken | null, events: Array<{ __typename?: 'Event', address: string, baseTokenPrice?: string | null, blockHash: string, blockNumber: number, commitmentLevel: EventCommitmentLevel, eventDisplayType?: EventDisplayType | null, eventType: EventType, id: string, liquidityToken?: string | null, logIndex: number, maker?: string | null, networkId: number, quoteToken?: QuoteToken | null, supplementalIndex?: number | null, timestamp: number, token0Address?: string | null, token0PoolValueUsd?: string | null, token0SwapValueUsd?: string | null, token0ValueBase?: string | null, token1Address?: string | null, token1PoolValueUsd?: string | null, token1SwapValueUsd?: string | null, token1ValueBase?: string | null, transactionHash: string, transactionIndex: number, walletAge?: number | null, walletLabels?: Array | null, data?: { __typename?: 'BurnEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, tickLower?: string | null, tickUpper?: string | null, type: EventType } | { __typename?: 'MintEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, tickLower?: string | null, tickUpper?: string | null, type: EventType } | { __typename?: 'PoolBalanceChangedEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, liquidity0?: string | null, liquidity1?: string | null, protocolFeeAmount0?: string | null, protocolFeeAmount1?: string | null, sender?: string | null, token0?: string | null, token1?: string | null, type: EventType } | { __typename?: 'SwapEventData', amount0?: string | null, amount0In?: string | null, amount0Out?: string | null, amount1?: string | null, amount1In?: string | null, amount1Out?: string | null, amountNonLiquidityToken?: string | null, priceBaseToken?: string | null, priceBaseTokenTotal?: string | null, priceUsd?: string | null, priceUsdTotal?: string | null, tick?: string | null, type: EventType } | null, feeData?: { __typename?: 'EventFeeData', baseFeeNativeUnit?: string | null, builderTipNativeUnit?: string | null, dynamicFee?: boolean | null, estimatedPoolFee?: boolean | null, gasUsed?: string | null, l1DataFeeNativeUnit?: string | null, poolFeeAmountRaw?: string | null, poolFeeBps?: number | null, poolFeeRateRaw?: string | null, priorityFeeNativeUnit?: string | null, txEventCount?: number | null, supplementalFeeData?: { __typename?: 'PumpAmmCashbackFeeData', cashbackAmountLamports: string, cashbackFeeBps: number, type: string } | { __typename?: 'PumpCashbackFeeData', cashbackAmountLamports: string, cashbackFeeBps: number, type: string } | null } | null, labels?: { __typename?: 'LabelsForEvent', sandwich?: { __typename?: 'SandwichLabelForEvent', label: string, sandwichType: SandwichLabelForEventType, token0DrainedAmount: string, token1DrainedAmount: string } | null, washtrade?: { __typename?: 'WashtradeLabelForEvent', label: string } | null } | null } | null> } | null }; export type OnEventsCreatedByMakerSubscriptionVariables = Exact<{ + commitmentLevel?: InputMaybe | EventCommitmentLevel>; input: OnEventsCreatedByMakerInput; }>; -export type OnEventsCreatedByMakerSubscription = { __typename?: 'Subscription', onEventsCreatedByMaker?: { __typename?: 'AddEventsByMakerOutput', makerAddress: string, events: Array<{ __typename?: 'Event', address: string, baseTokenPrice?: string | null, blockHash: string, blockNumber: number, eventDisplayType?: EventDisplayType | null, eventType: EventType, id: string, liquidityToken?: string | null, logIndex: number, maker?: string | null, networkId: number, quoteToken?: QuoteToken | null, timestamp: number, token0Address?: string | null, token0PoolValueUsd?: string | null, token0SwapValueUsd?: string | null, token0ValueBase?: string | null, token1Address?: string | null, token1PoolValueUsd?: string | null, token1SwapValueUsd?: string | null, token1ValueBase?: string | null, transactionHash: string, transactionIndex: number, walletAge?: number | null, walletLabels?: Array | null, data?: { __typename?: 'BurnEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, tickLower?: string | null, tickUpper?: string | null, type: EventType } | { __typename?: 'MintEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, tickLower?: string | null, tickUpper?: string | null, type: EventType } | { __typename?: 'PoolBalanceChangedEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, liquidity0?: string | null, liquidity1?: string | null, protocolFeeAmount0?: string | null, protocolFeeAmount1?: string | null, sender?: string | null, token0?: string | null, token1?: string | null, type: EventType } | { __typename?: 'SwapEventData', amount0?: string | null, amount0In?: string | null, amount0Out?: string | null, amount1?: string | null, amount1In?: string | null, amount1Out?: string | null, amountNonLiquidityToken?: string | null, priceBaseToken?: string | null, priceBaseTokenTotal?: string | null, priceUsd?: string | null, priceUsdTotal?: string | null, tick?: string | null, type: EventType } | null, feeData?: { __typename?: 'EventFeeData', baseFeeNativeUnit?: string | null, builderTipNativeUnit?: string | null, dynamicFee?: boolean | null, estimatedPoolFee?: boolean | null, gasUsed?: string | null, l1DataFeeNativeUnit?: string | null, poolFeeAmountRaw?: string | null, poolFeeBps?: number | null, poolFeeRateRaw?: string | null, priorityFeeNativeUnit?: string | null, txEventCount?: number | null, supplementalFeeData?: { __typename?: 'PumpAmmCashbackFeeData', cashbackAmountLamports: string, cashbackFeeBps: number, type: string } | { __typename?: 'PumpCashbackFeeData', cashbackAmountLamports: string, cashbackFeeBps: number, type: string } | null } | null, labels?: { __typename?: 'LabelsForEvent', sandwich?: { __typename?: 'SandwichLabelForEvent', label: string, sandwichType: SandwichLabelForEventType, token0DrainedAmount: string, token1DrainedAmount: string } | null, washtrade?: { __typename?: 'WashtradeLabelForEvent', label: string } | null } | null }> } | null }; - -export type OnFilterTokenUpdatedSubscriptionVariables = Exact<{ - excludeTokens?: InputMaybe> | InputMaybe>; - filters?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - phrase?: InputMaybe; - rankings?: InputMaybe> | InputMaybe>; - statsType?: InputMaybe; - tokens?: InputMaybe> | InputMaybe>; - updatePeriod?: InputMaybe; - useAggregatedStats?: InputMaybe; -}>; - - -export type OnFilterTokenUpdatedSubscription = { __typename?: 'Subscription', onFilterTokensUpdated?: { __typename?: 'FilterTokenUpdates', updates?: Array<{ __typename?: 'TokenFilterResult', bundlerCount?: number | null, bundlerHeldPercentage?: number | null, buyCount1?: number | null, buyCount4?: number | null, buyCount5m?: number | null, buyCount12?: number | null, buyCount24?: number | null, buyVolume1?: string | null, buyVolume4?: string | null, buyVolume5m?: string | null, buyVolume12?: string | null, buyVolume24?: string | null, change1?: string | null, change4?: string | null, change5m?: string | null, change12?: string | null, change24?: string | null, circulatingMarketCap?: string | null, createdAt?: number | null, devHeldPercentage?: number | null, high1?: string | null, high4?: string | null, high5m?: string | null, high12?: string | null, high24?: string | null, holders?: number | null, insiderCount?: number | null, insiderHeldPercentage?: number | null, isScam?: boolean | null, lastTransaction?: number | null, liquidPairLiquidity?: string | null, liquidPairPriceUSD?: string | null, liquidity?: string | null, low1?: string | null, low4?: string | null, low5m?: string | null, low12?: string | null, low24?: string | null, marketCap?: string | null, potentialScamReasons?: Array | null, priceUSD?: string | null, quoteToken?: string | null, sellCount1?: number | null, sellCount4?: number | null, sellCount5m?: number | null, sellCount12?: number | null, sellCount24?: number | null, sellVolume1?: string | null, sellVolume4?: string | null, sellVolume5m?: string | null, sellVolume12?: string | null, sellVolume24?: string | null, sniperCount?: number | null, sniperHeldPercentage?: number | null, swapPct1dOldWallet?: string | null, swapPct7dOldWallet?: string | null, top10HoldersPercent?: number | null, trendingScore?: number | null, txnCount1?: number | null, txnCount4?: number | null, txnCount5m?: number | null, txnCount12?: number | null, txnCount24?: number | null, uniqueBuys1?: number | null, uniqueBuys4?: number | null, uniqueBuys5m?: number | null, uniqueBuys12?: number | null, uniqueBuys24?: number | null, uniqueSells1?: number | null, uniqueSells4?: number | null, uniqueSells5m?: number | null, uniqueSells12?: number | null, uniqueSells24?: number | null, uniqueTransactions1?: number | null, uniqueTransactions4?: number | null, uniqueTransactions5m?: number | null, uniqueTransactions12?: number | null, uniqueTransactions24?: number | null, volume1?: string | null, volume4?: string | null, volume5m?: string | null, volume12?: string | null, volume24?: string | null, volumeChange1?: string | null, volumeChange4?: string | null, volumeChange5m?: string | null, volumeChange12?: string | null, volumeChange24?: string | null, walletAgeAvg?: string | null, walletAgeStd?: string | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null } | null> | null, liquidPair?: { __typename?: 'Pair', address: string, createdAt?: number | null, exchangeHash: string, fee?: number | null, id: string, networkId: number, protocol?: string | null, tickSpacing?: number | null, token0: string, token1: string, pooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null, protocolData?: { __typename?: 'ArenaTradeData', tokenId?: string | null, type: string } | { __typename?: 'PumpData', creator?: string | null, type: string } | { __typename?: 'UniswapV4Data', isDynamicFee?: boolean | null, isToken0NetworkToken?: boolean | null, type: string, uniswapV4HookAddress?: string | null } | null, token0Data?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, token1Data?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, virtualPooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null } | null, pair?: { __typename?: 'Pair', address: string, createdAt?: number | null, exchangeHash: string, fee?: number | null, id: string, networkId: number, protocol?: string | null, tickSpacing?: number | null, token0: string, token1: string, pooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null, protocolData?: { __typename?: 'ArenaTradeData', tokenId?: string | null, type: string } | { __typename?: 'PumpData', creator?: string | null, type: string } | { __typename?: 'UniswapV4Data', isDynamicFee?: boolean | null, isToken0NetworkToken?: boolean | null, type: string, uniswapV4HookAddress?: string | null } | null, token0Data?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, token1Data?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, virtualPooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null } | null, token?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null } | null> | null } | null }; +export type OnEventsCreatedByMakerSubscription = { __typename?: 'Subscription', onEventsCreatedByMaker?: { __typename?: 'AddEventsByMakerOutput', makerAddress: string, events: Array<{ __typename?: 'Event', address: string, baseTokenPrice?: string | null, blockHash: string, blockNumber: number, commitmentLevel: EventCommitmentLevel, eventDisplayType?: EventDisplayType | null, eventType: EventType, id: string, liquidityToken?: string | null, logIndex: number, maker?: string | null, networkId: number, quoteToken?: QuoteToken | null, supplementalIndex?: number | null, timestamp: number, token0Address?: string | null, token0PoolValueUsd?: string | null, token0SwapValueUsd?: string | null, token0ValueBase?: string | null, token1Address?: string | null, token1PoolValueUsd?: string | null, token1SwapValueUsd?: string | null, token1ValueBase?: string | null, transactionHash: string, transactionIndex: number, walletAge?: number | null, walletLabels?: Array | null, data?: { __typename?: 'BurnEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, tickLower?: string | null, tickUpper?: string | null, type: EventType } | { __typename?: 'MintEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, tickLower?: string | null, tickUpper?: string | null, type: EventType } | { __typename?: 'PoolBalanceChangedEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, liquidity0?: string | null, liquidity1?: string | null, protocolFeeAmount0?: string | null, protocolFeeAmount1?: string | null, sender?: string | null, token0?: string | null, token1?: string | null, type: EventType } | { __typename?: 'SwapEventData', amount0?: string | null, amount0In?: string | null, amount0Out?: string | null, amount1?: string | null, amount1In?: string | null, amount1Out?: string | null, amountNonLiquidityToken?: string | null, priceBaseToken?: string | null, priceBaseTokenTotal?: string | null, priceUsd?: string | null, priceUsdTotal?: string | null, tick?: string | null, type: EventType } | null, feeData?: { __typename?: 'EventFeeData', baseFeeNativeUnit?: string | null, builderTipNativeUnit?: string | null, dynamicFee?: boolean | null, estimatedPoolFee?: boolean | null, gasUsed?: string | null, l1DataFeeNativeUnit?: string | null, poolFeeAmountRaw?: string | null, poolFeeBps?: number | null, poolFeeRateRaw?: string | null, priorityFeeNativeUnit?: string | null, txEventCount?: number | null, supplementalFeeData?: { __typename?: 'PumpAmmCashbackFeeData', cashbackAmountLamports: string, cashbackFeeBps: number, type: string } | { __typename?: 'PumpCashbackFeeData', cashbackAmountLamports: string, cashbackFeeBps: number, type: string } | null } | null, labels?: { __typename?: 'LabelsForEvent', sandwich?: { __typename?: 'SandwichLabelForEvent', label: string, sandwichType: SandwichLabelForEventType, token0DrainedAmount: string, token1DrainedAmount: string } | null, washtrade?: { __typename?: 'WashtradeLabelForEvent', label: string } | null } | null }> } | null }; export type OnFilterTokensUpdatedSubscriptionVariables = Exact<{ excludeTokens?: InputMaybe> | InputMaybe>; @@ -16158,14 +16301,14 @@ export type OnFilterTokensUpdatedSubscriptionVariables = Exact<{ }>; -export type OnFilterTokensUpdatedSubscription = { __typename?: 'Subscription', onFilterTokensUpdated?: { __typename?: 'FilterTokenUpdates', updates?: Array<{ __typename?: 'TokenFilterResult', baseFees1?: string | null, baseFees4?: string | null, baseFees5m?: string | null, baseFees12?: string | null, baseFees24?: string | null, builderTips1?: string | null, builderTips4?: string | null, builderTips5m?: string | null, builderTips12?: string | null, builderTips24?: string | null, bundlerCount?: number | null, bundlerHeldPercentage?: number | null, buyCount1?: number | null, buyCount4?: number | null, buyCount5m?: number | null, buyCount12?: number | null, buyCount24?: number | null, buyVolume1?: string | null, buyVolume4?: string | null, buyVolume5m?: string | null, buyVolume12?: string | null, buyVolume24?: string | null, change1?: string | null, change4?: string | null, change5m?: string | null, change12?: string | null, change24?: string | null, circulatingMarketCap?: string | null, createdAt?: number | null, devHeldPercentage?: number | null, feeToVolumeRatio1?: string | null, feeToVolumeRatio4?: string | null, feeToVolumeRatio5m?: string | null, feeToVolumeRatio12?: string | null, feeToVolumeRatio24?: string | null, high1?: string | null, high4?: string | null, high5m?: string | null, high12?: string | null, high24?: string | null, holders?: number | null, insiderCount?: number | null, insiderHeldPercentage?: number | null, isScam?: boolean | null, l1DataFees1?: string | null, l1DataFees4?: string | null, l1DataFees5m?: string | null, l1DataFees12?: string | null, l1DataFees24?: string | null, lastTransaction?: number | null, liquidPairLiquidity?: string | null, liquidPairPriceUSD?: string | null, liquidity?: string | null, low1?: string | null, low4?: string | null, low5m?: string | null, low12?: string | null, low24?: string | null, marketCap?: string | null, poolFees1?: string | null, poolFees4?: string | null, poolFees5m?: string | null, poolFees12?: string | null, poolFees24?: string | null, potentialScamReasons?: Array | null, priceUSD?: string | null, priorityFees1?: string | null, priorityFees4?: string | null, priorityFees5m?: string | null, priorityFees12?: string | null, priorityFees24?: string | null, quoteToken?: string | null, sellCount1?: number | null, sellCount4?: number | null, sellCount5m?: number | null, sellCount12?: number | null, sellCount24?: number | null, sellVolume1?: string | null, sellVolume4?: string | null, sellVolume5m?: string | null, sellVolume12?: string | null, sellVolume24?: string | null, sniperCount?: number | null, sniperHeldPercentage?: number | null, swapPct1dOldWallet?: string | null, swapPct7dOldWallet?: string | null, top10HoldersPercent?: number | null, totalFees1?: string | null, totalFees4?: string | null, totalFees5m?: string | null, totalFees12?: string | null, totalFees24?: string | null, trendingScore?: number | null, txnCount1?: number | null, txnCount4?: number | null, txnCount5m?: number | null, txnCount12?: number | null, txnCount24?: number | null, uniqueBuys1?: number | null, uniqueBuys4?: number | null, uniqueBuys5m?: number | null, uniqueBuys12?: number | null, uniqueBuys24?: number | null, uniqueSells1?: number | null, uniqueSells4?: number | null, uniqueSells5m?: number | null, uniqueSells12?: number | null, uniqueSells24?: number | null, uniqueTransactions1?: number | null, uniqueTransactions4?: number | null, uniqueTransactions5m?: number | null, uniqueTransactions12?: number | null, uniqueTransactions24?: number | null, volume1?: string | null, volume4?: string | null, volume5m?: string | null, volume12?: string | null, volume24?: string | null, volumeChange1?: string | null, volumeChange4?: string | null, volumeChange5m?: string | null, volumeChange12?: string | null, volumeChange24?: string | null, walletAgeAvg?: string | null, walletAgeStd?: string | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null } | null> | null, liquidPair?: { __typename?: 'Pair', address: string, createdAt?: number | null, exchangeHash: string, fee?: number | null, id: string, networkId: number, protocol?: string | null, tickSpacing?: number | null, token0: string, token1: string, pooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null, protocolData?: { __typename?: 'ArenaTradeData', tokenId?: string | null, type: string } | { __typename?: 'PumpData', creator?: string | null, type: string } | { __typename?: 'UniswapV4Data', isDynamicFee?: boolean | null, isToken0NetworkToken?: boolean | null, type: string, uniswapV4HookAddress?: string | null } | null, token0Data?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, token1Data?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, virtualPooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null } | null, pair?: { __typename?: 'Pair', address: string, createdAt?: number | null, exchangeHash: string, fee?: number | null, id: string, networkId: number, protocol?: string | null, tickSpacing?: number | null, token0: string, token1: string, pooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null, protocolData?: { __typename?: 'ArenaTradeData', tokenId?: string | null, type: string } | { __typename?: 'PumpData', creator?: string | null, type: string } | { __typename?: 'UniswapV4Data', isDynamicFee?: boolean | null, isToken0NetworkToken?: boolean | null, type: string, uniswapV4HookAddress?: string | null } | null, token0Data?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, token1Data?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, virtualPooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null } | null, token?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null } | null> | null } | null }; +export type OnFilterTokensUpdatedSubscription = { __typename?: 'Subscription', onFilterTokensUpdated?: { __typename?: 'FilterTokenUpdates', updates?: Array<{ __typename?: 'TokenFilterResult', baseFees1?: string | null, baseFees4?: string | null, baseFees5m?: string | null, baseFees12?: string | null, baseFees24?: string | null, builderTips1?: string | null, builderTips4?: string | null, builderTips5m?: string | null, builderTips12?: string | null, builderTips24?: string | null, bundlerCount?: number | null, bundlerHeldPercentage?: number | null, buyCount1?: number | null, buyCount4?: number | null, buyCount5m?: number | null, buyCount12?: number | null, buyCount24?: number | null, buyVolume1?: string | null, buyVolume4?: string | null, buyVolume5m?: string | null, buyVolume12?: string | null, buyVolume24?: string | null, change1?: string | null, change4?: string | null, change5m?: string | null, change12?: string | null, change24?: string | null, circulatingMarketCap?: string | null, createdAt?: number | null, devHeldPercentage?: number | null, feeToVolumeRatio1?: string | null, feeToVolumeRatio4?: string | null, feeToVolumeRatio5m?: string | null, feeToVolumeRatio12?: string | null, feeToVolumeRatio24?: string | null, high1?: string | null, high4?: string | null, high5m?: string | null, high12?: string | null, high24?: string | null, holders?: number | null, insiderCount?: number | null, insiderHeldPercentage?: number | null, isScam?: boolean | null, l1DataFees1?: string | null, l1DataFees4?: string | null, l1DataFees5m?: string | null, l1DataFees12?: string | null, l1DataFees24?: string | null, lastTransaction?: number | null, liquidPairLiquidity?: string | null, liquidPairPriceUSD?: string | null, liquidity?: string | null, low1?: string | null, low4?: string | null, low5m?: string | null, low12?: string | null, low24?: string | null, marketCap?: string | null, poolFees1?: string | null, poolFees4?: string | null, poolFees5m?: string | null, poolFees12?: string | null, poolFees24?: string | null, potentialScamReasons?: Array | null, priceUSD?: string | null, priorityFees1?: string | null, priorityFees4?: string | null, priorityFees5m?: string | null, priorityFees12?: string | null, priorityFees24?: string | null, quoteToken?: string | null, sellCount1?: number | null, sellCount4?: number | null, sellCount5m?: number | null, sellCount12?: number | null, sellCount24?: number | null, sellVolume1?: string | null, sellVolume4?: string | null, sellVolume5m?: string | null, sellVolume12?: string | null, sellVolume24?: string | null, sniperCount?: number | null, sniperHeldPercentage?: number | null, swapPct1dOldWallet?: string | null, swapPct7dOldWallet?: string | null, top10HoldersPercent?: number | null, totalFees1?: string | null, totalFees4?: string | null, totalFees5m?: string | null, totalFees12?: string | null, totalFees24?: string | null, trendingScore?: number | null, txnCount1?: number | null, txnCount4?: number | null, txnCount5m?: number | null, txnCount12?: number | null, txnCount24?: number | null, uniqueBuys1?: number | null, uniqueBuys4?: number | null, uniqueBuys5m?: number | null, uniqueBuys12?: number | null, uniqueBuys24?: number | null, uniqueSells1?: number | null, uniqueSells4?: number | null, uniqueSells5m?: number | null, uniqueSells12?: number | null, uniqueSells24?: number | null, uniqueTransactions1?: number | null, uniqueTransactions4?: number | null, uniqueTransactions5m?: number | null, uniqueTransactions12?: number | null, uniqueTransactions24?: number | null, volume1?: string | null, volume4?: string | null, volume5m?: string | null, volume12?: string | null, volume24?: string | null, volumeChange1?: string | null, volumeChange4?: string | null, volumeChange5m?: string | null, volumeChange12?: string | null, volumeChange24?: string | null, walletAgeAvg?: string | null, walletAgeStd?: string | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null } | null> | null, liquidPair?: { __typename?: 'Pair', address: string, createdAt?: number | null, exchangeHash: string, fee?: number | null, id: string, networkId: number, protocol?: string | null, tickSpacing?: number | null, token0: string, token1: string, pooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null, protocolData?: { __typename?: 'ArenaTradeData', tokenId?: string | null, type: string } | { __typename?: 'PumpData', creator?: string | null, type: string } | { __typename?: 'UniswapV4Data', isDynamicFee?: boolean | null, isToken0NetworkToken?: boolean | null, type: string, uniswapV4HookAddress?: string | null } | null, token0Data?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, token1Data?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, virtualPooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null } | null, pair?: { __typename?: 'Pair', address: string, createdAt?: number | null, exchangeHash: string, fee?: number | null, id: string, networkId: number, protocol?: string | null, tickSpacing?: number | null, token0: string, token1: string, pooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null, protocolData?: { __typename?: 'ArenaTradeData', tokenId?: string | null, type: string } | { __typename?: 'PumpData', creator?: string | null, type: string } | { __typename?: 'UniswapV4Data', isDynamicFee?: boolean | null, isToken0NetworkToken?: boolean | null, type: string, uniswapV4HookAddress?: string | null } | null, token0Data?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, token1Data?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, virtualPooled?: { __typename?: 'PooledTokenValues', token0?: string | null, token1?: string | null } | null } | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null } | null> | null } | null }; export type OnHoldersUpdatedSubscriptionVariables = Exact<{ tokenId: Scalars['String']['input']; }>; -export type OnHoldersUpdatedSubscription = { __typename?: 'Subscription', onHoldersUpdated?: { __typename?: 'HoldersUpdate', holders: number, networkId: number, tokenAddress: string, tokenId: string, balances: Array<{ __typename?: 'Balance', address: string, balance: string, balanceUsd?: string | null, firstHeldTimestamp?: number | null, liquidityUsd?: string | null, networkId: number, shiftedBalance: number, tokenAddress: string, tokenId: string, tokenPriceUsd?: string | null, walletId: string, token?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null }; +export type OnHoldersUpdatedSubscription = { __typename?: 'Subscription', onHoldersUpdated?: { __typename?: 'HoldersUpdate', holders: number, networkId: number, tokenAddress: string, tokenId: string, balances: Array<{ __typename?: 'Balance', address: string, balance: string, balanceUsd?: string | null, firstHeldTimestamp?: number | null, liquidityUsd?: string | null, networkId: number, shiftedBalance: number, tokenAddress: string, tokenId: string, tokenPriceUsd?: string | null, walletId: string, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null }; export type OnLatestPairUpdatedSubscriptionVariables = Exact<{ id?: InputMaybe; @@ -16189,14 +16332,14 @@ export type OnLaunchpadTokenEventSubscriptionVariables = Exact<{ }>; -export type OnLaunchpadTokenEventSubscription = { __typename?: 'Subscription', onLaunchpadTokenEvent: { __typename?: 'LaunchpadTokenEventOutput', address: string, bundlerCount?: number | null, bundlerHeldPercentage?: number | null, buyCount1?: number | null, devHeldPercentage?: number | null, eventType: LaunchpadTokenEventType, holders?: number | null, insiderCount?: number | null, insiderHeldPercentage?: number | null, launchpadName: string, liquidity?: string | null, marketCap?: string | null, networkId: number, price?: number | null, protocol: string, sellCount1?: number | null, sniperCount?: number | null, sniperHeldPercentage?: number | null, top10HoldersPercent?: number | null, transactions1?: number | null, volume1?: number | null, token: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } } }; +export type OnLaunchpadTokenEventSubscription = { __typename?: 'Subscription', onLaunchpadTokenEvent: { __typename?: 'LaunchpadTokenEventOutput', address: string, bundlerCount?: number | null, bundlerHeldPercentage?: number | null, buyCount1?: number | null, devHeldPercentage?: number | null, eventType: LaunchpadTokenEventType, holders?: number | null, insiderCount?: number | null, insiderHeldPercentage?: number | null, launchpadName: string, liquidity?: string | null, marketCap?: string | null, networkId: number, price?: number | null, protocol: string, sellCount1?: number | null, sniperCount?: number | null, sniperHeldPercentage?: number | null, top10HoldersPercent?: number | null, transactions1?: number | null, volume1?: number | null, token: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } } }; export type OnLaunchpadTokenEventBatchSubscriptionVariables = Exact<{ input?: InputMaybe; }>; -export type OnLaunchpadTokenEventBatchSubscription = { __typename?: 'Subscription', onLaunchpadTokenEventBatch: Array<{ __typename?: 'LaunchpadTokenEventOutput', address: string, bundlerCount?: number | null, bundlerHeldPercentage?: number | null, buyCount1?: number | null, devHeldPercentage?: number | null, eventType: LaunchpadTokenEventType, holders?: number | null, insiderCount?: number | null, insiderHeldPercentage?: number | null, launchpadName: string, liquidity?: string | null, marketCap?: string | null, networkId: number, price?: number | null, protocol: string, sellCount1?: number | null, sniperCount?: number | null, sniperHeldPercentage?: number | null, top10HoldersPercent?: number | null, transactions1?: number | null, volume1?: number | null, token: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } }> }; +export type OnLaunchpadTokenEventBatchSubscription = { __typename?: 'Subscription', onLaunchpadTokenEventBatch: Array<{ __typename?: 'LaunchpadTokenEventOutput', address: string, bundlerCount?: number | null, bundlerHeldPercentage?: number | null, buyCount1?: number | null, devHeldPercentage?: number | null, eventType: LaunchpadTokenEventType, holders?: number | null, insiderCount?: number | null, insiderHeldPercentage?: number | null, launchpadName: string, liquidity?: string | null, marketCap?: string | null, networkId: number, price?: number | null, protocol: string, sellCount1?: number | null, sniperCount?: number | null, sniperHeldPercentage?: number | null, top10HoldersPercent?: number | null, transactions1?: number | null, volume1?: number | null, token: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } }> }; export type OnNftAssetsCreatedSubscriptionVariables = Exact<{ address?: InputMaybe; @@ -16232,7 +16375,7 @@ export type OnPairMetadataUpdatedSubscriptionVariables = Exact<{ }>; -export type OnPairMetadataUpdatedSubscription = { __typename?: 'Subscription', onPairMetadataUpdated?: { __typename?: 'PairMetadata', createdAt?: number | null, exchangeId?: string | null, fee?: number | null, highPrice1?: string | null, highPrice4?: string | null, highPrice5m?: string | null, highPrice12?: string | null, highPrice24?: string | null, id: string, liquidity: string, liquidityToken?: string | null, lowPrice1?: string | null, lowPrice4?: string | null, lowPrice5m?: string | null, lowPrice12?: string | null, lowPrice24?: string | null, networkId?: number | null, nonLiquidityToken?: string | null, pairAddress: string, price: string, priceChange1?: number | null, priceChange4?: number | null, priceChange5m?: number | null, priceChange12?: number | null, priceChange24?: number | null, priceNonQuoteToken: string, quoteToken?: QuoteToken | null, statsType: TokenPairStatisticsType, tickSpacing?: number | null, top10HoldersPercent?: number | null, volume1?: string | null, volume4?: string | null, volume5m?: string | null, volume12?: string | null, volume24?: string | null, enhancedToken0?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, enhancedToken1?: { __typename?: 'EnhancedToken', address: string, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, token0: { __typename?: 'PairMetadataToken', address: string, decimals?: number | null, name: string, networkId: number, pooled: string, price: string, symbol: string, labels?: Array<{ __typename?: 'ContractLabel', createdAt: number, subType: ContractLabelSubType, type: ContractLabelType } | null> | null }, token1: { __typename?: 'PairMetadataToken', address: string, decimals?: number | null, name: string, networkId: number, pooled: string, price: string, symbol: string, labels?: Array<{ __typename?: 'ContractLabel', createdAt: number, subType: ContractLabelSubType, type: ContractLabelType } | null> | null }, walletActivity?: { __typename?: 'TokenWalletActivity', bundlerCount: number, bundlerHeldPercentage: number, devHeldPercentage: number, insiderCount: number, insiderHeldPercentage: number, sniperCount: number, sniperHeldPercentage: number } | null } | null }; +export type OnPairMetadataUpdatedSubscription = { __typename?: 'Subscription', onPairMetadataUpdated?: { __typename?: 'PairMetadata', createdAt?: number | null, exchangeId?: string | null, fee?: number | null, highPrice1?: string | null, highPrice4?: string | null, highPrice5m?: string | null, highPrice12?: string | null, highPrice24?: string | null, id: string, liquidity: string, liquidityToken?: string | null, lowPrice1?: string | null, lowPrice4?: string | null, lowPrice5m?: string | null, lowPrice12?: string | null, lowPrice24?: string | null, networkId?: number | null, nonLiquidityToken?: string | null, pairAddress: string, price: string, priceChange1?: number | null, priceChange4?: number | null, priceChange5m?: number | null, priceChange12?: number | null, priceChange24?: number | null, priceNonQuoteToken: string, quoteToken?: QuoteToken | null, statsType: TokenPairStatisticsType, tickSpacing?: number | null, top10HoldersPercent?: number | null, volume1?: string | null, volume4?: string | null, volume5m?: string | null, volume12?: string | null, volume24?: string | null, enhancedToken0?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, enhancedToken1?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null, token?: { __typename?: 'EnhancedToken', address: string, bluechipRating?: string | null, cmcId?: number | null, createBlockNumber?: number | null, createTransactionHash?: string | null, createdAt?: number | null, creatorAddress?: string | null, decimals: number, freezable?: string | null, gridAssetId?: string | null, id: string, isFreezableValid?: boolean | null, isMintableValid?: boolean | null, isScam?: boolean | null, mintable?: string | null, name?: string | null, networkId: number, profanity?: boolean | null, symbol?: string | null, top10HoldersPercent?: number | null, asset?: { __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> } | null, exchanges?: Array<{ __typename?: 'Exchange', address: string, color?: string | null, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null }> | null, info?: { __typename?: 'TokenInfo', address: string, bluechipRating?: string | null, circulatingSupply?: string | null, cmcId?: number | null, description?: string | null, gridAssetId?: string | null, id: string, imageBannerUrl?: string | null, imageLargeUrl?: string | null, imageSmallUrl?: string | null, imageThumbHash?: string | null, imageThumbUrl?: string | null, isScam?: boolean | null, name?: string | null, networkId: number, symbol: string, totalSupply?: string | null, videoExternalUrl?: string | null } | null, launchpad?: { __typename?: 'LaunchpadData', completed?: boolean | null, completedAt?: number | null, completedSlot?: number | null, graduationPercent?: number | null, isCashbackEnabled?: boolean | null, launchpadIconUrl?: string | null, launchpadName?: string | null, launchpadProtocol?: string | null, migrated?: boolean | null, migratedAt?: number | null, migratedPoolAddress?: string | null, migratedSlot?: number | null, poolAddress?: string | null } | null, organization?: { __typename?: 'Organization', descriptionLong?: string | null, descriptionShort?: string | null, foundingDate?: string | null, header?: string | null, icon?: string | null, logo?: string | null, name: string, rootId: string, sector?: string | null, tagLine?: string | null, type?: string | null, assets: Array<{ __typename?: 'Asset', description?: string | null, icon?: string | null, id: string, name?: string | null, rootId: string, status?: string | null, ticker?: string | null, type?: string | null, assetDeployments: Array<{ __typename?: 'AssetDeployment', address: string, assetId: string, id: string, networkId: number, rootId: string, standard?: string | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null }> }>, socials: Array<{ __typename?: 'OrganizationSocial', type?: string | null, url: string }>, urls: Array<{ __typename?: 'OrganizationUrl', type?: string | null, url: string }> } | null, socialLinks?: { __typename?: 'SocialLinks', bitcointalk?: string | null, blog?: string | null, coingecko?: string | null, coinmarketcap?: string | null, discord?: string | null, email?: string | null, facebook?: string | null, github?: string | null, instagram?: string | null, linkedin?: string | null, reddit?: string | null, slack?: string | null, telegram?: string | null, twitch?: string | null, twitter?: string | null, website?: string | null, wechat?: string | null, whitepaper?: string | null, youtube?: string | null } | null } | null, token0: { __typename?: 'PairMetadataToken', address: string, decimals?: number | null, name: string, networkId: number, pooled: string, price: string, symbol: string, labels?: Array<{ __typename?: 'ContractLabel', createdAt: number, subType: ContractLabelSubType, type: ContractLabelType } | null> | null }, token1: { __typename?: 'PairMetadataToken', address: string, decimals?: number | null, name: string, networkId: number, pooled: string, price: string, symbol: string, labels?: Array<{ __typename?: 'ContractLabel', createdAt: number, subType: ContractLabelSubType, type: ContractLabelType } | null> | null }, walletActivity?: { __typename?: 'TokenWalletActivity', bundlerCount: number, bundlerHeldPercentage: number, devHeldPercentage: number, insiderCount: number, insiderHeldPercentage: number, sniperCount: number, sniperHeldPercentage: number } | null } | null }; export type OnPredictionEventBarsUpdatedSubscriptionVariables = Exact<{ eventId: Scalars['String']['input']; @@ -16286,7 +16429,7 @@ export type OnTokenEventsCreatedSubscriptionVariables = Exact<{ }>; -export type OnTokenEventsCreatedSubscription = { __typename?: 'Subscription', onTokenEventsCreated: { __typename?: 'AddTokenEventsOutput', id: string, events: Array<{ __typename?: 'Event', address: string, baseTokenPrice?: string | null, blockHash: string, blockNumber: number, eventDisplayType?: EventDisplayType | null, eventType: EventType, id: string, liquidityToken?: string | null, logIndex: number, maker?: string | null, networkId: number, quoteToken?: QuoteToken | null, timestamp: number, token0Address?: string | null, token0PoolValueUsd?: string | null, token0SwapValueUsd?: string | null, token0ValueBase?: string | null, token1Address?: string | null, token1PoolValueUsd?: string | null, token1SwapValueUsd?: string | null, token1ValueBase?: string | null, transactionHash: string, transactionIndex: number, walletAge?: number | null, walletLabels?: Array | null, data?: { __typename?: 'BurnEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, tickLower?: string | null, tickUpper?: string | null, type: EventType } | { __typename?: 'MintEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, tickLower?: string | null, tickUpper?: string | null, type: EventType } | { __typename?: 'PoolBalanceChangedEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, liquidity0?: string | null, liquidity1?: string | null, protocolFeeAmount0?: string | null, protocolFeeAmount1?: string | null, sender?: string | null, token0?: string | null, token1?: string | null, type: EventType } | { __typename?: 'SwapEventData', amount0?: string | null, amount0In?: string | null, amount0Out?: string | null, amount1?: string | null, amount1In?: string | null, amount1Out?: string | null, amountNonLiquidityToken?: string | null, priceBaseToken?: string | null, priceBaseTokenTotal?: string | null, priceUsd?: string | null, priceUsdTotal?: string | null, tick?: string | null, type: EventType } | null, feeData?: { __typename?: 'EventFeeData', baseFeeNativeUnit?: string | null, builderTipNativeUnit?: string | null, dynamicFee?: boolean | null, estimatedPoolFee?: boolean | null, gasUsed?: string | null, l1DataFeeNativeUnit?: string | null, poolFeeAmountRaw?: string | null, poolFeeBps?: number | null, poolFeeRateRaw?: string | null, priorityFeeNativeUnit?: string | null, txEventCount?: number | null, supplementalFeeData?: { __typename?: 'PumpAmmCashbackFeeData', cashbackAmountLamports: string, cashbackFeeBps: number, type: string } | { __typename?: 'PumpCashbackFeeData', cashbackAmountLamports: string, cashbackFeeBps: number, type: string } | null } | null, labels?: { __typename?: 'LabelsForEvent', sandwich?: { __typename?: 'SandwichLabelForEvent', label: string, sandwichType: SandwichLabelForEventType, token0DrainedAmount: string, token1DrainedAmount: string } | null, washtrade?: { __typename?: 'WashtradeLabelForEvent', label: string } | null } | null }> } }; +export type OnTokenEventsCreatedSubscription = { __typename?: 'Subscription', onTokenEventsCreated: { __typename?: 'AddTokenEventsOutput', id: string, events: Array<{ __typename?: 'Event', address: string, baseTokenPrice?: string | null, blockHash: string, blockNumber: number, commitmentLevel: EventCommitmentLevel, eventDisplayType?: EventDisplayType | null, eventType: EventType, id: string, liquidityToken?: string | null, logIndex: number, maker?: string | null, networkId: number, quoteToken?: QuoteToken | null, supplementalIndex?: number | null, timestamp: number, token0Address?: string | null, token0PoolValueUsd?: string | null, token0SwapValueUsd?: string | null, token0ValueBase?: string | null, token1Address?: string | null, token1PoolValueUsd?: string | null, token1SwapValueUsd?: string | null, token1ValueBase?: string | null, transactionHash: string, transactionIndex: number, walletAge?: number | null, walletLabels?: Array | null, data?: { __typename?: 'BurnEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, tickLower?: string | null, tickUpper?: string | null, type: EventType } | { __typename?: 'MintEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, tickLower?: string | null, tickUpper?: string | null, type: EventType } | { __typename?: 'PoolBalanceChangedEventData', amount0?: string | null, amount0Shifted?: string | null, amount1?: string | null, amount1Shifted?: string | null, liquidity0?: string | null, liquidity1?: string | null, protocolFeeAmount0?: string | null, protocolFeeAmount1?: string | null, sender?: string | null, token0?: string | null, token1?: string | null, type: EventType } | { __typename?: 'SwapEventData', amount0?: string | null, amount0In?: string | null, amount0Out?: string | null, amount1?: string | null, amount1In?: string | null, amount1Out?: string | null, amountNonLiquidityToken?: string | null, priceBaseToken?: string | null, priceBaseTokenTotal?: string | null, priceUsd?: string | null, priceUsdTotal?: string | null, tick?: string | null, type: EventType } | null, feeData?: { __typename?: 'EventFeeData', baseFeeNativeUnit?: string | null, builderTipNativeUnit?: string | null, dynamicFee?: boolean | null, estimatedPoolFee?: boolean | null, gasUsed?: string | null, l1DataFeeNativeUnit?: string | null, poolFeeAmountRaw?: string | null, poolFeeBps?: number | null, poolFeeRateRaw?: string | null, priorityFeeNativeUnit?: string | null, txEventCount?: number | null, supplementalFeeData?: { __typename?: 'PumpAmmCashbackFeeData', cashbackAmountLamports: string, cashbackFeeBps: number, type: string } | { __typename?: 'PumpCashbackFeeData', cashbackAmountLamports: string, cashbackFeeBps: number, type: string } | null } | null, labels?: { __typename?: 'LabelsForEvent', sandwich?: { __typename?: 'SandwichLabelForEvent', label: string, sandwichType: SandwichLabelForEventType, token0DrainedAmount: string, token1DrainedAmount: string } | null, washtrade?: { __typename?: 'WashtradeLabelForEvent', label: string } | null } | null }> } }; export type OnTokenLifecycleEventsCreatedSubscriptionVariables = Exact<{ address?: InputMaybe; @@ -16326,10 +16469,10 @@ export const CreateApiTokensDocument = {"kind":"Document","definitions":[{"kind" export const CreateWebhooksDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"CreateWebhooks"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CreateWebhooksInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createWebhooks"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nftEventWebhooks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"alertRecurrence"}},{"kind":"Field","name":{"kind":"Name","value":"bucketId"}},{"kind":"Field","name":{"kind":"Name","value":"bucketSortkey"}},{"kind":"Field","name":{"kind":"Name","value":"callbackUrl"}},{"kind":"Field","name":{"kind":"Name","value":"conditions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NftEventWebhookCondition"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contractAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"eventType"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"fillSource"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"oneOf"}}]}},{"kind":"Field","name":{"kind":"Name","value":"ignoreTransfers"}},{"kind":"Field","name":{"kind":"Name","value":"individualBaseTokenPrice"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}},{"kind":"Field","name":{"kind":"Name","value":"gt"}},{"kind":"Field","name":{"kind":"Name","value":"gte"}},{"kind":"Field","name":{"kind":"Name","value":"lt"}},{"kind":"Field","name":{"kind":"Name","value":"lte"}}]}},{"kind":"Field","name":{"kind":"Name","value":"maker"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"networkId"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"oneOf"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"nftTokenAddress"},"name":{"kind":"Name","value":"tokenAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PriceEventWebhookCondition"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"priceNetworkId"},"name":{"kind":"Name","value":"networkId"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}},{"kind":"Field","name":{"kind":"Name","value":"gt"}},{"kind":"Field","name":{"kind":"Name","value":"gte"}},{"kind":"Field","name":{"kind":"Name","value":"lt"}},{"kind":"Field","name":{"kind":"Name","value":"lte"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"priceTokenAddress"},"name":{"kind":"Name","value":"tokenAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RawTransactionWebhookCondition"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"from"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"ignoreNftEvents"}},{"kind":"Field","name":{"kind":"Name","value":"ignoreTokenPairEvents"}},{"kind":"Field","name":{"kind":"Name","value":"input"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contains"}},{"kind":"Field","name":{"kind":"Name","value":"notContains"}}]}},{"kind":"Field","name":{"kind":"Name","value":"networkId"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"oneOf"}}]}},{"kind":"Field","name":{"kind":"Name","value":"to"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"toOrFrom"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TokenPairEventWebhookCondition"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eventType"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"oneOf"}}]}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"maker"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"networkId"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"oneOf"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pairAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"swapValue"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}},{"kind":"Field","name":{"kind":"Name","value":"gt"}},{"kind":"Field","name":{"kind":"Name","value":"gte"}},{"kind":"Field","name":{"kind":"Name","value":"lt"}},{"kind":"Field","name":{"kind":"Name","value":"lte"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"created"}},{"kind":"Field","name":{"kind":"Name","value":"groupId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"publishingType"}},{"kind":"Field","name":{"kind":"Name","value":"retrySettings"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"maxRetries"}},{"kind":"Field","name":{"kind":"Name","value":"maxRetryDelay"}},{"kind":"Field","name":{"kind":"Name","value":"maxTimeElapsed"}},{"kind":"Field","name":{"kind":"Name","value":"minRetryDelay"}}]}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"webhookType"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceWebhooks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"alertRecurrence"}},{"kind":"Field","name":{"kind":"Name","value":"bucketId"}},{"kind":"Field","name":{"kind":"Name","value":"bucketSortkey"}},{"kind":"Field","name":{"kind":"Name","value":"callbackUrl"}},{"kind":"Field","name":{"kind":"Name","value":"conditions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NftEventWebhookCondition"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contractAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"eventType"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"fillSource"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"oneOf"}}]}},{"kind":"Field","name":{"kind":"Name","value":"ignoreTransfers"}},{"kind":"Field","name":{"kind":"Name","value":"individualBaseTokenPrice"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}},{"kind":"Field","name":{"kind":"Name","value":"gt"}},{"kind":"Field","name":{"kind":"Name","value":"gte"}},{"kind":"Field","name":{"kind":"Name","value":"lt"}},{"kind":"Field","name":{"kind":"Name","value":"lte"}}]}},{"kind":"Field","name":{"kind":"Name","value":"maker"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"networkId"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"oneOf"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"nftTokenAddress"},"name":{"kind":"Name","value":"tokenAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PriceEventWebhookCondition"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"priceNetworkId"},"name":{"kind":"Name","value":"networkId"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}},{"kind":"Field","name":{"kind":"Name","value":"gt"}},{"kind":"Field","name":{"kind":"Name","value":"gte"}},{"kind":"Field","name":{"kind":"Name","value":"lt"}},{"kind":"Field","name":{"kind":"Name","value":"lte"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"priceTokenAddress"},"name":{"kind":"Name","value":"tokenAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RawTransactionWebhookCondition"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"from"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"ignoreNftEvents"}},{"kind":"Field","name":{"kind":"Name","value":"ignoreTokenPairEvents"}},{"kind":"Field","name":{"kind":"Name","value":"input"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contains"}},{"kind":"Field","name":{"kind":"Name","value":"notContains"}}]}},{"kind":"Field","name":{"kind":"Name","value":"networkId"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"oneOf"}}]}},{"kind":"Field","name":{"kind":"Name","value":"to"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"toOrFrom"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TokenPairEventWebhookCondition"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eventType"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"oneOf"}}]}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"maker"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"networkId"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"oneOf"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pairAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"swapValue"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}},{"kind":"Field","name":{"kind":"Name","value":"gt"}},{"kind":"Field","name":{"kind":"Name","value":"gte"}},{"kind":"Field","name":{"kind":"Name","value":"lt"}},{"kind":"Field","name":{"kind":"Name","value":"lte"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"created"}},{"kind":"Field","name":{"kind":"Name","value":"groupId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"publishingType"}},{"kind":"Field","name":{"kind":"Name","value":"retrySettings"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"maxRetries"}},{"kind":"Field","name":{"kind":"Name","value":"maxRetryDelay"}},{"kind":"Field","name":{"kind":"Name","value":"maxTimeElapsed"}},{"kind":"Field","name":{"kind":"Name","value":"minRetryDelay"}}]}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"webhookType"}}]}},{"kind":"Field","name":{"kind":"Name","value":"rawTransactionWebhooks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"alertRecurrence"}},{"kind":"Field","name":{"kind":"Name","value":"bucketId"}},{"kind":"Field","name":{"kind":"Name","value":"bucketSortkey"}},{"kind":"Field","name":{"kind":"Name","value":"callbackUrl"}},{"kind":"Field","name":{"kind":"Name","value":"conditions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NftEventWebhookCondition"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contractAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"eventType"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"fillSource"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"oneOf"}}]}},{"kind":"Field","name":{"kind":"Name","value":"ignoreTransfers"}},{"kind":"Field","name":{"kind":"Name","value":"individualBaseTokenPrice"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}},{"kind":"Field","name":{"kind":"Name","value":"gt"}},{"kind":"Field","name":{"kind":"Name","value":"gte"}},{"kind":"Field","name":{"kind":"Name","value":"lt"}},{"kind":"Field","name":{"kind":"Name","value":"lte"}}]}},{"kind":"Field","name":{"kind":"Name","value":"maker"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"networkId"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"oneOf"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PriceEventWebhookCondition"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"priceEventNetworkId"},"name":{"kind":"Name","value":"networkId"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}},{"kind":"Field","name":{"kind":"Name","value":"gt"}},{"kind":"Field","name":{"kind":"Name","value":"gte"}},{"kind":"Field","name":{"kind":"Name","value":"lt"}},{"kind":"Field","name":{"kind":"Name","value":"lte"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"priceEventTokenAddress"},"name":{"kind":"Name","value":"tokenAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RawTransactionWebhookCondition"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"from"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"ignoreNftEvents"}},{"kind":"Field","name":{"kind":"Name","value":"ignoreTokenPairEvents"}},{"kind":"Field","name":{"kind":"Name","value":"input"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contains"}},{"kind":"Field","name":{"kind":"Name","value":"notContains"}}]}},{"kind":"Field","name":{"kind":"Name","value":"networkId"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"oneOf"}}]}},{"kind":"Field","name":{"kind":"Name","value":"to"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"toOrFrom"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TokenPairEventWebhookCondition"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eventType"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"oneOf"}}]}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"maker"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"networkId"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"oneOf"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pairAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"swapValue"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}},{"kind":"Field","name":{"kind":"Name","value":"gt"}},{"kind":"Field","name":{"kind":"Name","value":"gte"}},{"kind":"Field","name":{"kind":"Name","value":"lt"}},{"kind":"Field","name":{"kind":"Name","value":"lte"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"created"}},{"kind":"Field","name":{"kind":"Name","value":"groupId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"publishingType"}},{"kind":"Field","name":{"kind":"Name","value":"retrySettings"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"maxRetries"}},{"kind":"Field","name":{"kind":"Name","value":"maxRetryDelay"}},{"kind":"Field","name":{"kind":"Name","value":"maxTimeElapsed"}},{"kind":"Field","name":{"kind":"Name","value":"minRetryDelay"}}]}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"webhookType"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenPairEventWebhooks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"alertRecurrence"}},{"kind":"Field","name":{"kind":"Name","value":"bucketId"}},{"kind":"Field","name":{"kind":"Name","value":"bucketSortkey"}},{"kind":"Field","name":{"kind":"Name","value":"callbackUrl"}},{"kind":"Field","name":{"kind":"Name","value":"conditions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NftEventWebhookCondition"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contractAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"eventType"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"fillSource"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"oneOf"}}]}},{"kind":"Field","name":{"kind":"Name","value":"ignoreTransfers"}},{"kind":"Field","name":{"kind":"Name","value":"individualBaseTokenPrice"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}},{"kind":"Field","name":{"kind":"Name","value":"gt"}},{"kind":"Field","name":{"kind":"Name","value":"gte"}},{"kind":"Field","name":{"kind":"Name","value":"lt"}},{"kind":"Field","name":{"kind":"Name","value":"lte"}}]}},{"kind":"Field","name":{"kind":"Name","value":"maker"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"networkId"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"oneOf"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PriceEventWebhookCondition"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"priceEventNetworkId"},"name":{"kind":"Name","value":"networkId"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}},{"kind":"Field","name":{"kind":"Name","value":"gt"}},{"kind":"Field","name":{"kind":"Name","value":"gte"}},{"kind":"Field","name":{"kind":"Name","value":"lt"}},{"kind":"Field","name":{"kind":"Name","value":"lte"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"priceEventTokenAddress"},"name":{"kind":"Name","value":"tokenAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RawTransactionWebhookCondition"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"from"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"ignoreNftEvents"}},{"kind":"Field","name":{"kind":"Name","value":"ignoreTokenPairEvents"}},{"kind":"Field","name":{"kind":"Name","value":"input"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contains"}},{"kind":"Field","name":{"kind":"Name","value":"notContains"}}]}},{"kind":"Field","name":{"kind":"Name","value":"networkId"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"oneOf"}}]}},{"kind":"Field","name":{"kind":"Name","value":"to"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"toOrFrom"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TokenPairEventWebhookCondition"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eventType"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"oneOf"}}]}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"maker"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"networkId"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"oneOf"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pairAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"swapValue"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}},{"kind":"Field","name":{"kind":"Name","value":"gt"}},{"kind":"Field","name":{"kind":"Name","value":"gte"}},{"kind":"Field","name":{"kind":"Name","value":"lt"}},{"kind":"Field","name":{"kind":"Name","value":"lte"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"created"}},{"kind":"Field","name":{"kind":"Name","value":"groupId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"publishingType"}},{"kind":"Field","name":{"kind":"Name","value":"retrySettings"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"maxRetries"}},{"kind":"Field","name":{"kind":"Name","value":"maxRetryDelay"}},{"kind":"Field","name":{"kind":"Name","value":"maxTimeElapsed"}},{"kind":"Field","name":{"kind":"Name","value":"minRetryDelay"}}]}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"webhookType"}}]}}]}}]}}]} as unknown as DocumentNode; export const DeleteApiTokenDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"DeleteApiToken"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"deleteApiToken"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}}]}]}}]} as unknown as DocumentNode; export const DeleteWebhooksDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"DeleteWebhooks"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DeleteWebhooksInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"deleteWebhooks"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"deletedIds"}}]}}]}}]} as unknown as DocumentNode; -export const RefreshBalancesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"RefreshBalances"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"RefreshBalancesInput"}}}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"refreshBalances"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"balance"}},{"kind":"Field","name":{"kind":"Name","value":"balanceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"firstHeldTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"shiftedBalance"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"tokenPriceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"walletId"}}]}}]}}]} as unknown as DocumentNode; +export const RefreshBalancesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"RefreshBalances"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"RefreshBalancesInput"}}}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"refreshBalances"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"balance"}},{"kind":"Field","name":{"kind":"Name","value":"balanceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"firstHeldTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"shiftedBalance"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"tokenPriceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"walletId"}}]}}]}}]} as unknown as DocumentNode; export const ApiTokenDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"ApiToken"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"token"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"apiToken"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"token"},"value":{"kind":"Variable","name":{"kind":"Name","value":"token"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"expiresTimeString"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"remaining"}},{"kind":"Field","name":{"kind":"Name","value":"requestLimit"}},{"kind":"Field","name":{"kind":"Name","value":"token"}}]}}]}}]} as unknown as DocumentNode; export const ApiTokensDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"ApiTokens"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"apiTokens"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"expiresTimeString"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"remaining"}},{"kind":"Field","name":{"kind":"Name","value":"requestLimit"}},{"kind":"Field","name":{"kind":"Name","value":"token"}}]}}]}}]} as unknown as DocumentNode; -export const BalancesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"Balances"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"BalancesInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"balances"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cursor"}},{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"balance"}},{"kind":"Field","name":{"kind":"Name","value":"balanceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"firstHeldTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"shiftedBalance"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"tokenPriceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"walletId"}}]}}]}}]}}]} as unknown as DocumentNode; +export const BalancesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"Balances"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"BalancesInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"balances"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cursor"}},{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"balance"}},{"kind":"Field","name":{"kind":"Name","value":"balanceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"firstHeldTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"shiftedBalance"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"tokenPriceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"walletId"}}]}}]}}]}}]} as unknown as DocumentNode; export const BlocksDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"Blocks"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"BlocksInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blocks"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"hash"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}}]}}]}}]} as unknown as DocumentNode; export const ChartUrlsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"ChartUrls"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ChartInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"chartUrls"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"pair"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}}]}}]} as unknown as DocumentNode; export const DetailedPredictionEventStatsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"DetailedPredictionEventStats"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DetailedPredictionEventStatsInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"detailedPredictionEventStats"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeStats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"venueVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"eventId"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"lifecycle"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ageSeconds"}},{"kind":"Field","name":{"kind":"Name","value":"expectedLifespanSeconds"}},{"kind":"Field","name":{"kind":"Name","value":"isResolved"}},{"kind":"Field","name":{"kind":"Name","value":"timeToResolutionSeconds"}},{"kind":"Field","name":{"kind":"Name","value":"winningOutcomeId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"predictionEvent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"categories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"closesAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"marketIds"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"opensAt"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"question"}},{"kind":"Field","name":{"kind":"Name","value":"resolution"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"result"}},{"kind":"Field","name":{"kind":"Name","value":"source"}}]}},{"kind":"Field","name":{"kind":"Name","value":"resolvedAt"}},{"kind":"Field","name":{"kind":"Name","value":"resolvesAt"}},{"kind":"Field","name":{"kind":"Name","value":"rulesPrimary"}},{"kind":"Field","name":{"kind":"Name","value":"rulesSecondary"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"venueEventId"}},{"kind":"Field","name":{"kind":"Name","value":"venueSeriesId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"predictionMarkets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"categories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"closesAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"eventId"}},{"kind":"Field","name":{"kind":"Name","value":"eventLabel"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"observedAt"}},{"kind":"Field","name":{"kind":"Name","value":"opensAt"}},{"kind":"Field","name":{"kind":"Name","value":"outcomeIds"}},{"kind":"Field","name":{"kind":"Name","value":"outcomeLabels"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"question"}},{"kind":"Field","name":{"kind":"Name","value":"resolution"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"result"}},{"kind":"Field","name":{"kind":"Name","value":"source"}}]}},{"kind":"Field","name":{"kind":"Name","value":"resolvedAt"}},{"kind":"Field","name":{"kind":"Name","value":"resolvesAt"}},{"kind":"Field","name":{"kind":"Name","value":"rules"}},{"kind":"Field","name":{"kind":"Name","value":"rules2"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"venueEventId"}},{"kind":"Field","name":{"kind":"Name","value":"venueMarketId"}},{"kind":"Field","name":{"kind":"Name","value":"venueMarketSlug"}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeIds"}},{"kind":"Field","name":{"kind":"Name","value":"winningOutcomeId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"relevanceScores"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"score1"}},{"kind":"Field","name":{"kind":"Name","value":"score1w"}},{"kind":"Field","name":{"kind":"Name","value":"score4"}},{"kind":"Field","name":{"kind":"Name","value":"score5m"}},{"kind":"Field","name":{"kind":"Name","value":"score12"}},{"kind":"Field","name":{"kind":"Name","value":"score24"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsDay1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeStats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"venueVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"buySell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"scores"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"competitive"}},{"kind":"Field","name":{"kind":"Name","value":"relevance"}},{"kind":"Field","name":{"kind":"Name","value":"trending"}}]}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsHour1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeStats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"venueVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"buySell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"scores"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"competitive"}},{"kind":"Field","name":{"kind":"Name","value":"relevance"}},{"kind":"Field","name":{"kind":"Name","value":"trending"}}]}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsHour4"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeStats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"venueVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"buySell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"scores"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"competitive"}},{"kind":"Field","name":{"kind":"Name","value":"relevance"}},{"kind":"Field","name":{"kind":"Name","value":"trending"}}]}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsHour12"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeStats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"venueVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"buySell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"scores"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"competitive"}},{"kind":"Field","name":{"kind":"Name","value":"relevance"}},{"kind":"Field","name":{"kind":"Name","value":"trending"}}]}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsMin5"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeStats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"venueVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"buySell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"scores"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"competitive"}},{"kind":"Field","name":{"kind":"Name","value":"relevance"}},{"kind":"Field","name":{"kind":"Name","value":"trending"}}]}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsWeek1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeStats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"venueVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"buySell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"scores"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"competitive"}},{"kind":"Field","name":{"kind":"Name","value":"relevance"}},{"kind":"Field","name":{"kind":"Name","value":"trending"}}]}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"trendingScores"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"score1"}},{"kind":"Field","name":{"kind":"Name","value":"score1w"}},{"kind":"Field","name":{"kind":"Name","value":"score4"}},{"kind":"Field","name":{"kind":"Name","value":"score5m"}},{"kind":"Field","name":{"kind":"Name","value":"score12"}},{"kind":"Field","name":{"kind":"Name","value":"score24"}}]}}]}}]}}]} as unknown as DocumentNode; @@ -16337,18 +16480,18 @@ export const DetailedPredictionMarketStatsDocument = {"kind":"Document","definit export const DetailedPredictionTraderStatsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"DetailedPredictionTraderStats"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DetailedPredictionTraderStatsInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"detailedPredictionTraderStats"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeStats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"totalProfitCT"}},{"kind":"Field","name":{"kind":"Name","value":"totalProfitUsd"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"statsDay1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"lossesChange"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlChange"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueMarketsChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"winsChange"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"averageProfitCTPerTrade"}},{"kind":"Field","name":{"kind":"Name","value":"averageProfitUsdPerTrade"}},{"kind":"Field","name":{"kind":"Name","value":"averageSwapAmountCT"}},{"kind":"Field","name":{"kind":"Name","value":"averageSwapAmountUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"heldTokenAcquisitionCostCT"}},{"kind":"Field","name":{"kind":"Name","value":"heldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlCT"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlUsd"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"soldTokenAcquisitionCostCT"}},{"kind":"Field","name":{"kind":"Name","value":"soldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"losses"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueMarkets"}},{"kind":"Field","name":{"kind":"Name","value":"wins"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsDay30"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"lossesChange"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlChange"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueMarketsChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"winsChange"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"averageProfitCTPerTrade"}},{"kind":"Field","name":{"kind":"Name","value":"averageProfitUsdPerTrade"}},{"kind":"Field","name":{"kind":"Name","value":"averageSwapAmountCT"}},{"kind":"Field","name":{"kind":"Name","value":"averageSwapAmountUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"heldTokenAcquisitionCostCT"}},{"kind":"Field","name":{"kind":"Name","value":"heldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlCT"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlUsd"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"soldTokenAcquisitionCostCT"}},{"kind":"Field","name":{"kind":"Name","value":"soldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"losses"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueMarkets"}},{"kind":"Field","name":{"kind":"Name","value":"wins"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsHour1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"lossesChange"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlChange"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueMarketsChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"winsChange"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"averageProfitCTPerTrade"}},{"kind":"Field","name":{"kind":"Name","value":"averageProfitUsdPerTrade"}},{"kind":"Field","name":{"kind":"Name","value":"averageSwapAmountCT"}},{"kind":"Field","name":{"kind":"Name","value":"averageSwapAmountUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"heldTokenAcquisitionCostCT"}},{"kind":"Field","name":{"kind":"Name","value":"heldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlCT"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlUsd"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"soldTokenAcquisitionCostCT"}},{"kind":"Field","name":{"kind":"Name","value":"soldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"losses"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueMarkets"}},{"kind":"Field","name":{"kind":"Name","value":"wins"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsHour4"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"lossesChange"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlChange"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueMarketsChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"winsChange"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"averageProfitCTPerTrade"}},{"kind":"Field","name":{"kind":"Name","value":"averageProfitUsdPerTrade"}},{"kind":"Field","name":{"kind":"Name","value":"averageSwapAmountCT"}},{"kind":"Field","name":{"kind":"Name","value":"averageSwapAmountUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"heldTokenAcquisitionCostCT"}},{"kind":"Field","name":{"kind":"Name","value":"heldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlCT"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlUsd"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"soldTokenAcquisitionCostCT"}},{"kind":"Field","name":{"kind":"Name","value":"soldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"losses"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueMarkets"}},{"kind":"Field","name":{"kind":"Name","value":"wins"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsHour12"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"lossesChange"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlChange"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueMarketsChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"winsChange"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"averageProfitCTPerTrade"}},{"kind":"Field","name":{"kind":"Name","value":"averageProfitUsdPerTrade"}},{"kind":"Field","name":{"kind":"Name","value":"averageSwapAmountCT"}},{"kind":"Field","name":{"kind":"Name","value":"averageSwapAmountUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"heldTokenAcquisitionCostCT"}},{"kind":"Field","name":{"kind":"Name","value":"heldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlCT"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlUsd"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"soldTokenAcquisitionCostCT"}},{"kind":"Field","name":{"kind":"Name","value":"soldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"losses"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueMarkets"}},{"kind":"Field","name":{"kind":"Name","value":"wins"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsWeek1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"lossesChange"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlChange"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueMarketsChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"winsChange"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"averageProfitCTPerTrade"}},{"kind":"Field","name":{"kind":"Name","value":"averageProfitUsdPerTrade"}},{"kind":"Field","name":{"kind":"Name","value":"averageSwapAmountCT"}},{"kind":"Field","name":{"kind":"Name","value":"averageSwapAmountUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"heldTokenAcquisitionCostCT"}},{"kind":"Field","name":{"kind":"Name","value":"heldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlCT"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlUsd"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"soldTokenAcquisitionCostCT"}},{"kind":"Field","name":{"kind":"Name","value":"soldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"losses"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueMarkets"}},{"kind":"Field","name":{"kind":"Name","value":"wins"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"trader"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"activeMarketsCount"}},{"kind":"Field","name":{"kind":"Name","value":"alias"}},{"kind":"Field","name":{"kind":"Name","value":"allTimeProfitCT"}},{"kind":"Field","name":{"kind":"Name","value":"allTimeProfitUsd"}},{"kind":"Field","name":{"kind":"Name","value":"biggestLossCT"}},{"kind":"Field","name":{"kind":"Name","value":"biggestLossUsd"}},{"kind":"Field","name":{"kind":"Name","value":"biggestWinCT"}},{"kind":"Field","name":{"kind":"Name","value":"biggestWinUsd"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"firstTradeTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"labels"}},{"kind":"Field","name":{"kind":"Name","value":"lastTradeTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"linkedAddresses"}},{"kind":"Field","name":{"kind":"Name","value":"primaryAddress"}},{"kind":"Field","name":{"kind":"Name","value":"profileImageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"profileUrl"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"totalTradesCount"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"venueTraderId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traderId"}}]}}]}}]} as unknown as DocumentNode; export const DetailedWalletStatsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"DetailedWalletStats"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DetailedWalletStatsInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"detailedWalletStats"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"botScore"}},{"kind":"Field","name":{"kind":"Name","value":"labels"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"networkBreakdown"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nativeTokenBalance"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"statsDay1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"losses"}},{"kind":"Field","name":{"kind":"Name","value":"swaps"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTokens"}},{"kind":"Field","name":{"kind":"Name","value":"wins"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"averageProfitUsdPerTrade"}},{"kind":"Field","name":{"kind":"Name","value":"averageSwapAmountUsd"}},{"kind":"Field","name":{"kind":"Name","value":"heldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitUsd"}},{"kind":"Field","name":{"kind":"Name","value":"soldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsdAll"}}]}},{"kind":"Field","name":{"kind":"Name","value":"walletAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsDay30"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"losses"}},{"kind":"Field","name":{"kind":"Name","value":"swaps"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTokens"}},{"kind":"Field","name":{"kind":"Name","value":"wins"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"averageProfitUsdPerTrade"}},{"kind":"Field","name":{"kind":"Name","value":"averageSwapAmountUsd"}},{"kind":"Field","name":{"kind":"Name","value":"heldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitUsd"}},{"kind":"Field","name":{"kind":"Name","value":"soldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsdAll"}}]}},{"kind":"Field","name":{"kind":"Name","value":"walletAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsWeek1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"losses"}},{"kind":"Field","name":{"kind":"Name","value":"swaps"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTokens"}},{"kind":"Field","name":{"kind":"Name","value":"wins"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"averageProfitUsdPerTrade"}},{"kind":"Field","name":{"kind":"Name","value":"averageSwapAmountUsd"}},{"kind":"Field","name":{"kind":"Name","value":"heldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitUsd"}},{"kind":"Field","name":{"kind":"Name","value":"soldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsdAll"}}]}},{"kind":"Field","name":{"kind":"Name","value":"walletAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsYear1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"losses"}},{"kind":"Field","name":{"kind":"Name","value":"swaps"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTokens"}},{"kind":"Field","name":{"kind":"Name","value":"wins"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"averageProfitUsdPerTrade"}},{"kind":"Field","name":{"kind":"Name","value":"averageSwapAmountUsd"}},{"kind":"Field","name":{"kind":"Name","value":"heldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitUsd"}},{"kind":"Field","name":{"kind":"Name","value":"soldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsdAll"}}]}},{"kind":"Field","name":{"kind":"Name","value":"walletAddress"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"scammerScore"}},{"kind":"Field","name":{"kind":"Name","value":"statsDay1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"losses"}},{"kind":"Field","name":{"kind":"Name","value":"swaps"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTokens"}},{"kind":"Field","name":{"kind":"Name","value":"wins"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"averageProfitUsdPerTrade"}},{"kind":"Field","name":{"kind":"Name","value":"averageSwapAmountUsd"}},{"kind":"Field","name":{"kind":"Name","value":"heldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitUsd"}},{"kind":"Field","name":{"kind":"Name","value":"soldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsdAll"}}]}},{"kind":"Field","name":{"kind":"Name","value":"walletAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsDay30"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"losses"}},{"kind":"Field","name":{"kind":"Name","value":"swaps"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTokens"}},{"kind":"Field","name":{"kind":"Name","value":"wins"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"averageProfitUsdPerTrade"}},{"kind":"Field","name":{"kind":"Name","value":"averageSwapAmountUsd"}},{"kind":"Field","name":{"kind":"Name","value":"heldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitUsd"}},{"kind":"Field","name":{"kind":"Name","value":"soldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsdAll"}}]}},{"kind":"Field","name":{"kind":"Name","value":"walletAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsWeek1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"losses"}},{"kind":"Field","name":{"kind":"Name","value":"swaps"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTokens"}},{"kind":"Field","name":{"kind":"Name","value":"wins"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"averageProfitUsdPerTrade"}},{"kind":"Field","name":{"kind":"Name","value":"averageSwapAmountUsd"}},{"kind":"Field","name":{"kind":"Name","value":"heldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitUsd"}},{"kind":"Field","name":{"kind":"Name","value":"soldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsdAll"}}]}},{"kind":"Field","name":{"kind":"Name","value":"walletAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsYear1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"losses"}},{"kind":"Field","name":{"kind":"Name","value":"swaps"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTokens"}},{"kind":"Field","name":{"kind":"Name","value":"wins"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"averageProfitUsdPerTrade"}},{"kind":"Field","name":{"kind":"Name","value":"averageSwapAmountUsd"}},{"kind":"Field","name":{"kind":"Name","value":"heldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitUsd"}},{"kind":"Field","name":{"kind":"Name","value":"soldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsdAll"}}]}},{"kind":"Field","name":{"kind":"Name","value":"walletAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"wallet"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"avatarUrl"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"discordId"}},{"kind":"Field","name":{"kind":"Name","value":"discordUsername"}},{"kind":"Field","name":{"kind":"Name","value":"displayName"}},{"kind":"Field","name":{"kind":"Name","value":"ethosLevel"}},{"kind":"Field","name":{"kind":"Name","value":"ethosScore"}},{"kind":"Field","name":{"kind":"Name","value":"ethosVerified"}},{"kind":"Field","name":{"kind":"Name","value":"farcasterId"}},{"kind":"Field","name":{"kind":"Name","value":"farcasterUsername"}},{"kind":"Field","name":{"kind":"Name","value":"firstFunding"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount"}},{"kind":"Field","name":{"kind":"Name","value":"fundedAt"}},{"kind":"Field","name":{"kind":"Name","value":"fundedByAddress"}},{"kind":"Field","name":{"kind":"Name","value":"fundedByLabel"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"transactionHash"}}]}},{"kind":"Field","name":{"kind":"Name","value":"firstSeenTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"githubId"}},{"kind":"Field","name":{"kind":"Name","value":"githubUsername"}},{"kind":"Field","name":{"kind":"Name","value":"identityLabels"}},{"kind":"Field","name":{"kind":"Name","value":"identitySource"}},{"kind":"Field","name":{"kind":"Name","value":"identityUpdatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"telegramId"}},{"kind":"Field","name":{"kind":"Name","value":"telegramUsername"}},{"kind":"Field","name":{"kind":"Name","value":"twitterId"}},{"kind":"Field","name":{"kind":"Name","value":"twitterUsername"}},{"kind":"Field","name":{"kind":"Name","value":"website"}}]}},{"kind":"Field","name":{"kind":"Name","value":"walletAddress"}}]}}]}}]} as unknown as DocumentNode; export const FilterExchangesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FilterExchanges"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filters"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ExchangeFilters"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"offset"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"phrase"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"rankings"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ExchangeRanking"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"filterExchanges"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filters"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filters"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"Variable","name":{"kind":"Name","value":"offset"}}},{"kind":"Argument","name":{"kind":"Name","value":"phrase"},"value":{"kind":"Variable","name":{"kind":"Name","value":"phrase"}}},{"kind":"Argument","name":{"kind":"Name","value":"rankings"},"value":{"kind":"Variable","name":{"kind":"Name","value":"rankings"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"count"}},{"kind":"Field","name":{"kind":"Name","value":"offset"}},{"kind":"Field","name":{"kind":"Name","value":"results"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"dailyActiveUsers"}},{"kind":"Field","name":{"kind":"Name","value":"exchange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"monthlyActiveUsers"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount1"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount4"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount12"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount24"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNBT1"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNBT4"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNBT12"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNBT24"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUSD1"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUSD4"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUSD12"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUSD24"}}]}}]}}]}}]} as unknown as DocumentNode; -export const FilterPairsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FilterPairs"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filters"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PairFilters"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"matchTokens"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PairFilterMatchTokens"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"offset"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"pairs"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"phrase"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"rankings"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PairRanking"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenPairStatisticsType"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"filterPairs"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filters"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filters"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"matchTokens"},"value":{"kind":"Variable","name":{"kind":"Name","value":"matchTokens"}}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"Variable","name":{"kind":"Name","value":"offset"}}},{"kind":"Argument","name":{"kind":"Name","value":"pairs"},"value":{"kind":"Variable","name":{"kind":"Name","value":"pairs"}}},{"kind":"Argument","name":{"kind":"Name","value":"phrase"},"value":{"kind":"Variable","name":{"kind":"Name","value":"phrase"}}},{"kind":"Argument","name":{"kind":"Name","value":"rankings"},"value":{"kind":"Variable","name":{"kind":"Name","value":"rankings"}}},{"kind":"Argument","name":{"kind":"Name","value":"statsType"},"value":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"count"}},{"kind":"Field","name":{"kind":"Name","value":"offset"}},{"kind":"Field","name":{"kind":"Name","value":"results"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyCount1"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount4"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount12"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount24"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUSD1"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUSD4"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUSD12"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUSD24"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"exchange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highPrice1"}},{"kind":"Field","name":{"kind":"Name","value":"highPrice4"}},{"kind":"Field","name":{"kind":"Name","value":"highPrice12"}},{"kind":"Field","name":{"kind":"Name","value":"highPrice24"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransaction"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"lockedLiquidityPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"lowPrice1"}},{"kind":"Field","name":{"kind":"Name","value":"lowPrice4"}},{"kind":"Field","name":{"kind":"Name","value":"lowPrice12"}},{"kind":"Field","name":{"kind":"Name","value":"lowPrice24"}},{"kind":"Field","name":{"kind":"Name","value":"marketCap"}},{"kind":"Field","name":{"kind":"Name","value":"pair"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeHash"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"protocolData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ArenaTradeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"creator"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UniswapV4Data"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isDynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"isToken0NetworkToken"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"uniswapV4HookAddress"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tickSpacing"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token0Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"token1Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"virtualPooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"potentialScamReasons"}},{"kind":"Field","name":{"kind":"Name","value":"price"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange1"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange4"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange12"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange24"}},{"kind":"Field","name":{"kind":"Name","value":"priceScale"}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount1"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount4"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount12"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount24"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUSD1"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUSD4"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUSD12"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUSD24"}},{"kind":"Field","name":{"kind":"Name","value":"swapPct1dOldWallet"}},{"kind":"Field","name":{"kind":"Name","value":"swapPct7dOldWallet"}},{"kind":"Field","name":{"kind":"Name","value":"token0"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"txnCount1"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount4"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount12"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount24"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys1"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys4"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys12"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys24"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells1"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells4"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells12"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells24"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions1"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions4"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions12"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions24"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange1"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange4"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange12"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange24"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUSD1"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUSD4"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUSD12"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUSD24"}},{"kind":"Field","name":{"kind":"Name","value":"walletAgeAvg"}},{"kind":"Field","name":{"kind":"Name","value":"walletAgeStd"}}]}}]}}]}}]} as unknown as DocumentNode; -export const FilterPredictionEventsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FilterPredictionEvents"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"eventIds"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"excludeEventIds"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filters"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PredictionEventFilters"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"marketSort"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PredictionEventMarketSort"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"offset"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"phrase"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"rankings"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PredictionEventRanking"}}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"filterPredictionEvents"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"eventIds"},"value":{"kind":"Variable","name":{"kind":"Name","value":"eventIds"}}},{"kind":"Argument","name":{"kind":"Name","value":"excludeEventIds"},"value":{"kind":"Variable","name":{"kind":"Name","value":"excludeEventIds"}}},{"kind":"Argument","name":{"kind":"Name","value":"filters"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filters"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"marketSort"},"value":{"kind":"Variable","name":{"kind":"Name","value":"marketSort"}}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"Variable","name":{"kind":"Name","value":"offset"}}},{"kind":"Argument","name":{"kind":"Name","value":"phrase"},"value":{"kind":"Variable","name":{"kind":"Name","value":"phrase"}}},{"kind":"Argument","name":{"kind":"Name","value":"rankings"},"value":{"kind":"Variable","name":{"kind":"Name","value":"rankings"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"count"}},{"kind":"Field","name":{"kind":"Name","value":"page"}},{"kind":"Field","name":{"kind":"Name","value":"results"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"age"}},{"kind":"Field","name":{"kind":"Name","value":"categories"}},{"kind":"Field","name":{"kind":"Name","value":"closesAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"event"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"closesAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"opensAt"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"question"}},{"kind":"Field","name":{"kind":"Name","value":"resolvedAt"}},{"kind":"Field","name":{"kind":"Name","value":"resolvesAt"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"venueEventId"}},{"kind":"Field","name":{"kind":"Name","value":"venueSeriesId"}},{"kind":"Field","name":{"kind":"Name","value":"venueUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"expectedLifespan"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCT"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange1h"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange1w"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange4h"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange12h"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange24h"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"}},{"kind":"Field","name":{"kind":"Name","value":"marketCount"}},{"kind":"Field","name":{"kind":"Name","value":"markets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterestCT"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange1h"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange1w"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange4h"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange12h"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange24h"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestUsd"}},{"kind":"Field","name":{"kind":"Name","value":"opensAt"}},{"kind":"Field","name":{"kind":"Name","value":"predictionEvent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"categories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"closesAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"marketIds"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"opensAt"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"question"}},{"kind":"Field","name":{"kind":"Name","value":"resolution"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"result"}},{"kind":"Field","name":{"kind":"Name","value":"source"}}]}},{"kind":"Field","name":{"kind":"Name","value":"resolvedAt"}},{"kind":"Field","name":{"kind":"Name","value":"resolvesAt"}},{"kind":"Field","name":{"kind":"Name","value":"rulesPrimary"}},{"kind":"Field","name":{"kind":"Name","value":"rulesSecondary"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"venueEventId"}},{"kind":"Field","name":{"kind":"Name","value":"venueSeriesId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"relatedEventIds"}},{"kind":"Field","name":{"kind":"Name","value":"relevanceScore1h"}},{"kind":"Field","name":{"kind":"Name","value":"relevanceScore1w"}},{"kind":"Field","name":{"kind":"Name","value":"relevanceScore4h"}},{"kind":"Field","name":{"kind":"Name","value":"relevanceScore5m"}},{"kind":"Field","name":{"kind":"Name","value":"relevanceScore12h"}},{"kind":"Field","name":{"kind":"Name","value":"relevanceScore24h"}},{"kind":"Field","name":{"kind":"Name","value":"resolutionSource"}},{"kind":"Field","name":{"kind":"Name","value":"resolvedAt"}},{"kind":"Field","name":{"kind":"Name","value":"resolvesAt"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"topMarkets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"marketId"}},{"kind":"Field","name":{"kind":"Name","value":"outcome0BidCT"}},{"kind":"Field","name":{"kind":"Name","value":"outcome0Label"}},{"kind":"Field","name":{"kind":"Name","value":"outcome1BidCT"}},{"kind":"Field","name":{"kind":"Name","value":"outcome1Label"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCT1d"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCT1w"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCTAll"}}]}},{"kind":"Field","name":{"kind":"Name","value":"trades1h"}},{"kind":"Field","name":{"kind":"Name","value":"trades1w"}},{"kind":"Field","name":{"kind":"Name","value":"trades4h"}},{"kind":"Field","name":{"kind":"Name","value":"trades5m"}},{"kind":"Field","name":{"kind":"Name","value":"trades12h"}},{"kind":"Field","name":{"kind":"Name","value":"trades24h"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange1h"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange1w"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange4h"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange12h"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange24h"}},{"kind":"Field","name":{"kind":"Name","value":"trendingScore1h"}},{"kind":"Field","name":{"kind":"Name","value":"trendingScore1w"}},{"kind":"Field","name":{"kind":"Name","value":"trendingScore4h"}},{"kind":"Field","name":{"kind":"Name","value":"trendingScore5m"}},{"kind":"Field","name":{"kind":"Name","value":"trendingScore12h"}},{"kind":"Field","name":{"kind":"Name","value":"trendingScore24h"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders1h"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders1w"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders4h"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders5m"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders12h"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders24h"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange1h"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange1w"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange4h"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange12h"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange24h"}},{"kind":"Field","name":{"kind":"Name","value":"venueVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"venueVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCTAll"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange1h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange1w"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange4h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange12h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange24h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd1h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd1w"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd4h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd5m"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd12h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd24h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsdAll"}}]}}]}}]}}]} as unknown as DocumentNode; +export const FilterPairsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FilterPairs"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filters"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PairFilters"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"matchTokens"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PairFilterMatchTokens"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"offset"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"pairs"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"phrase"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"rankings"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PairRanking"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenPairStatisticsType"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"filterPairs"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filters"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filters"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"matchTokens"},"value":{"kind":"Variable","name":{"kind":"Name","value":"matchTokens"}}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"Variable","name":{"kind":"Name","value":"offset"}}},{"kind":"Argument","name":{"kind":"Name","value":"pairs"},"value":{"kind":"Variable","name":{"kind":"Name","value":"pairs"}}},{"kind":"Argument","name":{"kind":"Name","value":"phrase"},"value":{"kind":"Variable","name":{"kind":"Name","value":"phrase"}}},{"kind":"Argument","name":{"kind":"Name","value":"rankings"},"value":{"kind":"Variable","name":{"kind":"Name","value":"rankings"}}},{"kind":"Argument","name":{"kind":"Name","value":"statsType"},"value":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"count"}},{"kind":"Field","name":{"kind":"Name","value":"offset"}},{"kind":"Field","name":{"kind":"Name","value":"results"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyCount1"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount4"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount12"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount24"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUSD1"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUSD4"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUSD12"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUSD24"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"exchange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highPrice1"}},{"kind":"Field","name":{"kind":"Name","value":"highPrice4"}},{"kind":"Field","name":{"kind":"Name","value":"highPrice12"}},{"kind":"Field","name":{"kind":"Name","value":"highPrice24"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransaction"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"lockedLiquidityPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"lowPrice1"}},{"kind":"Field","name":{"kind":"Name","value":"lowPrice4"}},{"kind":"Field","name":{"kind":"Name","value":"lowPrice12"}},{"kind":"Field","name":{"kind":"Name","value":"lowPrice24"}},{"kind":"Field","name":{"kind":"Name","value":"marketCap"}},{"kind":"Field","name":{"kind":"Name","value":"pair"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeHash"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"protocolData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ArenaTradeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"creator"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UniswapV4Data"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isDynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"isToken0NetworkToken"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"uniswapV4HookAddress"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tickSpacing"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token0Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"token1Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"virtualPooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"potentialScamReasons"}},{"kind":"Field","name":{"kind":"Name","value":"price"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange1"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange4"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange12"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange24"}},{"kind":"Field","name":{"kind":"Name","value":"priceScale"}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount1"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount4"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount12"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount24"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUSD1"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUSD4"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUSD12"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUSD24"}},{"kind":"Field","name":{"kind":"Name","value":"swapPct1dOldWallet"}},{"kind":"Field","name":{"kind":"Name","value":"swapPct7dOldWallet"}},{"kind":"Field","name":{"kind":"Name","value":"token0"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"txnCount1"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount4"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount12"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount24"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys1"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys4"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys12"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys24"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells1"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells4"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells12"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells24"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions1"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions4"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions12"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions24"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange1"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange4"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange12"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange24"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUSD1"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUSD4"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUSD12"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUSD24"}},{"kind":"Field","name":{"kind":"Name","value":"walletAgeAvg"}},{"kind":"Field","name":{"kind":"Name","value":"walletAgeStd"}}]}}]}}]}}]} as unknown as DocumentNode; +export const FilterPredictionEventsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FilterPredictionEvents"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"eventIds"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"excludeEventIds"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filters"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PredictionEventFilters"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"marketSort"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PredictionEventMarketSort"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"offset"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"phrase"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"rankings"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PredictionEventRanking"}}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"filterPredictionEvents"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"eventIds"},"value":{"kind":"Variable","name":{"kind":"Name","value":"eventIds"}}},{"kind":"Argument","name":{"kind":"Name","value":"excludeEventIds"},"value":{"kind":"Variable","name":{"kind":"Name","value":"excludeEventIds"}}},{"kind":"Argument","name":{"kind":"Name","value":"filters"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filters"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"marketSort"},"value":{"kind":"Variable","name":{"kind":"Name","value":"marketSort"}}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"Variable","name":{"kind":"Name","value":"offset"}}},{"kind":"Argument","name":{"kind":"Name","value":"phrase"},"value":{"kind":"Variable","name":{"kind":"Name","value":"phrase"}}},{"kind":"Argument","name":{"kind":"Name","value":"rankings"},"value":{"kind":"Variable","name":{"kind":"Name","value":"rankings"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"count"}},{"kind":"Field","name":{"kind":"Name","value":"page"}},{"kind":"Field","name":{"kind":"Name","value":"results"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"age"}},{"kind":"Field","name":{"kind":"Name","value":"categories"}},{"kind":"Field","name":{"kind":"Name","value":"closesAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"event"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"closesAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"opensAt"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"question"}},{"kind":"Field","name":{"kind":"Name","value":"resolvedAt"}},{"kind":"Field","name":{"kind":"Name","value":"resolvesAt"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"venueEventId"}},{"kind":"Field","name":{"kind":"Name","value":"venueSeriesId"}},{"kind":"Field","name":{"kind":"Name","value":"venueUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"expectedLifespan"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCT"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange1h"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange1w"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange4h"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange12h"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange24h"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"}},{"kind":"Field","name":{"kind":"Name","value":"marketCount"}},{"kind":"Field","name":{"kind":"Name","value":"markets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"label"}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterestCT"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange1h"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange1w"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange4h"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange12h"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange24h"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestUsd"}},{"kind":"Field","name":{"kind":"Name","value":"opensAt"}},{"kind":"Field","name":{"kind":"Name","value":"predictionEvent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"categories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"closesAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"marketIds"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"opensAt"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"question"}},{"kind":"Field","name":{"kind":"Name","value":"resolution"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"result"}},{"kind":"Field","name":{"kind":"Name","value":"source"}}]}},{"kind":"Field","name":{"kind":"Name","value":"resolvedAt"}},{"kind":"Field","name":{"kind":"Name","value":"resolvesAt"}},{"kind":"Field","name":{"kind":"Name","value":"rulesPrimary"}},{"kind":"Field","name":{"kind":"Name","value":"rulesSecondary"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"venueEventId"}},{"kind":"Field","name":{"kind":"Name","value":"venueSeriesId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"relatedEventIds"}},{"kind":"Field","name":{"kind":"Name","value":"relevanceScore1h"}},{"kind":"Field","name":{"kind":"Name","value":"relevanceScore1w"}},{"kind":"Field","name":{"kind":"Name","value":"relevanceScore4h"}},{"kind":"Field","name":{"kind":"Name","value":"relevanceScore5m"}},{"kind":"Field","name":{"kind":"Name","value":"relevanceScore12h"}},{"kind":"Field","name":{"kind":"Name","value":"relevanceScore24h"}},{"kind":"Field","name":{"kind":"Name","value":"resolutionSource"}},{"kind":"Field","name":{"kind":"Name","value":"resolvedAt"}},{"kind":"Field","name":{"kind":"Name","value":"resolvesAt"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"topMarkets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"marketId"}},{"kind":"Field","name":{"kind":"Name","value":"outcome0AskCT"}},{"kind":"Field","name":{"kind":"Name","value":"outcome0AskUSD"}},{"kind":"Field","name":{"kind":"Name","value":"outcome0BidCT"}},{"kind":"Field","name":{"kind":"Name","value":"outcome0BidUSD"}},{"kind":"Field","name":{"kind":"Name","value":"outcome0Label"}},{"kind":"Field","name":{"kind":"Name","value":"outcome1AskCT"}},{"kind":"Field","name":{"kind":"Name","value":"outcome1AskUSD"}},{"kind":"Field","name":{"kind":"Name","value":"outcome1BidCT"}},{"kind":"Field","name":{"kind":"Name","value":"outcome1BidUSD"}},{"kind":"Field","name":{"kind":"Name","value":"outcome1Label"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCT1d"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCT1w"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCTAll"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUSD1d"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUSD1w"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUSDAll"}}]}},{"kind":"Field","name":{"kind":"Name","value":"trades1h"}},{"kind":"Field","name":{"kind":"Name","value":"trades1w"}},{"kind":"Field","name":{"kind":"Name","value":"trades4h"}},{"kind":"Field","name":{"kind":"Name","value":"trades5m"}},{"kind":"Field","name":{"kind":"Name","value":"trades12h"}},{"kind":"Field","name":{"kind":"Name","value":"trades24h"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange1h"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange1w"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange4h"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange12h"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange24h"}},{"kind":"Field","name":{"kind":"Name","value":"trendingScore1h"}},{"kind":"Field","name":{"kind":"Name","value":"trendingScore1w"}},{"kind":"Field","name":{"kind":"Name","value":"trendingScore4h"}},{"kind":"Field","name":{"kind":"Name","value":"trendingScore5m"}},{"kind":"Field","name":{"kind":"Name","value":"trendingScore12h"}},{"kind":"Field","name":{"kind":"Name","value":"trendingScore24h"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders1h"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders1w"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders4h"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders5m"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders12h"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders24h"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange1h"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange1w"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange4h"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange12h"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange24h"}},{"kind":"Field","name":{"kind":"Name","value":"venueVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"venueVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCTAll"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange1h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange1w"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange4h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange12h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange24h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd1h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd1w"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd4h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd5m"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd12h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd24h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsdAll"}}]}}]}}]}}]} as unknown as DocumentNode; export const FilterPredictionMarketsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FilterPredictionMarkets"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"eventIds"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"excludeEventIds"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"excludeMarketIds"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filters"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PredictionMarketFilters"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"marketIds"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"offset"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"phrase"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"rankings"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PredictionMarketRanking"}}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"filterPredictionMarkets"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"eventIds"},"value":{"kind":"Variable","name":{"kind":"Name","value":"eventIds"}}},{"kind":"Argument","name":{"kind":"Name","value":"excludeEventIds"},"value":{"kind":"Variable","name":{"kind":"Name","value":"excludeEventIds"}}},{"kind":"Argument","name":{"kind":"Name","value":"excludeMarketIds"},"value":{"kind":"Variable","name":{"kind":"Name","value":"excludeMarketIds"}}},{"kind":"Argument","name":{"kind":"Name","value":"filters"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filters"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"marketIds"},"value":{"kind":"Variable","name":{"kind":"Name","value":"marketIds"}}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"Variable","name":{"kind":"Name","value":"offset"}}},{"kind":"Argument","name":{"kind":"Name","value":"phrase"},"value":{"kind":"Variable","name":{"kind":"Name","value":"phrase"}}},{"kind":"Argument","name":{"kind":"Name","value":"rankings"},"value":{"kind":"Variable","name":{"kind":"Name","value":"rankings"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"count"}},{"kind":"Field","name":{"kind":"Name","value":"page"}},{"kind":"Field","name":{"kind":"Name","value":"results"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"age"}},{"kind":"Field","name":{"kind":"Name","value":"avgTradeSizeUsd1h"}},{"kind":"Field","name":{"kind":"Name","value":"avgTradeSizeUsd1w"}},{"kind":"Field","name":{"kind":"Name","value":"avgTradeSizeUsd4h"}},{"kind":"Field","name":{"kind":"Name","value":"avgTradeSizeUsd5m"}},{"kind":"Field","name":{"kind":"Name","value":"avgTradeSizeUsd12h"}},{"kind":"Field","name":{"kind":"Name","value":"avgTradeSizeUsd24h"}},{"kind":"Field","name":{"kind":"Name","value":"categories"}},{"kind":"Field","name":{"kind":"Name","value":"closesAt"}},{"kind":"Field","name":{"kind":"Name","value":"competitiveScore1h"}},{"kind":"Field","name":{"kind":"Name","value":"competitiveScore1w"}},{"kind":"Field","name":{"kind":"Name","value":"competitiveScore4h"}},{"kind":"Field","name":{"kind":"Name","value":"competitiveScore5m"}},{"kind":"Field","name":{"kind":"Name","value":"competitiveScore12h"}},{"kind":"Field","name":{"kind":"Name","value":"competitiveScore24h"}},{"kind":"Field","name":{"kind":"Name","value":"eventLabel"}},{"kind":"Field","name":{"kind":"Name","value":"expectedLifespan"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"impliedProbabilitySum"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityAsymmetry"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCT"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange1h"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange1w"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange4h"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange12h"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange24h"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"}},{"kind":"Field","name":{"kind":"Name","value":"market"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"closesAt"}},{"kind":"Field","name":{"kind":"Name","value":"collateral"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"eventId"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"opensAt"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"question"}},{"kind":"Field","name":{"kind":"Name","value":"resolvedAt"}},{"kind":"Field","name":{"kind":"Name","value":"resolvesAt"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"venueEventId"}},{"kind":"Field","name":{"kind":"Name","value":"venueMarketId"}},{"kind":"Field","name":{"kind":"Name","value":"venueMarketSlug"}}]}},{"kind":"Field","name":{"kind":"Name","value":"maxPriceRange1h"}},{"kind":"Field","name":{"kind":"Name","value":"maxPriceRange1w"}},{"kind":"Field","name":{"kind":"Name","value":"maxPriceRange4h"}},{"kind":"Field","name":{"kind":"Name","value":"maxPriceRange5m"}},{"kind":"Field","name":{"kind":"Name","value":"maxPriceRange12h"}},{"kind":"Field","name":{"kind":"Name","value":"maxPriceRange24h"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestCT"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange1h"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange1w"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange4h"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange12h"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange24h"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestUsd"}},{"kind":"Field","name":{"kind":"Name","value":"opensAt"}},{"kind":"Field","name":{"kind":"Name","value":"outcome0"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bestAskCT"}},{"kind":"Field","name":{"kind":"Name","value":"bestAskUsd"}},{"kind":"Field","name":{"kind":"Name","value":"bestBidCT"}},{"kind":"Field","name":{"kind":"Name","value":"bestBidUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd1h"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd1w"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd4h"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd5m"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd12h"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd24h"}},{"kind":"Field","name":{"kind":"Name","value":"buys1h"}},{"kind":"Field","name":{"kind":"Name","value":"buys1w"}},{"kind":"Field","name":{"kind":"Name","value":"buys4h"}},{"kind":"Field","name":{"kind":"Name","value":"buys5m"}},{"kind":"Field","name":{"kind":"Name","value":"buys12h"}},{"kind":"Field","name":{"kind":"Name","value":"buys24h"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"}},{"kind":"Field","name":{"kind":"Name","value":"highPriceUsd1h"}},{"kind":"Field","name":{"kind":"Name","value":"highPriceUsd1w"}},{"kind":"Field","name":{"kind":"Name","value":"highPriceUsd4h"}},{"kind":"Field","name":{"kind":"Name","value":"highPriceUsd5m"}},{"kind":"Field","name":{"kind":"Name","value":"highPriceUsd12h"}},{"kind":"Field","name":{"kind":"Name","value":"highPriceUsd24h"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"isWinner"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"lastPriceCT"}},{"kind":"Field","name":{"kind":"Name","value":"lastPriceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCT"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"}},{"kind":"Field","name":{"kind":"Name","value":"lowPriceUsd1h"}},{"kind":"Field","name":{"kind":"Name","value":"lowPriceUsd1w"}},{"kind":"Field","name":{"kind":"Name","value":"lowPriceUsd4h"}},{"kind":"Field","name":{"kind":"Name","value":"lowPriceUsd5m"}},{"kind":"Field","name":{"kind":"Name","value":"lowPriceUsd12h"}},{"kind":"Field","name":{"kind":"Name","value":"lowPriceUsd24h"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange1h"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange1w"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange4h"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange12h"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange24h"}},{"kind":"Field","name":{"kind":"Name","value":"priceRange1h"}},{"kind":"Field","name":{"kind":"Name","value":"priceRange1w"}},{"kind":"Field","name":{"kind":"Name","value":"priceRange4h"}},{"kind":"Field","name":{"kind":"Name","value":"priceRange5m"}},{"kind":"Field","name":{"kind":"Name","value":"priceRange12h"}},{"kind":"Field","name":{"kind":"Name","value":"priceRange24h"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd1h"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd1w"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd4h"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd5m"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd12h"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd24h"}},{"kind":"Field","name":{"kind":"Name","value":"sells1h"}},{"kind":"Field","name":{"kind":"Name","value":"sells1w"}},{"kind":"Field","name":{"kind":"Name","value":"sells4h"}},{"kind":"Field","name":{"kind":"Name","value":"sells5m"}},{"kind":"Field","name":{"kind":"Name","value":"sells12h"}},{"kind":"Field","name":{"kind":"Name","value":"sells24h"}},{"kind":"Field","name":{"kind":"Name","value":"spreadCT"}},{"kind":"Field","name":{"kind":"Name","value":"spreadUsd"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"trades1h"}},{"kind":"Field","name":{"kind":"Name","value":"trades1w"}},{"kind":"Field","name":{"kind":"Name","value":"trades4h"}},{"kind":"Field","name":{"kind":"Name","value":"trades5m"}},{"kind":"Field","name":{"kind":"Name","value":"trades12h"}},{"kind":"Field","name":{"kind":"Name","value":"trades24h"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange1h"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange1w"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange4h"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange12h"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange24h"}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthCT"}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthUsd"}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthCT"}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthUsd"}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange1h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange1w"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange4h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange12h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange24h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares1h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares1w"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares4h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares5m"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares12h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares24h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd1h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd1w"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd4h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd5m"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd12h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd24h"}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bestAskCT"}},{"kind":"Field","name":{"kind":"Name","value":"bestAskUsd"}},{"kind":"Field","name":{"kind":"Name","value":"bestBidCT"}},{"kind":"Field","name":{"kind":"Name","value":"bestBidUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd1h"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd1w"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd4h"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd5m"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd12h"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd24h"}},{"kind":"Field","name":{"kind":"Name","value":"buys1h"}},{"kind":"Field","name":{"kind":"Name","value":"buys1w"}},{"kind":"Field","name":{"kind":"Name","value":"buys4h"}},{"kind":"Field","name":{"kind":"Name","value":"buys5m"}},{"kind":"Field","name":{"kind":"Name","value":"buys12h"}},{"kind":"Field","name":{"kind":"Name","value":"buys24h"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"}},{"kind":"Field","name":{"kind":"Name","value":"highPriceUsd1h"}},{"kind":"Field","name":{"kind":"Name","value":"highPriceUsd1w"}},{"kind":"Field","name":{"kind":"Name","value":"highPriceUsd4h"}},{"kind":"Field","name":{"kind":"Name","value":"highPriceUsd5m"}},{"kind":"Field","name":{"kind":"Name","value":"highPriceUsd12h"}},{"kind":"Field","name":{"kind":"Name","value":"highPriceUsd24h"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"isWinner"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"lastPriceCT"}},{"kind":"Field","name":{"kind":"Name","value":"lastPriceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCT"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"}},{"kind":"Field","name":{"kind":"Name","value":"lowPriceUsd1h"}},{"kind":"Field","name":{"kind":"Name","value":"lowPriceUsd1w"}},{"kind":"Field","name":{"kind":"Name","value":"lowPriceUsd4h"}},{"kind":"Field","name":{"kind":"Name","value":"lowPriceUsd5m"}},{"kind":"Field","name":{"kind":"Name","value":"lowPriceUsd12h"}},{"kind":"Field","name":{"kind":"Name","value":"lowPriceUsd24h"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange1h"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange1w"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange4h"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange12h"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange24h"}},{"kind":"Field","name":{"kind":"Name","value":"priceRange1h"}},{"kind":"Field","name":{"kind":"Name","value":"priceRange1w"}},{"kind":"Field","name":{"kind":"Name","value":"priceRange4h"}},{"kind":"Field","name":{"kind":"Name","value":"priceRange5m"}},{"kind":"Field","name":{"kind":"Name","value":"priceRange12h"}},{"kind":"Field","name":{"kind":"Name","value":"priceRange24h"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd1h"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd1w"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd4h"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd5m"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd12h"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd24h"}},{"kind":"Field","name":{"kind":"Name","value":"sells1h"}},{"kind":"Field","name":{"kind":"Name","value":"sells1w"}},{"kind":"Field","name":{"kind":"Name","value":"sells4h"}},{"kind":"Field","name":{"kind":"Name","value":"sells5m"}},{"kind":"Field","name":{"kind":"Name","value":"sells12h"}},{"kind":"Field","name":{"kind":"Name","value":"sells24h"}},{"kind":"Field","name":{"kind":"Name","value":"spreadCT"}},{"kind":"Field","name":{"kind":"Name","value":"spreadUsd"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"trades1h"}},{"kind":"Field","name":{"kind":"Name","value":"trades1w"}},{"kind":"Field","name":{"kind":"Name","value":"trades4h"}},{"kind":"Field","name":{"kind":"Name","value":"trades5m"}},{"kind":"Field","name":{"kind":"Name","value":"trades12h"}},{"kind":"Field","name":{"kind":"Name","value":"trades24h"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange1h"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange1w"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange4h"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange12h"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange24h"}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthCT"}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthUsd"}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthCT"}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthUsd"}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange1h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange1w"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange4h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange12h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange24h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares1h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares1w"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares4h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares5m"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares12h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares24h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd1h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd1w"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd4h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd5m"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd12h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd24h"}}]}},{"kind":"Field","name":{"kind":"Name","value":"predictionMarket"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"categories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"closesAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"eventId"}},{"kind":"Field","name":{"kind":"Name","value":"eventLabel"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"observedAt"}},{"kind":"Field","name":{"kind":"Name","value":"opensAt"}},{"kind":"Field","name":{"kind":"Name","value":"outcomeIds"}},{"kind":"Field","name":{"kind":"Name","value":"outcomeLabels"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"question"}},{"kind":"Field","name":{"kind":"Name","value":"resolution"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"result"}},{"kind":"Field","name":{"kind":"Name","value":"source"}}]}},{"kind":"Field","name":{"kind":"Name","value":"resolvedAt"}},{"kind":"Field","name":{"kind":"Name","value":"resolvesAt"}},{"kind":"Field","name":{"kind":"Name","value":"rules"}},{"kind":"Field","name":{"kind":"Name","value":"rules2"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"venueEventId"}},{"kind":"Field","name":{"kind":"Name","value":"venueMarketId"}},{"kind":"Field","name":{"kind":"Name","value":"venueMarketSlug"}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeIds"}},{"kind":"Field","name":{"kind":"Name","value":"winningOutcomeId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceCompetitiveness"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"relevanceScore1h"}},{"kind":"Field","name":{"kind":"Name","value":"relevanceScore1w"}},{"kind":"Field","name":{"kind":"Name","value":"relevanceScore4h"}},{"kind":"Field","name":{"kind":"Name","value":"relevanceScore5m"}},{"kind":"Field","name":{"kind":"Name","value":"relevanceScore12h"}},{"kind":"Field","name":{"kind":"Name","value":"relevanceScore24h"}},{"kind":"Field","name":{"kind":"Name","value":"resolutionSource"}},{"kind":"Field","name":{"kind":"Name","value":"resolvesAt"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"trades1h"}},{"kind":"Field","name":{"kind":"Name","value":"trades1w"}},{"kind":"Field","name":{"kind":"Name","value":"trades4h"}},{"kind":"Field","name":{"kind":"Name","value":"trades5m"}},{"kind":"Field","name":{"kind":"Name","value":"trades12h"}},{"kind":"Field","name":{"kind":"Name","value":"trades24h"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange1h"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange1w"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange4h"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange12h"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange24h"}},{"kind":"Field","name":{"kind":"Name","value":"trendingScore1h"}},{"kind":"Field","name":{"kind":"Name","value":"trendingScore1w"}},{"kind":"Field","name":{"kind":"Name","value":"trendingScore4h"}},{"kind":"Field","name":{"kind":"Name","value":"trendingScore5m"}},{"kind":"Field","name":{"kind":"Name","value":"trendingScore12h"}},{"kind":"Field","name":{"kind":"Name","value":"trendingScore24h"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders1h"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders1w"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders4h"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders5m"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders12h"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders24h"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange1h"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange1w"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange4h"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange12h"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange24h"}},{"kind":"Field","name":{"kind":"Name","value":"venueVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"venueVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCTAll"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange1h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange1w"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange4h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange12h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange24h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeImbalance24h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd1h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd1w"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd4h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd5m"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd12h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd24h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsdAll"}},{"kind":"Field","name":{"kind":"Name","value":"winningOutcomeId"}}]}}]}}]}}]} as unknown as DocumentNode; export const FilterPredictionTraderMarketsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FilterPredictionTraderMarkets"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"eventIds"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"excludeEventIds"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"excludeMarketIds"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"excludeTraderIds"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filters"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PredictionTraderMarketFilters"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"marketIds"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"offset"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"phrase"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"rankings"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PredictionTraderMarketRanking"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"traderIds"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"filterPredictionTraderMarkets"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"eventIds"},"value":{"kind":"Variable","name":{"kind":"Name","value":"eventIds"}}},{"kind":"Argument","name":{"kind":"Name","value":"excludeEventIds"},"value":{"kind":"Variable","name":{"kind":"Name","value":"excludeEventIds"}}},{"kind":"Argument","name":{"kind":"Name","value":"excludeMarketIds"},"value":{"kind":"Variable","name":{"kind":"Name","value":"excludeMarketIds"}}},{"kind":"Argument","name":{"kind":"Name","value":"excludeTraderIds"},"value":{"kind":"Variable","name":{"kind":"Name","value":"excludeTraderIds"}}},{"kind":"Argument","name":{"kind":"Name","value":"filters"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filters"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"marketIds"},"value":{"kind":"Variable","name":{"kind":"Name","value":"marketIds"}}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"Variable","name":{"kind":"Name","value":"offset"}}},{"kind":"Argument","name":{"kind":"Name","value":"phrase"},"value":{"kind":"Variable","name":{"kind":"Name","value":"phrase"}}},{"kind":"Argument","name":{"kind":"Name","value":"rankings"},"value":{"kind":"Variable","name":{"kind":"Name","value":"rankings"}}},{"kind":"Argument","name":{"kind":"Name","value":"traderIds"},"value":{"kind":"Variable","name":{"kind":"Name","value":"traderIds"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"count"}},{"kind":"Field","name":{"kind":"Name","value":"page"}},{"kind":"Field","name":{"kind":"Name","value":"results"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eventId"}},{"kind":"Field","name":{"kind":"Name","value":"firstTradeTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"hasOpenPosition"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"lastTradeTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"market"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"closesAt"}},{"kind":"Field","name":{"kind":"Name","value":"eventId"}},{"kind":"Field","name":{"kind":"Name","value":"eventLabel"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"outcome0Label"}},{"kind":"Field","name":{"kind":"Name","value":"outcome1Label"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"question"}},{"kind":"Field","name":{"kind":"Name","value":"resolvedAt"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"venueMarketId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"marketId"}},{"kind":"Field","name":{"kind":"Name","value":"outcome0"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"avgEntryPriceCT"}},{"kind":"Field","name":{"kind":"Name","value":"avgEntryPriceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"costBasisCT"}},{"kind":"Field","name":{"kind":"Name","value":"costBasisUsd"}},{"kind":"Field","name":{"kind":"Name","value":"firstTradeTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"isWinningOutcome"}},{"kind":"Field","name":{"kind":"Name","value":"lastTradeTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"outcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"pnlStatus"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlCT"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"sharesHeld"}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"avgEntryPriceCT"}},{"kind":"Field","name":{"kind":"Name","value":"avgEntryPriceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"costBasisCT"}},{"kind":"Field","name":{"kind":"Name","value":"costBasisUsd"}},{"kind":"Field","name":{"kind":"Name","value":"firstTradeTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"isWinningOutcome"}},{"kind":"Field","name":{"kind":"Name","value":"lastTradeTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"outcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"pnlStatus"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlCT"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"sharesHeld"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pnlPerVolumeMarket"}},{"kind":"Field","name":{"kind":"Name","value":"predictionMarket"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"categories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"closesAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"eventId"}},{"kind":"Field","name":{"kind":"Name","value":"eventLabel"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"observedAt"}},{"kind":"Field","name":{"kind":"Name","value":"opensAt"}},{"kind":"Field","name":{"kind":"Name","value":"outcomeIds"}},{"kind":"Field","name":{"kind":"Name","value":"outcomeLabels"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"question"}},{"kind":"Field","name":{"kind":"Name","value":"resolution"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"result"}},{"kind":"Field","name":{"kind":"Name","value":"source"}}]}},{"kind":"Field","name":{"kind":"Name","value":"resolvedAt"}},{"kind":"Field","name":{"kind":"Name","value":"resolvesAt"}},{"kind":"Field","name":{"kind":"Name","value":"rules"}},{"kind":"Field","name":{"kind":"Name","value":"rules2"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"venueEventId"}},{"kind":"Field","name":{"kind":"Name","value":"venueMarketId"}},{"kind":"Field","name":{"kind":"Name","value":"venueMarketSlug"}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeIds"}},{"kind":"Field","name":{"kind":"Name","value":"winningOutcomeId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"predictionTrader"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"activeMarketsCount"}},{"kind":"Field","name":{"kind":"Name","value":"alias"}},{"kind":"Field","name":{"kind":"Name","value":"allTimeProfitCT"}},{"kind":"Field","name":{"kind":"Name","value":"allTimeProfitUsd"}},{"kind":"Field","name":{"kind":"Name","value":"biggestLossCT"}},{"kind":"Field","name":{"kind":"Name","value":"biggestLossUsd"}},{"kind":"Field","name":{"kind":"Name","value":"biggestWinCT"}},{"kind":"Field","name":{"kind":"Name","value":"biggestWinUsd"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"firstTradeTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"labels"}},{"kind":"Field","name":{"kind":"Name","value":"lastTradeTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"linkedAddresses"}},{"kind":"Field","name":{"kind":"Name","value":"primaryAddress"}},{"kind":"Field","name":{"kind":"Name","value":"profileImageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"profileUrl"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"totalTradesCount"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"venueTraderId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"profitPerTradeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"totalBuys"}},{"kind":"Field","name":{"kind":"Name","value":"totalCostBasisCT"}},{"kind":"Field","name":{"kind":"Name","value":"totalCostBasisUsd"}},{"kind":"Field","name":{"kind":"Name","value":"totalRealizedPnlCT"}},{"kind":"Field","name":{"kind":"Name","value":"totalRealizedPnlUsd"}},{"kind":"Field","name":{"kind":"Name","value":"totalSells"}},{"kind":"Field","name":{"kind":"Name","value":"totalSharesHeld"}},{"kind":"Field","name":{"kind":"Name","value":"totalTrades"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"trader"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"alias"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"labels"}},{"kind":"Field","name":{"kind":"Name","value":"linkedAddresses"}},{"kind":"Field","name":{"kind":"Name","value":"primaryAddress"}},{"kind":"Field","name":{"kind":"Name","value":"profileImageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"profileUrl"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"venueTraderId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traderId"}},{"kind":"Field","name":{"kind":"Name","value":"winningOutcomeId"}}]}}]}}]}}]} as unknown as DocumentNode; export const FilterPredictionTradersDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FilterPredictionTraders"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"excludeTraderIds"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filters"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"PredictionTraderFilters"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"offset"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"phrase"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"rankings"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PredictionTraderRanking"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"traderIds"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"filterPredictionTraders"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"excludeTraderIds"},"value":{"kind":"Variable","name":{"kind":"Name","value":"excludeTraderIds"}}},{"kind":"Argument","name":{"kind":"Name","value":"filters"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filters"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"Variable","name":{"kind":"Name","value":"offset"}}},{"kind":"Argument","name":{"kind":"Name","value":"phrase"},"value":{"kind":"Variable","name":{"kind":"Name","value":"phrase"}}},{"kind":"Argument","name":{"kind":"Name","value":"rankings"},"value":{"kind":"Variable","name":{"kind":"Name","value":"rankings"}}},{"kind":"Argument","name":{"kind":"Name","value":"traderIds"},"value":{"kind":"Variable","name":{"kind":"Name","value":"traderIds"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"count"}},{"kind":"Field","name":{"kind":"Name","value":"page"}},{"kind":"Field","name":{"kind":"Name","value":"results"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"activeMarketsCount"}},{"kind":"Field","name":{"kind":"Name","value":"averageProfitUsdPerTrade1m"}},{"kind":"Field","name":{"kind":"Name","value":"averageProfitUsdPerTrade1w"}},{"kind":"Field","name":{"kind":"Name","value":"averageProfitUsdPerTrade12h"}},{"kind":"Field","name":{"kind":"Name","value":"averageProfitUsdPerTrade24h"}},{"kind":"Field","name":{"kind":"Name","value":"averageSwapAmountUsd1m"}},{"kind":"Field","name":{"kind":"Name","value":"averageSwapAmountUsd1w"}},{"kind":"Field","name":{"kind":"Name","value":"averageSwapAmountUsd12h"}},{"kind":"Field","name":{"kind":"Name","value":"averageSwapAmountUsd24h"}},{"kind":"Field","name":{"kind":"Name","value":"biggestLossCT"}},{"kind":"Field","name":{"kind":"Name","value":"biggestLossUsd"}},{"kind":"Field","name":{"kind":"Name","value":"biggestWinCT"}},{"kind":"Field","name":{"kind":"Name","value":"biggestWinUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd1m"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd1w"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd12h"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd24h"}},{"kind":"Field","name":{"kind":"Name","value":"buys1m"}},{"kind":"Field","name":{"kind":"Name","value":"buys1w"}},{"kind":"Field","name":{"kind":"Name","value":"buys12h"}},{"kind":"Field","name":{"kind":"Name","value":"buys24h"}},{"kind":"Field","name":{"kind":"Name","value":"firstTradeTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"heldTokenAcquisitionCostCT"}},{"kind":"Field","name":{"kind":"Name","value":"heldTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"lastTradeTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"losses1m"}},{"kind":"Field","name":{"kind":"Name","value":"losses1w"}},{"kind":"Field","name":{"kind":"Name","value":"losses12h"}},{"kind":"Field","name":{"kind":"Name","value":"losses24h"}},{"kind":"Field","name":{"kind":"Name","value":"pnlPerVolumeAll"}},{"kind":"Field","name":{"kind":"Name","value":"predictionTrader"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"activeMarketsCount"}},{"kind":"Field","name":{"kind":"Name","value":"alias"}},{"kind":"Field","name":{"kind":"Name","value":"allTimeProfitCT"}},{"kind":"Field","name":{"kind":"Name","value":"allTimeProfitUsd"}},{"kind":"Field","name":{"kind":"Name","value":"biggestLossCT"}},{"kind":"Field","name":{"kind":"Name","value":"biggestLossUsd"}},{"kind":"Field","name":{"kind":"Name","value":"biggestWinCT"}},{"kind":"Field","name":{"kind":"Name","value":"biggestWinUsd"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"firstTradeTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"labels"}},{"kind":"Field","name":{"kind":"Name","value":"lastTradeTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"linkedAddresses"}},{"kind":"Field","name":{"kind":"Name","value":"primaryAddress"}},{"kind":"Field","name":{"kind":"Name","value":"profileImageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"profileUrl"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"totalTradesCount"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"venueTraderId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"profitPerTradeUsdAll"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlCT1m"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlCT1w"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlCT12h"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlCT24h"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlChange1m"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlChange1w"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlChange12h"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlChange24h"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlUsd1m"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlUsd1w"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlUsd12h"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlUsd24h"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitPercentage1m"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitPercentage1w"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitPercentage12h"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitPercentage24h"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd1m"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd1w"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd12h"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd24h"}},{"kind":"Field","name":{"kind":"Name","value":"sells1m"}},{"kind":"Field","name":{"kind":"Name","value":"sells1w"}},{"kind":"Field","name":{"kind":"Name","value":"sells12h"}},{"kind":"Field","name":{"kind":"Name","value":"sells24h"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"totalProfitCTAll"}},{"kind":"Field","name":{"kind":"Name","value":"totalProfitUsdAll"}},{"kind":"Field","name":{"kind":"Name","value":"totalTradesAll"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeCTAll"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeUsdAll"}},{"kind":"Field","name":{"kind":"Name","value":"trader"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"alias"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"labels"}},{"kind":"Field","name":{"kind":"Name","value":"linkedAddresses"}},{"kind":"Field","name":{"kind":"Name","value":"primaryAddress"}},{"kind":"Field","name":{"kind":"Name","value":"profileImageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"profileUrl"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"venueTraderId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"trades1m"}},{"kind":"Field","name":{"kind":"Name","value":"trades1w"}},{"kind":"Field","name":{"kind":"Name","value":"trades12h"}},{"kind":"Field","name":{"kind":"Name","value":"trades24h"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueMarkets1m"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueMarkets1w"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueMarkets12h"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueMarkets24h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCT1m"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCT1w"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCT12h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCT24h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange1m"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange1w"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange12h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange24h"}},{"kind":"Field","name":{"kind":"Name","value":"volumePerTradeUsdAll"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd1m"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd1w"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd12h"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd24h"}},{"kind":"Field","name":{"kind":"Name","value":"winRate1m"}},{"kind":"Field","name":{"kind":"Name","value":"winRate1w"}},{"kind":"Field","name":{"kind":"Name","value":"winRate12h"}},{"kind":"Field","name":{"kind":"Name","value":"winRate24h"}},{"kind":"Field","name":{"kind":"Name","value":"wins1m"}},{"kind":"Field","name":{"kind":"Name","value":"wins1w"}},{"kind":"Field","name":{"kind":"Name","value":"wins12h"}},{"kind":"Field","name":{"kind":"Name","value":"wins24h"}}]}}]}}]}}]} as unknown as DocumentNode; export const FilterTokenWalletsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FilterTokenWallets"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"FilterTokenWalletsInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"filterTokenWallets"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"count"}},{"kind":"Field","name":{"kind":"Name","value":"offset"}},{"kind":"Field","name":{"kind":"Name","value":"results"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"amountBoughtUsd1d"}},{"kind":"Field","name":{"kind":"Name","value":"amountBoughtUsd1w"}},{"kind":"Field","name":{"kind":"Name","value":"amountBoughtUsd1y"}},{"kind":"Field","name":{"kind":"Name","value":"amountBoughtUsd30d"}},{"kind":"Field","name":{"kind":"Name","value":"amountSoldUsd1d"}},{"kind":"Field","name":{"kind":"Name","value":"amountSoldUsd1w"}},{"kind":"Field","name":{"kind":"Name","value":"amountSoldUsd1y"}},{"kind":"Field","name":{"kind":"Name","value":"amountSoldUsd30d"}},{"kind":"Field","name":{"kind":"Name","value":"amountSoldUsdAll1d"}},{"kind":"Field","name":{"kind":"Name","value":"amountSoldUsdAll1w"}},{"kind":"Field","name":{"kind":"Name","value":"amountSoldUsdAll1y"}},{"kind":"Field","name":{"kind":"Name","value":"amountSoldUsdAll30d"}},{"kind":"Field","name":{"kind":"Name","value":"backfillState"}},{"kind":"Field","name":{"kind":"Name","value":"botScore"}},{"kind":"Field","name":{"kind":"Name","value":"buys1d"}},{"kind":"Field","name":{"kind":"Name","value":"buys1w"}},{"kind":"Field","name":{"kind":"Name","value":"buys1y"}},{"kind":"Field","name":{"kind":"Name","value":"buys30d"}},{"kind":"Field","name":{"kind":"Name","value":"firstTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"labels"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"purchasedTokenBalance"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitPercentage1d"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitPercentage1w"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitPercentage1y"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitPercentage30d"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitUsd1d"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitUsd1w"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitUsd1y"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitUsd30d"}},{"kind":"Field","name":{"kind":"Name","value":"scammerScore"}},{"kind":"Field","name":{"kind":"Name","value":"sells1d"}},{"kind":"Field","name":{"kind":"Name","value":"sells1w"}},{"kind":"Field","name":{"kind":"Name","value":"sells1y"}},{"kind":"Field","name":{"kind":"Name","value":"sells30d"}},{"kind":"Field","name":{"kind":"Name","value":"sellsAll1d"}},{"kind":"Field","name":{"kind":"Name","value":"sellsAll1w"}},{"kind":"Field","name":{"kind":"Name","value":"sellsAll1y"}},{"kind":"Field","name":{"kind":"Name","value":"sellsAll30d"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAmountBought1d"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAmountBought1w"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAmountBought1y"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAmountBought30d"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAmountSold1d"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAmountSold1w"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAmountSold1y"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAmountSold30d"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAmountSoldAll1d"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAmountSoldAll1w"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAmountSoldAll1y"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAmountSoldAll30d"}},{"kind":"Field","name":{"kind":"Name","value":"tokenBalance"}},{"kind":"Field","name":{"kind":"Name","value":"tokenBalanceLive"}},{"kind":"Field","name":{"kind":"Name","value":"tokenBalanceLiveUsd"}}]}}]}}]}}]} as unknown as DocumentNode; -export const FilterTokensDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FilterTokens"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"excludeTokens"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filters"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenFilters"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"offset"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"phrase"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"rankings"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenRanking"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenPairStatisticsType"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"tokens"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"useAggregatedStats"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"filterTokens"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"excludeTokens"},"value":{"kind":"Variable","name":{"kind":"Name","value":"excludeTokens"}}},{"kind":"Argument","name":{"kind":"Name","value":"filters"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filters"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"Variable","name":{"kind":"Name","value":"offset"}}},{"kind":"Argument","name":{"kind":"Name","value":"phrase"},"value":{"kind":"Variable","name":{"kind":"Name","value":"phrase"}}},{"kind":"Argument","name":{"kind":"Name","value":"rankings"},"value":{"kind":"Variable","name":{"kind":"Name","value":"rankings"}}},{"kind":"Argument","name":{"kind":"Name","value":"statsType"},"value":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}}},{"kind":"Argument","name":{"kind":"Name","value":"tokens"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tokens"}}},{"kind":"Argument","name":{"kind":"Name","value":"useAggregatedStats"},"value":{"kind":"Variable","name":{"kind":"Name","value":"useAggregatedStats"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"count"}},{"kind":"Field","name":{"kind":"Name","value":"page"}},{"kind":"Field","name":{"kind":"Name","value":"results"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees1"}},{"kind":"Field","name":{"kind":"Name","value":"baseFees4"}},{"kind":"Field","name":{"kind":"Name","value":"baseFees5m"}},{"kind":"Field","name":{"kind":"Name","value":"baseFees12"}},{"kind":"Field","name":{"kind":"Name","value":"baseFees24"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips1"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips4"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips5m"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips12"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips24"}},{"kind":"Field","name":{"kind":"Name","value":"bundlerCount"}},{"kind":"Field","name":{"kind":"Name","value":"bundlerHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount1"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount4"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount5m"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount12"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount24"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume1"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume4"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume5m"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume12"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume24"}},{"kind":"Field","name":{"kind":"Name","value":"change1"}},{"kind":"Field","name":{"kind":"Name","value":"change4"}},{"kind":"Field","name":{"kind":"Name","value":"change5m"}},{"kind":"Field","name":{"kind":"Name","value":"change12"}},{"kind":"Field","name":{"kind":"Name","value":"change24"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingMarketCap"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"devHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"feeToVolumeRatio1"}},{"kind":"Field","name":{"kind":"Name","value":"feeToVolumeRatio4"}},{"kind":"Field","name":{"kind":"Name","value":"feeToVolumeRatio5m"}},{"kind":"Field","name":{"kind":"Name","value":"feeToVolumeRatio12"}},{"kind":"Field","name":{"kind":"Name","value":"feeToVolumeRatio24"}},{"kind":"Field","name":{"kind":"Name","value":"high1"}},{"kind":"Field","name":{"kind":"Name","value":"high4"}},{"kind":"Field","name":{"kind":"Name","value":"high5m"}},{"kind":"Field","name":{"kind":"Name","value":"high12"}},{"kind":"Field","name":{"kind":"Name","value":"high24"}},{"kind":"Field","name":{"kind":"Name","value":"holders"}},{"kind":"Field","name":{"kind":"Name","value":"insiderCount"}},{"kind":"Field","name":{"kind":"Name","value":"insiderHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees1"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees4"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees5m"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees12"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees24"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransaction"}},{"kind":"Field","name":{"kind":"Name","value":"liquidPair"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeHash"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"protocolData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ArenaTradeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"creator"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UniswapV4Data"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isDynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"isToken0NetworkToken"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"uniswapV4HookAddress"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tickSpacing"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token0Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"token1Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"virtualPooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidPairLiquidity"}},{"kind":"Field","name":{"kind":"Name","value":"liquidPairPriceUSD"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"low1"}},{"kind":"Field","name":{"kind":"Name","value":"low4"}},{"kind":"Field","name":{"kind":"Name","value":"low5m"}},{"kind":"Field","name":{"kind":"Name","value":"low12"}},{"kind":"Field","name":{"kind":"Name","value":"low24"}},{"kind":"Field","name":{"kind":"Name","value":"marketCap"}},{"kind":"Field","name":{"kind":"Name","value":"pair"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeHash"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"protocolData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ArenaTradeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"creator"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UniswapV4Data"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isDynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"isToken0NetworkToken"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"uniswapV4HookAddress"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tickSpacing"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token0Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"token1Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"virtualPooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"poolFees1"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees4"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees5m"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees12"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees24"}},{"kind":"Field","name":{"kind":"Name","value":"potentialScamReasons"}},{"kind":"Field","name":{"kind":"Name","value":"priceUSD"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees1"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees4"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees5m"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees12"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees24"}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount1"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount4"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount5m"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount12"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount24"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume1"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume4"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume5m"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume12"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume24"}},{"kind":"Field","name":{"kind":"Name","value":"sniperCount"}},{"kind":"Field","name":{"kind":"Name","value":"sniperHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"swapPct1dOldWallet"}},{"kind":"Field","name":{"kind":"Name","value":"swapPct7dOldWallet"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}},{"kind":"Field","name":{"kind":"Name","value":"totalFees1"}},{"kind":"Field","name":{"kind":"Name","value":"totalFees4"}},{"kind":"Field","name":{"kind":"Name","value":"totalFees5m"}},{"kind":"Field","name":{"kind":"Name","value":"totalFees12"}},{"kind":"Field","name":{"kind":"Name","value":"totalFees24"}},{"kind":"Field","name":{"kind":"Name","value":"trendingScore"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount1"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount4"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount5m"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount12"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount24"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys1"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys4"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys5m"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys12"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys24"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells1"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells4"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells5m"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells12"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells24"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions1"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions4"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions5m"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions12"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions24"}},{"kind":"Field","name":{"kind":"Name","value":"volume1"}},{"kind":"Field","name":{"kind":"Name","value":"volume4"}},{"kind":"Field","name":{"kind":"Name","value":"volume5m"}},{"kind":"Field","name":{"kind":"Name","value":"volume12"}},{"kind":"Field","name":{"kind":"Name","value":"volume24"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange1"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange4"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange12"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange24"}},{"kind":"Field","name":{"kind":"Name","value":"walletAgeAvg"}},{"kind":"Field","name":{"kind":"Name","value":"walletAgeStd"}}]}}]}}]}}]} as unknown as DocumentNode; +export const FilterTokensDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FilterTokens"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"excludeTokens"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filters"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenFilters"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"offset"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"phrase"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"rankings"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenRanking"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenPairStatisticsType"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"tokens"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"useAggregatedStats"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"filterTokens"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"excludeTokens"},"value":{"kind":"Variable","name":{"kind":"Name","value":"excludeTokens"}}},{"kind":"Argument","name":{"kind":"Name","value":"filters"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filters"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"Variable","name":{"kind":"Name","value":"offset"}}},{"kind":"Argument","name":{"kind":"Name","value":"phrase"},"value":{"kind":"Variable","name":{"kind":"Name","value":"phrase"}}},{"kind":"Argument","name":{"kind":"Name","value":"rankings"},"value":{"kind":"Variable","name":{"kind":"Name","value":"rankings"}}},{"kind":"Argument","name":{"kind":"Name","value":"statsType"},"value":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}}},{"kind":"Argument","name":{"kind":"Name","value":"tokens"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tokens"}}},{"kind":"Argument","name":{"kind":"Name","value":"useAggregatedStats"},"value":{"kind":"Variable","name":{"kind":"Name","value":"useAggregatedStats"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"count"}},{"kind":"Field","name":{"kind":"Name","value":"page"}},{"kind":"Field","name":{"kind":"Name","value":"results"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees1"}},{"kind":"Field","name":{"kind":"Name","value":"baseFees4"}},{"kind":"Field","name":{"kind":"Name","value":"baseFees5m"}},{"kind":"Field","name":{"kind":"Name","value":"baseFees12"}},{"kind":"Field","name":{"kind":"Name","value":"baseFees24"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips1"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips4"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips5m"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips12"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips24"}},{"kind":"Field","name":{"kind":"Name","value":"bundlerCount"}},{"kind":"Field","name":{"kind":"Name","value":"bundlerHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount1"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount4"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount5m"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount12"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount24"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume1"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume4"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume5m"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume12"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume24"}},{"kind":"Field","name":{"kind":"Name","value":"change1"}},{"kind":"Field","name":{"kind":"Name","value":"change4"}},{"kind":"Field","name":{"kind":"Name","value":"change5m"}},{"kind":"Field","name":{"kind":"Name","value":"change12"}},{"kind":"Field","name":{"kind":"Name","value":"change24"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingMarketCap"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"devHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"feeToVolumeRatio1"}},{"kind":"Field","name":{"kind":"Name","value":"feeToVolumeRatio4"}},{"kind":"Field","name":{"kind":"Name","value":"feeToVolumeRatio5m"}},{"kind":"Field","name":{"kind":"Name","value":"feeToVolumeRatio12"}},{"kind":"Field","name":{"kind":"Name","value":"feeToVolumeRatio24"}},{"kind":"Field","name":{"kind":"Name","value":"high1"}},{"kind":"Field","name":{"kind":"Name","value":"high4"}},{"kind":"Field","name":{"kind":"Name","value":"high5m"}},{"kind":"Field","name":{"kind":"Name","value":"high12"}},{"kind":"Field","name":{"kind":"Name","value":"high24"}},{"kind":"Field","name":{"kind":"Name","value":"holders"}},{"kind":"Field","name":{"kind":"Name","value":"insiderCount"}},{"kind":"Field","name":{"kind":"Name","value":"insiderHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees1"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees4"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees5m"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees12"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees24"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransaction"}},{"kind":"Field","name":{"kind":"Name","value":"liquidPair"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeHash"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"protocolData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ArenaTradeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"creator"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UniswapV4Data"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isDynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"isToken0NetworkToken"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"uniswapV4HookAddress"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tickSpacing"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token0Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"token1Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"virtualPooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidPairLiquidity"}},{"kind":"Field","name":{"kind":"Name","value":"liquidPairPriceUSD"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"low1"}},{"kind":"Field","name":{"kind":"Name","value":"low4"}},{"kind":"Field","name":{"kind":"Name","value":"low5m"}},{"kind":"Field","name":{"kind":"Name","value":"low12"}},{"kind":"Field","name":{"kind":"Name","value":"low24"}},{"kind":"Field","name":{"kind":"Name","value":"marketCap"}},{"kind":"Field","name":{"kind":"Name","value":"pair"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeHash"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"protocolData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ArenaTradeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"creator"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UniswapV4Data"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isDynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"isToken0NetworkToken"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"uniswapV4HookAddress"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tickSpacing"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token0Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"token1Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"virtualPooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"poolFees1"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees4"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees5m"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees12"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees24"}},{"kind":"Field","name":{"kind":"Name","value":"potentialScamReasons"}},{"kind":"Field","name":{"kind":"Name","value":"priceUSD"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees1"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees4"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees5m"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees12"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees24"}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount1"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount4"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount5m"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount12"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount24"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume1"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume4"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume5m"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume12"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume24"}},{"kind":"Field","name":{"kind":"Name","value":"sniperCount"}},{"kind":"Field","name":{"kind":"Name","value":"sniperHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"swapPct1dOldWallet"}},{"kind":"Field","name":{"kind":"Name","value":"swapPct7dOldWallet"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}},{"kind":"Field","name":{"kind":"Name","value":"totalFees1"}},{"kind":"Field","name":{"kind":"Name","value":"totalFees4"}},{"kind":"Field","name":{"kind":"Name","value":"totalFees5m"}},{"kind":"Field","name":{"kind":"Name","value":"totalFees12"}},{"kind":"Field","name":{"kind":"Name","value":"totalFees24"}},{"kind":"Field","name":{"kind":"Name","value":"trendingScore"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount1"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount4"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount5m"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount12"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount24"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys1"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys4"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys5m"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys12"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys24"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells1"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells4"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells5m"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells12"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells24"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions1"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions4"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions5m"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions12"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions24"}},{"kind":"Field","name":{"kind":"Name","value":"volume1"}},{"kind":"Field","name":{"kind":"Name","value":"volume4"}},{"kind":"Field","name":{"kind":"Name","value":"volume5m"}},{"kind":"Field","name":{"kind":"Name","value":"volume12"}},{"kind":"Field","name":{"kind":"Name","value":"volume24"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange1"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange4"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange12"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange24"}},{"kind":"Field","name":{"kind":"Name","value":"walletAgeAvg"}},{"kind":"Field","name":{"kind":"Name","value":"walletAgeStd"}}]}}]}}]}}]} as unknown as DocumentNode; export const FilterWalletsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FilterWallets"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"FilterWalletsInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"filterWallets"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"count"}},{"kind":"Field","name":{"kind":"Name","value":"offset"}},{"kind":"Field","name":{"kind":"Name","value":"results"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"averageProfitUsdPerTrade1d"}},{"kind":"Field","name":{"kind":"Name","value":"averageProfitUsdPerTrade1w"}},{"kind":"Field","name":{"kind":"Name","value":"averageProfitUsdPerTrade1y"}},{"kind":"Field","name":{"kind":"Name","value":"averageProfitUsdPerTrade30d"}},{"kind":"Field","name":{"kind":"Name","value":"averageSwapAmountUsd1d"}},{"kind":"Field","name":{"kind":"Name","value":"averageSwapAmountUsd1w"}},{"kind":"Field","name":{"kind":"Name","value":"averageSwapAmountUsd1y"}},{"kind":"Field","name":{"kind":"Name","value":"averageSwapAmountUsd30d"}},{"kind":"Field","name":{"kind":"Name","value":"backfillState"}},{"kind":"Field","name":{"kind":"Name","value":"botScore"}},{"kind":"Field","name":{"kind":"Name","value":"firstTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"labels"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"nativeTokenBalance"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitPercentage1d"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitPercentage1w"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitPercentage1y"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitPercentage30d"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitUsd1d"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitUsd1w"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitUsd1y"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitUsd30d"}},{"kind":"Field","name":{"kind":"Name","value":"scammerScore"}},{"kind":"Field","name":{"kind":"Name","value":"swaps1d"}},{"kind":"Field","name":{"kind":"Name","value":"swaps1w"}},{"kind":"Field","name":{"kind":"Name","value":"swaps1y"}},{"kind":"Field","name":{"kind":"Name","value":"swaps30d"}},{"kind":"Field","name":{"kind":"Name","value":"swapsAll1d"}},{"kind":"Field","name":{"kind":"Name","value":"swapsAll1w"}},{"kind":"Field","name":{"kind":"Name","value":"swapsAll1y"}},{"kind":"Field","name":{"kind":"Name","value":"swapsAll30d"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTokens1d"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTokens1w"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTokens1y"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTokens30d"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd1d"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd1w"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd1y"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd30d"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsdAll1d"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsdAll1w"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsdAll1y"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsdAll30d"}},{"kind":"Field","name":{"kind":"Name","value":"wallet"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"avatarUrl"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"discordId"}},{"kind":"Field","name":{"kind":"Name","value":"discordUsername"}},{"kind":"Field","name":{"kind":"Name","value":"displayName"}},{"kind":"Field","name":{"kind":"Name","value":"ethosLevel"}},{"kind":"Field","name":{"kind":"Name","value":"ethosScore"}},{"kind":"Field","name":{"kind":"Name","value":"ethosVerified"}},{"kind":"Field","name":{"kind":"Name","value":"farcasterId"}},{"kind":"Field","name":{"kind":"Name","value":"farcasterUsername"}},{"kind":"Field","name":{"kind":"Name","value":"firstFunding"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount"}},{"kind":"Field","name":{"kind":"Name","value":"fundedAt"}},{"kind":"Field","name":{"kind":"Name","value":"fundedByAddress"}},{"kind":"Field","name":{"kind":"Name","value":"fundedByLabel"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"transactionHash"}}]}},{"kind":"Field","name":{"kind":"Name","value":"firstSeenTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"githubId"}},{"kind":"Field","name":{"kind":"Name","value":"githubUsername"}},{"kind":"Field","name":{"kind":"Name","value":"identityLabels"}},{"kind":"Field","name":{"kind":"Name","value":"identitySource"}},{"kind":"Field","name":{"kind":"Name","value":"identityUpdatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"telegramId"}},{"kind":"Field","name":{"kind":"Name","value":"telegramUsername"}},{"kind":"Field","name":{"kind":"Name","value":"twitterId"}},{"kind":"Field","name":{"kind":"Name","value":"twitterUsername"}},{"kind":"Field","name":{"kind":"Name","value":"website"}}]}},{"kind":"Field","name":{"kind":"Name","value":"winRate1d"}},{"kind":"Field","name":{"kind":"Name","value":"winRate1w"}},{"kind":"Field","name":{"kind":"Name","value":"winRate1y"}},{"kind":"Field","name":{"kind":"Name","value":"winRate30d"}}]}}]}}]}}]} as unknown as DocumentNode; -export const GetBarsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetBars"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"countback"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"currencyCode"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"from"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"quoteToken"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"QuoteToken"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"removeEmptyBars"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"removeLeadingNullValues"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"resolution"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenPairStatisticsType"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"symbol"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"symbolType"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"SymbolType"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"to"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getBars"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"countback"},"value":{"kind":"Variable","name":{"kind":"Name","value":"countback"}}},{"kind":"Argument","name":{"kind":"Name","value":"currencyCode"},"value":{"kind":"Variable","name":{"kind":"Name","value":"currencyCode"}}},{"kind":"Argument","name":{"kind":"Name","value":"from"},"value":{"kind":"Variable","name":{"kind":"Name","value":"from"}}},{"kind":"Argument","name":{"kind":"Name","value":"quoteToken"},"value":{"kind":"Variable","name":{"kind":"Name","value":"quoteToken"}}},{"kind":"Argument","name":{"kind":"Name","value":"removeEmptyBars"},"value":{"kind":"Variable","name":{"kind":"Name","value":"removeEmptyBars"}}},{"kind":"Argument","name":{"kind":"Name","value":"removeLeadingNullValues"},"value":{"kind":"Variable","name":{"kind":"Name","value":"removeLeadingNullValues"}}},{"kind":"Argument","name":{"kind":"Name","value":"resolution"},"value":{"kind":"Variable","name":{"kind":"Name","value":"resolution"}}},{"kind":"Argument","name":{"kind":"Name","value":"statsType"},"value":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}}},{"kind":"Argument","name":{"kind":"Name","value":"symbol"},"value":{"kind":"Variable","name":{"kind":"Name","value":"symbol"}}},{"kind":"Argument","name":{"kind":"Name","value":"symbolType"},"value":{"kind":"Variable","name":{"kind":"Name","value":"symbolType"}}},{"kind":"Argument","name":{"kind":"Name","value":"to"},"value":{"kind":"Variable","name":{"kind":"Name","value":"to"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"averageCostPerTrade"}},{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"feeRegimeClassification"}},{"kind":"Field","name":{"kind":"Name","value":"feeToVolumeRatio"}},{"kind":"Field","name":{"kind":"Name","value":"gasPerVolume"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"mevRiskLevel"}},{"kind":"Field","name":{"kind":"Name","value":"mevToTotalFeesRatio"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"pair"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeHash"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"protocolData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ArenaTradeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"creator"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UniswapV4Data"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isDynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"isToken0NetworkToken"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"uniswapV4HookAddress"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tickSpacing"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token0Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"token1Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"virtualPooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"s"}},{"kind":"Field","name":{"kind":"Name","value":"sandwichRate"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"totalFees"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}}]} as unknown as DocumentNode; -export const GetCommunityNotesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetCommunityNotes"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CommunityNotesInput"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getCommunityNotes"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"count"}},{"kind":"Field","name":{"kind":"Name","value":"cursor"}},{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"contractType"}},{"kind":"Field","name":{"kind":"Name","value":"currentContract"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EnhancedNftContract"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"ercType"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"image"}},{"kind":"Field","name":{"kind":"Name","value":"labels"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"subType"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EnhancedToken"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"currentData"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"moderatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"previousData"}},{"kind":"Field","name":{"kind":"Name","value":"proposalData"}},{"kind":"Field","name":{"kind":"Name","value":"proposalNum"}},{"kind":"Field","name":{"kind":"Name","value":"proposalType"}},{"kind":"Field","name":{"kind":"Name","value":"proposedAt"}},{"kind":"Field","name":{"kind":"Name","value":"sortKey"}},{"kind":"Field","name":{"kind":"Name","value":"status"}}]}}]}}]}}]} as unknown as DocumentNode; -export const GetDetailedPairStatsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetDetailedPairStats"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"bucketCount"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"durations"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DetailedPairStatsDuration"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"pairAddress"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenPairStatisticsType"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"timestamp"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"tokenOfInterest"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenOfInterest"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getDetailedPairStats"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"bucketCount"},"value":{"kind":"Variable","name":{"kind":"Name","value":"bucketCount"}}},{"kind":"Argument","name":{"kind":"Name","value":"durations"},"value":{"kind":"Variable","name":{"kind":"Name","value":"durations"}}},{"kind":"Argument","name":{"kind":"Name","value":"networkId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}}},{"kind":"Argument","name":{"kind":"Name","value":"pairAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"pairAddress"}}},{"kind":"Argument","name":{"kind":"Name","value":"statsType"},"value":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}}},{"kind":"Argument","name":{"kind":"Name","value":"timestamp"},"value":{"kind":"Variable","name":{"kind":"Name","value":"timestamp"}}},{"kind":"Argument","name":{"kind":"Name","value":"tokenOfInterest"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tokenOfInterest"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bucketCount"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransaction"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pair"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeHash"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"protocolData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ArenaTradeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"creator"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UniswapV4Data"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isDynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"isToken0NetworkToken"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"uniswapV4HookAddress"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tickSpacing"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token0Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"token1Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"virtualPooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"pairAddress"}},{"kind":"Field","name":{"kind":"Name","value":"queryTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"statsType"}},{"kind":"Field","name":{"kind":"Name","value":"stats_day1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_day30"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_hour1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_hour4"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_hour12"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_min5"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_min15"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_week1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenOfInterest"}}]}}]}}]} as unknown as DocumentNode; -export const GetDetailedPairsStatsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetDetailedPairsStats"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"GetDetailedPairsStatsInput"}}}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getDetailedPairsStats"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bucketCount"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransaction"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pair"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeHash"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"protocolData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ArenaTradeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"creator"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UniswapV4Data"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isDynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"isToken0NetworkToken"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"uniswapV4HookAddress"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tickSpacing"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token0Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"token1Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"virtualPooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"pairAddress"}},{"kind":"Field","name":{"kind":"Name","value":"queryTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"statsType"}},{"kind":"Field","name":{"kind":"Name","value":"stats_day1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_day30"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_hour1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_hour4"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_hour12"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_min5"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_min15"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_week1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenOfInterest"}}]}}]}}]} as unknown as DocumentNode; +export const GetBarsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetBars"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"countback"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"currencyCode"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"from"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"quoteToken"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"QuoteToken"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"removeEmptyBars"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"removeLeadingNullValues"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"resolution"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenPairStatisticsType"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"symbol"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"symbolType"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"SymbolType"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"to"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getBars"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"countback"},"value":{"kind":"Variable","name":{"kind":"Name","value":"countback"}}},{"kind":"Argument","name":{"kind":"Name","value":"currencyCode"},"value":{"kind":"Variable","name":{"kind":"Name","value":"currencyCode"}}},{"kind":"Argument","name":{"kind":"Name","value":"from"},"value":{"kind":"Variable","name":{"kind":"Name","value":"from"}}},{"kind":"Argument","name":{"kind":"Name","value":"quoteToken"},"value":{"kind":"Variable","name":{"kind":"Name","value":"quoteToken"}}},{"kind":"Argument","name":{"kind":"Name","value":"removeEmptyBars"},"value":{"kind":"Variable","name":{"kind":"Name","value":"removeEmptyBars"}}},{"kind":"Argument","name":{"kind":"Name","value":"removeLeadingNullValues"},"value":{"kind":"Variable","name":{"kind":"Name","value":"removeLeadingNullValues"}}},{"kind":"Argument","name":{"kind":"Name","value":"resolution"},"value":{"kind":"Variable","name":{"kind":"Name","value":"resolution"}}},{"kind":"Argument","name":{"kind":"Name","value":"statsType"},"value":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}}},{"kind":"Argument","name":{"kind":"Name","value":"symbol"},"value":{"kind":"Variable","name":{"kind":"Name","value":"symbol"}}},{"kind":"Argument","name":{"kind":"Name","value":"symbolType"},"value":{"kind":"Variable","name":{"kind":"Name","value":"symbolType"}}},{"kind":"Argument","name":{"kind":"Name","value":"to"},"value":{"kind":"Variable","name":{"kind":"Name","value":"to"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"averageCostPerTrade"}},{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"feeRegimeClassification"}},{"kind":"Field","name":{"kind":"Name","value":"feeToVolumeRatio"}},{"kind":"Field","name":{"kind":"Name","value":"gasPerVolume"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"mevRiskLevel"}},{"kind":"Field","name":{"kind":"Name","value":"mevToTotalFeesRatio"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"pair"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeHash"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"protocolData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ArenaTradeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"creator"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UniswapV4Data"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isDynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"isToken0NetworkToken"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"uniswapV4HookAddress"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tickSpacing"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token0Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"token1Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"virtualPooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"s"}},{"kind":"Field","name":{"kind":"Name","value":"sandwichRate"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"totalFees"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}}]} as unknown as DocumentNode; +export const GetCommunityNotesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetCommunityNotes"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"CommunityNotesInput"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getCommunityNotes"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"count"}},{"kind":"Field","name":{"kind":"Name","value":"cursor"}},{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"contractType"}},{"kind":"Field","name":{"kind":"Name","value":"currentContract"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EnhancedNftContract"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"ercType"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"image"}},{"kind":"Field","name":{"kind":"Name","value":"labels"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"subType"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EnhancedToken"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"currentData"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"moderatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"previousData"}},{"kind":"Field","name":{"kind":"Name","value":"proposalData"}},{"kind":"Field","name":{"kind":"Name","value":"proposalNum"}},{"kind":"Field","name":{"kind":"Name","value":"proposalType"}},{"kind":"Field","name":{"kind":"Name","value":"proposedAt"}},{"kind":"Field","name":{"kind":"Name","value":"sortKey"}},{"kind":"Field","name":{"kind":"Name","value":"status"}}]}}]}}]}}]} as unknown as DocumentNode; +export const GetDetailedPairStatsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetDetailedPairStats"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"bucketCount"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"durations"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DetailedPairStatsDuration"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"pairAddress"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenPairStatisticsType"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"timestamp"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"tokenOfInterest"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenOfInterest"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getDetailedPairStats"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"bucketCount"},"value":{"kind":"Variable","name":{"kind":"Name","value":"bucketCount"}}},{"kind":"Argument","name":{"kind":"Name","value":"durations"},"value":{"kind":"Variable","name":{"kind":"Name","value":"durations"}}},{"kind":"Argument","name":{"kind":"Name","value":"networkId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}}},{"kind":"Argument","name":{"kind":"Name","value":"pairAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"pairAddress"}}},{"kind":"Argument","name":{"kind":"Name","value":"statsType"},"value":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}}},{"kind":"Argument","name":{"kind":"Name","value":"timestamp"},"value":{"kind":"Variable","name":{"kind":"Name","value":"timestamp"}}},{"kind":"Argument","name":{"kind":"Name","value":"tokenOfInterest"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tokenOfInterest"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bucketCount"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransaction"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pair"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeHash"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"protocolData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ArenaTradeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"creator"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UniswapV4Data"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isDynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"isToken0NetworkToken"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"uniswapV4HookAddress"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tickSpacing"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token0Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"token1Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"virtualPooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"pairAddress"}},{"kind":"Field","name":{"kind":"Name","value":"queryTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"statsType"}},{"kind":"Field","name":{"kind":"Name","value":"stats_day1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_day30"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_hour1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_hour4"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_hour12"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_min5"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_min15"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_week1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenOfInterest"}}]}}]}}]} as unknown as DocumentNode; +export const GetDetailedPairsStatsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetDetailedPairsStats"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"GetDetailedPairsStatsInput"}}}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getDetailedPairsStats"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bucketCount"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransaction"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pair"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeHash"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"protocolData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ArenaTradeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"creator"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UniswapV4Data"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isDynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"isToken0NetworkToken"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"uniswapV4HookAddress"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tickSpacing"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token0Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"token1Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"virtualPooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"pairAddress"}},{"kind":"Field","name":{"kind":"Name","value":"queryTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"statsType"}},{"kind":"Field","name":{"kind":"Name","value":"stats_day1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_day30"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_hour1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_hour4"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_hour12"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_min5"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_min15"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_week1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenOfInterest"}}]}}]}}]} as unknown as DocumentNode; export const GetDetailedTokenStatsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetDetailedTokenStats"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"bucketCount"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"durations"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DetailedTokenStatsDuration"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenPairStatisticsType"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"timestamp"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"tokenAddress"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getDetailedTokenStats"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"bucketCount"},"value":{"kind":"Variable","name":{"kind":"Name","value":"bucketCount"}}},{"kind":"Argument","name":{"kind":"Name","value":"durations"},"value":{"kind":"Variable","name":{"kind":"Name","value":"durations"}}},{"kind":"Argument","name":{"kind":"Name","value":"networkId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}}},{"kind":"Argument","name":{"kind":"Name","value":"statsType"},"value":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}}},{"kind":"Argument","name":{"kind":"Name","value":"timestamp"},"value":{"kind":"Variable","name":{"kind":"Name","value":"timestamp"}}},{"kind":"Argument","name":{"kind":"Name","value":"tokenAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tokenAddress"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bucketCount"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"queryTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"statsType"}},{"kind":"Field","name":{"kind":"Name","value":"stats_day1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_hour1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_hour4"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_hour12"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_min5"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}}]}}]}}]} as unknown as DocumentNode; export const GetEventLabelsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetEventLabels"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"cursor"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"direction"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RankingDirection"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getEventLabels"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"cursor"},"value":{"kind":"Variable","name":{"kind":"Name","value":"cursor"}}},{"kind":"Argument","name":{"kind":"Name","value":"direction"},"value":{"kind":"Variable","name":{"kind":"Name","value":"direction"}}},{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cursor"}},{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FrontRunLabelData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"index"}},{"kind":"Field","alias":{"kind":"Name","value":"token0DrainedAmountFrontRun"},"name":{"kind":"Name","value":"token0DrainedAmount"}},{"kind":"Field","alias":{"kind":"Name","value":"token1DrainedAmountFrontRun"},"name":{"kind":"Name","value":"token1DrainedAmount"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SandwichedLabelData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0DrainedAmount"}},{"kind":"Field","name":{"kind":"Name","value":"token1DrainedAmount"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"logIndex"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"transactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"transactionIndex"}}]}}]}}]}}]} as unknown as DocumentNode; export const GetExchangesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetExchanges"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"showNameless"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getExchanges"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"showNameless"},"value":{"kind":"Variable","name":{"kind":"Name","value":"showNameless"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}}]}}]} as unknown as DocumentNode; @@ -16357,18 +16500,18 @@ export const GetNetworkStatsDocument = {"kind":"Document","definitions":[{"kind" export const GetNetworkStatusDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetNetworkStatus"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"networkIds"}},"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getNetworkStatus"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"networkIds"},"value":{"kind":"Variable","name":{"kind":"Name","value":"networkIds"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"lastProcessedBlock"}},{"kind":"Field","name":{"kind":"Name","value":"lastProcessedTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"networkName"}}]}}]}}]} as unknown as DocumentNode; export const GetNetworksDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetNetworks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getNetworks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkShortName"}}]}}]}}]} as unknown as DocumentNode; export const GetSymbolDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetSymbol"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"currencyCode"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"symbol"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getSymbol"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"currencyCode"},"value":{"kind":"Variable","name":{"kind":"Name","value":"currencyCode"}}},{"kind":"Argument","name":{"kind":"Name","value":"symbol"},"value":{"kind":"Variable","name":{"kind":"Name","value":"symbol"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency_code"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"original_currency_code"}},{"kind":"Field","name":{"kind":"Name","value":"pricescale"}},{"kind":"Field","name":{"kind":"Name","value":"supported_resolutions"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}}]}}]}}]} as unknown as DocumentNode; -export const GetTokenBarsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetTokenBars"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"countback"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"currencyCode"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"QuoteCurrency"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"from"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"removeEmptyBars"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"removeLeadingNullValues"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"resolution"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenPairStatisticsType"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"symbol"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"to"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getTokenBars"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"countback"},"value":{"kind":"Variable","name":{"kind":"Name","value":"countback"}}},{"kind":"Argument","name":{"kind":"Name","value":"currencyCode"},"value":{"kind":"Variable","name":{"kind":"Name","value":"currencyCode"}}},{"kind":"Argument","name":{"kind":"Name","value":"from"},"value":{"kind":"Variable","name":{"kind":"Name","value":"from"}}},{"kind":"Argument","name":{"kind":"Name","value":"removeEmptyBars"},"value":{"kind":"Variable","name":{"kind":"Name","value":"removeEmptyBars"}}},{"kind":"Argument","name":{"kind":"Name","value":"removeLeadingNullValues"},"value":{"kind":"Variable","name":{"kind":"Name","value":"removeLeadingNullValues"}}},{"kind":"Argument","name":{"kind":"Name","value":"resolution"},"value":{"kind":"Variable","name":{"kind":"Name","value":"resolution"}}},{"kind":"Argument","name":{"kind":"Name","value":"statsType"},"value":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}}},{"kind":"Argument","name":{"kind":"Name","value":"symbol"},"value":{"kind":"Variable","name":{"kind":"Name","value":"symbol"}}},{"kind":"Argument","name":{"kind":"Name","value":"to"},"value":{"kind":"Variable","name":{"kind":"Name","value":"to"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"averageCostPerTrade"}},{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"feeRegimeClassification"}},{"kind":"Field","name":{"kind":"Name","value":"feeToVolumeRatio"}},{"kind":"Field","name":{"kind":"Name","value":"gasPerVolume"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"mevRiskLevel"}},{"kind":"Field","name":{"kind":"Name","value":"mevToTotalFeesRatio"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"s"}},{"kind":"Field","name":{"kind":"Name","value":"sandwichRate"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"totalFees"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}}]} as unknown as DocumentNode; -export const GetTokenEventsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetTokenEvents"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"cursor"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"direction"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RankingDirection"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"query"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsQueryInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getTokenEvents"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"cursor"},"value":{"kind":"Variable","name":{"kind":"Name","value":"cursor"}}},{"kind":"Argument","name":{"kind":"Name","value":"direction"},"value":{"kind":"Variable","name":{"kind":"Name","value":"direction"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"query"},"value":{"kind":"Variable","name":{"kind":"Name","value":"query"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cursor"}},{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"baseTokenPrice"}},{"kind":"Field","name":{"kind":"Name","value":"blockHash"}},{"kind":"Field","name":{"kind":"Name","value":"blockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"BurnEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"tickLower"}},{"kind":"Field","name":{"kind":"Name","value":"tickUpper"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"MintEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"tickLower"}},{"kind":"Field","name":{"kind":"Name","value":"tickUpper"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PoolBalanceChangedEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity0"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity1"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeeAmount0"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeeAmount1"}},{"kind":"Field","name":{"kind":"Name","value":"sender"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SwapEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0In"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Out"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1In"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Out"}},{"kind":"Field","name":{"kind":"Name","value":"amountNonLiquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"priceBaseToken"}},{"kind":"Field","name":{"kind":"Name","value":"priceBaseTokenTotal"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsdTotal"}},{"kind":"Field","name":{"kind":"Name","value":"tick"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"eventDisplayType"}},{"kind":"Field","name":{"kind":"Name","value":"eventType"}},{"kind":"Field","name":{"kind":"Name","value":"feeData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"builderTipNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"dynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"estimatedPoolFee"}},{"kind":"Field","name":{"kind":"Name","value":"gasUsed"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeAmountRaw"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeRateRaw"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"supplementalFeeData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpAmmCashbackFeeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cashbackAmountLamports"}},{"kind":"Field","name":{"kind":"Name","value":"cashbackFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpCashbackFeeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cashbackAmountLamports"}},{"kind":"Field","name":{"kind":"Name","value":"cashbackFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"txEventCount"}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"labels"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"sandwich"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"sandwichType"}},{"kind":"Field","name":{"kind":"Name","value":"token0DrainedAmount"}},{"kind":"Field","name":{"kind":"Name","value":"token1DrainedAmount"}}]}},{"kind":"Field","name":{"kind":"Name","value":"washtrade"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"logIndex"}},{"kind":"Field","name":{"kind":"Name","value":"maker"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"token0Address"}},{"kind":"Field","name":{"kind":"Name","value":"token0PoolValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token0SwapValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token0ValueBase"}},{"kind":"Field","name":{"kind":"Name","value":"token1Address"}},{"kind":"Field","name":{"kind":"Name","value":"token1PoolValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token1SwapValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token1ValueBase"}},{"kind":"Field","name":{"kind":"Name","value":"transactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"transactionIndex"}},{"kind":"Field","name":{"kind":"Name","value":"walletAge"}},{"kind":"Field","name":{"kind":"Name","value":"walletLabels"}}]}}]}}]}}]} as unknown as DocumentNode; -export const GetTokenEventsForMakerDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetTokenEventsForMaker"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"cursor"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"direction"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RankingDirection"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"query"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MakerEventsQueryInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getTokenEventsForMaker"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"cursor"},"value":{"kind":"Variable","name":{"kind":"Name","value":"cursor"}}},{"kind":"Argument","name":{"kind":"Name","value":"direction"},"value":{"kind":"Variable","name":{"kind":"Name","value":"direction"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"query"},"value":{"kind":"Variable","name":{"kind":"Name","value":"query"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cursor"}},{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"baseTokenPrice"}},{"kind":"Field","name":{"kind":"Name","value":"blockHash"}},{"kind":"Field","name":{"kind":"Name","value":"blockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"BurnEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"tickLower"}},{"kind":"Field","name":{"kind":"Name","value":"tickUpper"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"MintEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"tickLower"}},{"kind":"Field","name":{"kind":"Name","value":"tickUpper"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PoolBalanceChangedEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity0"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity1"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeeAmount0"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeeAmount1"}},{"kind":"Field","name":{"kind":"Name","value":"sender"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SwapEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0In"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Out"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1In"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Out"}},{"kind":"Field","name":{"kind":"Name","value":"amountNonLiquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"priceBaseToken"}},{"kind":"Field","name":{"kind":"Name","value":"priceBaseTokenTotal"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsdTotal"}},{"kind":"Field","name":{"kind":"Name","value":"tick"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"eventDisplayType"}},{"kind":"Field","name":{"kind":"Name","value":"eventType"}},{"kind":"Field","name":{"kind":"Name","value":"feeData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"builderTipNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"dynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"estimatedPoolFee"}},{"kind":"Field","name":{"kind":"Name","value":"gasUsed"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeAmountRaw"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeRateRaw"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"supplementalFeeData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpAmmCashbackFeeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cashbackAmountLamports"}},{"kind":"Field","name":{"kind":"Name","value":"cashbackFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpCashbackFeeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cashbackAmountLamports"}},{"kind":"Field","name":{"kind":"Name","value":"cashbackFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"txEventCount"}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"labels"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"sandwich"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"sandwichType"}},{"kind":"Field","name":{"kind":"Name","value":"token0DrainedAmount"}},{"kind":"Field","name":{"kind":"Name","value":"token1DrainedAmount"}}]}},{"kind":"Field","name":{"kind":"Name","value":"washtrade"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"logIndex"}},{"kind":"Field","name":{"kind":"Name","value":"maker"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"token0Address"}},{"kind":"Field","name":{"kind":"Name","value":"token0PoolValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token0SwapValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token0ValueBase"}},{"kind":"Field","name":{"kind":"Name","value":"token1Address"}},{"kind":"Field","name":{"kind":"Name","value":"token1PoolValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token1SwapValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token1ValueBase"}},{"kind":"Field","name":{"kind":"Name","value":"transactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"transactionIndex"}},{"kind":"Field","name":{"kind":"Name","value":"walletAge"}},{"kind":"Field","name":{"kind":"Name","value":"walletLabels"}}]}}]}}]}}]} as unknown as DocumentNode; +export const GetTokenBarsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetTokenBars"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"countback"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"currencyCode"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"QuoteCurrency"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"from"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"removeEmptyBars"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"removeLeadingNullValues"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"resolution"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenPairStatisticsType"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"symbol"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"to"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getTokenBars"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"countback"},"value":{"kind":"Variable","name":{"kind":"Name","value":"countback"}}},{"kind":"Argument","name":{"kind":"Name","value":"currencyCode"},"value":{"kind":"Variable","name":{"kind":"Name","value":"currencyCode"}}},{"kind":"Argument","name":{"kind":"Name","value":"from"},"value":{"kind":"Variable","name":{"kind":"Name","value":"from"}}},{"kind":"Argument","name":{"kind":"Name","value":"removeEmptyBars"},"value":{"kind":"Variable","name":{"kind":"Name","value":"removeEmptyBars"}}},{"kind":"Argument","name":{"kind":"Name","value":"removeLeadingNullValues"},"value":{"kind":"Variable","name":{"kind":"Name","value":"removeLeadingNullValues"}}},{"kind":"Argument","name":{"kind":"Name","value":"resolution"},"value":{"kind":"Variable","name":{"kind":"Name","value":"resolution"}}},{"kind":"Argument","name":{"kind":"Name","value":"statsType"},"value":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}}},{"kind":"Argument","name":{"kind":"Name","value":"symbol"},"value":{"kind":"Variable","name":{"kind":"Name","value":"symbol"}}},{"kind":"Argument","name":{"kind":"Name","value":"to"},"value":{"kind":"Variable","name":{"kind":"Name","value":"to"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"averageCostPerTrade"}},{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"feeRegimeClassification"}},{"kind":"Field","name":{"kind":"Name","value":"feeToVolumeRatio"}},{"kind":"Field","name":{"kind":"Name","value":"gasPerVolume"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"mevRiskLevel"}},{"kind":"Field","name":{"kind":"Name","value":"mevToTotalFeesRatio"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"s"}},{"kind":"Field","name":{"kind":"Name","value":"sandwichRate"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"totalFees"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}}]} as unknown as DocumentNode; +export const GetTokenEventsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetTokenEvents"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"cursor"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"direction"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RankingDirection"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"query"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EventsQueryInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getTokenEvents"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"cursor"},"value":{"kind":"Variable","name":{"kind":"Name","value":"cursor"}}},{"kind":"Argument","name":{"kind":"Name","value":"direction"},"value":{"kind":"Variable","name":{"kind":"Name","value":"direction"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"query"},"value":{"kind":"Variable","name":{"kind":"Name","value":"query"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cursor"}},{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"baseTokenPrice"}},{"kind":"Field","name":{"kind":"Name","value":"blockHash"}},{"kind":"Field","name":{"kind":"Name","value":"blockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"commitmentLevel"}},{"kind":"Field","name":{"kind":"Name","value":"data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"BurnEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"tickLower"}},{"kind":"Field","name":{"kind":"Name","value":"tickUpper"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"MintEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"tickLower"}},{"kind":"Field","name":{"kind":"Name","value":"tickUpper"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PoolBalanceChangedEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity0"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity1"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeeAmount0"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeeAmount1"}},{"kind":"Field","name":{"kind":"Name","value":"sender"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SwapEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0In"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Out"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1In"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Out"}},{"kind":"Field","name":{"kind":"Name","value":"amountNonLiquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"priceBaseToken"}},{"kind":"Field","name":{"kind":"Name","value":"priceBaseTokenTotal"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsdTotal"}},{"kind":"Field","name":{"kind":"Name","value":"tick"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"eventDisplayType"}},{"kind":"Field","name":{"kind":"Name","value":"eventType"}},{"kind":"Field","name":{"kind":"Name","value":"feeData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"builderTipNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"dynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"estimatedPoolFee"}},{"kind":"Field","name":{"kind":"Name","value":"gasUsed"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeAmountRaw"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeRateRaw"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"supplementalFeeData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpAmmCashbackFeeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cashbackAmountLamports"}},{"kind":"Field","name":{"kind":"Name","value":"cashbackFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpCashbackFeeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cashbackAmountLamports"}},{"kind":"Field","name":{"kind":"Name","value":"cashbackFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"txEventCount"}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"labels"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"sandwich"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"sandwichType"}},{"kind":"Field","name":{"kind":"Name","value":"token0DrainedAmount"}},{"kind":"Field","name":{"kind":"Name","value":"token1DrainedAmount"}}]}},{"kind":"Field","name":{"kind":"Name","value":"washtrade"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"logIndex"}},{"kind":"Field","name":{"kind":"Name","value":"maker"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"supplementalIndex"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"token0Address"}},{"kind":"Field","name":{"kind":"Name","value":"token0PoolValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token0SwapValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token0ValueBase"}},{"kind":"Field","name":{"kind":"Name","value":"token1Address"}},{"kind":"Field","name":{"kind":"Name","value":"token1PoolValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token1SwapValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token1ValueBase"}},{"kind":"Field","name":{"kind":"Name","value":"transactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"transactionIndex"}},{"kind":"Field","name":{"kind":"Name","value":"walletAge"}},{"kind":"Field","name":{"kind":"Name","value":"walletLabels"}}]}}]}}]}}]} as unknown as DocumentNode; +export const GetTokenEventsForMakerDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetTokenEventsForMaker"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"cursor"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"direction"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"RankingDirection"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"query"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"MakerEventsQueryInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getTokenEventsForMaker"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"cursor"},"value":{"kind":"Variable","name":{"kind":"Name","value":"cursor"}}},{"kind":"Argument","name":{"kind":"Name","value":"direction"},"value":{"kind":"Variable","name":{"kind":"Name","value":"direction"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"query"},"value":{"kind":"Variable","name":{"kind":"Name","value":"query"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cursor"}},{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"baseTokenPrice"}},{"kind":"Field","name":{"kind":"Name","value":"blockHash"}},{"kind":"Field","name":{"kind":"Name","value":"blockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"commitmentLevel"}},{"kind":"Field","name":{"kind":"Name","value":"data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"BurnEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"tickLower"}},{"kind":"Field","name":{"kind":"Name","value":"tickUpper"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"MintEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"tickLower"}},{"kind":"Field","name":{"kind":"Name","value":"tickUpper"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PoolBalanceChangedEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity0"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity1"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeeAmount0"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeeAmount1"}},{"kind":"Field","name":{"kind":"Name","value":"sender"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SwapEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0In"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Out"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1In"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Out"}},{"kind":"Field","name":{"kind":"Name","value":"amountNonLiquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"priceBaseToken"}},{"kind":"Field","name":{"kind":"Name","value":"priceBaseTokenTotal"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsdTotal"}},{"kind":"Field","name":{"kind":"Name","value":"tick"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"eventDisplayType"}},{"kind":"Field","name":{"kind":"Name","value":"eventType"}},{"kind":"Field","name":{"kind":"Name","value":"feeData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"builderTipNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"dynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"estimatedPoolFee"}},{"kind":"Field","name":{"kind":"Name","value":"gasUsed"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeAmountRaw"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeRateRaw"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"supplementalFeeData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpAmmCashbackFeeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cashbackAmountLamports"}},{"kind":"Field","name":{"kind":"Name","value":"cashbackFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpCashbackFeeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cashbackAmountLamports"}},{"kind":"Field","name":{"kind":"Name","value":"cashbackFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"txEventCount"}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"labels"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"sandwich"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"sandwichType"}},{"kind":"Field","name":{"kind":"Name","value":"token0DrainedAmount"}},{"kind":"Field","name":{"kind":"Name","value":"token1DrainedAmount"}}]}},{"kind":"Field","name":{"kind":"Name","value":"washtrade"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"logIndex"}},{"kind":"Field","name":{"kind":"Name","value":"maker"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"supplementalIndex"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"token0Address"}},{"kind":"Field","name":{"kind":"Name","value":"token0PoolValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token0SwapValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token0ValueBase"}},{"kind":"Field","name":{"kind":"Name","value":"token1Address"}},{"kind":"Field","name":{"kind":"Name","value":"token1PoolValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token1SwapValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token1ValueBase"}},{"kind":"Field","name":{"kind":"Name","value":"transactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"transactionIndex"}},{"kind":"Field","name":{"kind":"Name","value":"walletAge"}},{"kind":"Field","name":{"kind":"Name","value":"walletLabels"}}]}}]}}]}}]} as unknown as DocumentNode; export const GetTokenPricesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetTokenPrices"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"inputs"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"GetPriceInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getTokenPrices"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"inputs"},"value":{"kind":"Variable","name":{"kind":"Name","value":"inputs"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"blockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}}]}}]}}]} as unknown as DocumentNode; export const GetWebhooksDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetWebhooks"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"bucketId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"bucketSortkey"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"cursor"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"webhookId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getWebhooks"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"bucketId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"bucketId"}}},{"kind":"Argument","name":{"kind":"Name","value":"bucketSortkey"},"value":{"kind":"Variable","name":{"kind":"Name","value":"bucketSortkey"}}},{"kind":"Argument","name":{"kind":"Name","value":"cursor"},"value":{"kind":"Variable","name":{"kind":"Name","value":"cursor"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"webhookId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"webhookId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cursor"}},{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"alertRecurrence"}},{"kind":"Field","name":{"kind":"Name","value":"bucketId"}},{"kind":"Field","name":{"kind":"Name","value":"bucketSortkey"}},{"kind":"Field","name":{"kind":"Name","value":"callbackUrl"}},{"kind":"Field","name":{"kind":"Name","value":"conditions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NftEventWebhookCondition"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contractAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"eventType"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"fillSource"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"oneOf"}}]}},{"kind":"Field","name":{"kind":"Name","value":"ignoreTransfers"}},{"kind":"Field","name":{"kind":"Name","value":"individualBaseTokenPrice"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}},{"kind":"Field","name":{"kind":"Name","value":"gt"}},{"kind":"Field","name":{"kind":"Name","value":"gte"}},{"kind":"Field","name":{"kind":"Name","value":"lt"}},{"kind":"Field","name":{"kind":"Name","value":"lte"}}]}},{"kind":"Field","name":{"kind":"Name","value":"maker"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"networkId"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"oneOf"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PriceEventWebhookCondition"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"priceNetworkId"},"name":{"kind":"Name","value":"networkId"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}},{"kind":"Field","name":{"kind":"Name","value":"gt"}},{"kind":"Field","name":{"kind":"Name","value":"gte"}},{"kind":"Field","name":{"kind":"Name","value":"lt"}},{"kind":"Field","name":{"kind":"Name","value":"lte"}}]}},{"kind":"Field","alias":{"kind":"Name","value":"priceTokenAddress"},"name":{"kind":"Name","value":"tokenAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"RawTransactionWebhookCondition"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"from"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"ignoreNftEvents"}},{"kind":"Field","name":{"kind":"Name","value":"ignoreTokenPairEvents"}},{"kind":"Field","name":{"kind":"Name","value":"input"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"contains"}},{"kind":"Field","name":{"kind":"Name","value":"notContains"}}]}},{"kind":"Field","name":{"kind":"Name","value":"networkId"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"oneOf"}}]}},{"kind":"Field","name":{"kind":"Name","value":"to"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"toOrFrom"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TokenPairEventWebhookCondition"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eventType"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"oneOf"}}]}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"maker"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"networkId"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"oneOf"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pairAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}},{"kind":"Field","name":{"kind":"Name","value":"swapValue"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}},{"kind":"Field","name":{"kind":"Name","value":"gt"}},{"kind":"Field","name":{"kind":"Name","value":"gte"}},{"kind":"Field","name":{"kind":"Name","value":"lt"}},{"kind":"Field","name":{"kind":"Name","value":"lte"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eq"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"created"}},{"kind":"Field","name":{"kind":"Name","value":"groupId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"publishingType"}},{"kind":"Field","name":{"kind":"Name","value":"retrySettings"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"maxRetries"}},{"kind":"Field","name":{"kind":"Name","value":"maxRetryDelay"}},{"kind":"Field","name":{"kind":"Name","value":"maxTimeElapsed"}},{"kind":"Field","name":{"kind":"Name","value":"minRetryDelay"}}]}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"webhookType"}}]}}]}}]}}]} as unknown as DocumentNode; -export const HoldersDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"Holders"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"HoldersInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"holders"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"count"}},{"kind":"Field","name":{"kind":"Name","value":"cursor"}},{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"balance"}},{"kind":"Field","name":{"kind":"Name","value":"balanceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"firstHeldTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"shiftedBalance"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"tokenPriceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"walletId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}}]} as unknown as DocumentNode; +export const HoldersDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"Holders"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"HoldersInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"holders"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"count"}},{"kind":"Field","name":{"kind":"Name","value":"cursor"}},{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"balance"}},{"kind":"Field","name":{"kind":"Name","value":"balanceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"firstHeldTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"shiftedBalance"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"tokenPriceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"walletId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}}]} as unknown as DocumentNode; export const LiquidityLocksDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"LiquidityLocks"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"cursor"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"pairAddress"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"tokenAddress"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidityLocks"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"cursor"},"value":{"kind":"Variable","name":{"kind":"Name","value":"cursor"}}},{"kind":"Argument","name":{"kind":"Name","value":"networkId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}}},{"kind":"Argument","name":{"kind":"Name","value":"pairAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"pairAddress"}}},{"kind":"Argument","name":{"kind":"Name","value":"tokenAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tokenAddress"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cursor"}},{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"initialAmountToken0"}},{"kind":"Field","name":{"kind":"Name","value":"initialAmountToken1"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityAmount"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityNftData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nftPositionManagerAddress"}},{"kind":"Field","name":{"kind":"Name","value":"nftTokenId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityProtocolV2"}},{"kind":"Field","name":{"kind":"Name","value":"lockProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"lockerAddress"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"ownerAddress"}},{"kind":"Field","name":{"kind":"Name","value":"pairAddress"}},{"kind":"Field","name":{"kind":"Name","value":"unlockAt"}}]}},{"kind":"Field","name":{"kind":"Name","value":"pairLiquidityData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pairAddress"}},{"kind":"Field","name":{"kind":"Name","value":"pairId"}},{"kind":"Field","name":{"kind":"Name","value":"totalLiquidity"}}]}}]}}]}}]} as unknown as DocumentNode; export const LiquidityMetadataDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"LiquidityMetadata"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"pairAddress"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidityMetadata"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"networkId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}}},{"kind":"Argument","name":{"kind":"Name","value":"pairAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"pairAddress"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"active"}},{"kind":"Field","name":{"kind":"Name","value":"inactive"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lockedLiquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"active"}},{"kind":"Field","name":{"kind":"Name","value":"inactive"}},{"kind":"Field","name":{"kind":"Name","value":"lockBreakdown"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"active"}},{"kind":"Field","name":{"kind":"Name","value":"inactive"}},{"kind":"Field","name":{"kind":"Name","value":"lockProtocol"}}]}}]}}]}}]}}]} as unknown as DocumentNode; export const LiquidityMetadataByTokenDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"LiquidityMetadataByToken"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"tokenAddress"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidityMetadataByToken"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"networkId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}}},{"kind":"Argument","name":{"kind":"Name","value":"tokenAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tokenAddress"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"lockBreakdown"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amountLockedTokens"}},{"kind":"Field","name":{"kind":"Name","value":"amountLockedTokensShifted"}},{"kind":"Field","name":{"kind":"Name","value":"amountLockedUsd"}},{"kind":"Field","name":{"kind":"Name","value":"lockProtocol"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lockedLiquidityPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"lockedLiquidityUsd"}},{"kind":"Field","name":{"kind":"Name","value":"lockedTokenLiquidity"}},{"kind":"Field","name":{"kind":"Name","value":"lockedTokenLiquidityShifted"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"totalLiquidityUsd"}},{"kind":"Field","name":{"kind":"Name","value":"totalTokenLiquidity"}},{"kind":"Field","name":{"kind":"Name","value":"totalTokenLiquidityShifted"}}]}}]}}]} as unknown as DocumentNode; -export const ListPairsForTokenDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"ListPairsForToken"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"tokenAddress"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"listPairsForToken"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"networkId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}}},{"kind":"Argument","name":{"kind":"Name","value":"tokenAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tokenAddress"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeHash"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"protocolData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ArenaTradeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"creator"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UniswapV4Data"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isDynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"isToken0NetworkToken"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"uniswapV4HookAddress"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tickSpacing"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token0Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"token1Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"virtualPooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}}]}}]}}]} as unknown as DocumentNode; -export const ListPairsWithMetadataForTokenDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"ListPairsWithMetadataForToken"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"tokenAddress"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"listPairsWithMetadataForToken"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"networkId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}}},{"kind":"Argument","name":{"kind":"Name","value":"tokenAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tokenAddress"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"results"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backingToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"exchange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"pair"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeHash"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"protocolData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ArenaTradeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"creator"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UniswapV4Data"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isDynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"isToken0NetworkToken"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"uniswapV4HookAddress"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tickSpacing"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token0Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"token1Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"virtualPooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"}}]}}]}}]}}]} as unknown as DocumentNode; -export const PairMetadataDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"PairMetadata"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"pairId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"quoteToken"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"QuoteToken"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenPairStatisticsType"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"pairMetadata"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"pairId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"pairId"}}},{"kind":"Argument","name":{"kind":"Name","value":"quoteToken"},"value":{"kind":"Variable","name":{"kind":"Name","value":"quoteToken"}}},{"kind":"Argument","name":{"kind":"Name","value":"statsType"},"value":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"enhancedToken0"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"enhancedToken1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"exchangeId"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"highPrice1"}},{"kind":"Field","name":{"kind":"Name","value":"highPrice4"}},{"kind":"Field","name":{"kind":"Name","value":"highPrice5m"}},{"kind":"Field","name":{"kind":"Name","value":"highPrice12"}},{"kind":"Field","name":{"kind":"Name","value":"highPrice24"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"lowPrice1"}},{"kind":"Field","name":{"kind":"Name","value":"lowPrice4"}},{"kind":"Field","name":{"kind":"Name","value":"lowPrice5m"}},{"kind":"Field","name":{"kind":"Name","value":"lowPrice12"}},{"kind":"Field","name":{"kind":"Name","value":"lowPrice24"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"nonLiquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"pairAddress"}},{"kind":"Field","name":{"kind":"Name","value":"price"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange1"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange4"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange12"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange24"}},{"kind":"Field","name":{"kind":"Name","value":"priceNonQuoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"statsType"}},{"kind":"Field","name":{"kind":"Name","value":"tickSpacing"}},{"kind":"Field","name":{"kind":"Name","value":"token0"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"labels"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"subType"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"}},{"kind":"Field","name":{"kind":"Name","value":"price"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"labels"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"subType"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"}},{"kind":"Field","name":{"kind":"Name","value":"price"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}}]}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}},{"kind":"Field","name":{"kind":"Name","value":"volume1"}},{"kind":"Field","name":{"kind":"Name","value":"volume4"}},{"kind":"Field","name":{"kind":"Name","value":"volume5m"}},{"kind":"Field","name":{"kind":"Name","value":"volume12"}},{"kind":"Field","name":{"kind":"Name","value":"volume24"}},{"kind":"Field","name":{"kind":"Name","value":"walletActivity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bundlerCount"}},{"kind":"Field","name":{"kind":"Name","value":"bundlerHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"devHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"insiderCount"}},{"kind":"Field","name":{"kind":"Name","value":"insiderHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"sniperCount"}},{"kind":"Field","name":{"kind":"Name","value":"sniperHeldPercentage"}}]}}]}}]}}]} as unknown as DocumentNode; +export const ListPairsForTokenDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"ListPairsForToken"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"tokenAddress"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"listPairsForToken"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"networkId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}}},{"kind":"Argument","name":{"kind":"Name","value":"tokenAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tokenAddress"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeHash"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"protocolData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ArenaTradeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"creator"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UniswapV4Data"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isDynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"isToken0NetworkToken"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"uniswapV4HookAddress"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tickSpacing"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token0Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"token1Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"virtualPooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}}]}}]}}]} as unknown as DocumentNode; +export const ListPairsWithMetadataForTokenDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"ListPairsWithMetadataForToken"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"tokenAddress"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"listPairsWithMetadataForToken"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"networkId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}}},{"kind":"Argument","name":{"kind":"Name","value":"tokenAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tokenAddress"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"results"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backingToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"exchange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"pair"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeHash"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"protocolData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ArenaTradeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"creator"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UniswapV4Data"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isDynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"isToken0NetworkToken"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"uniswapV4HookAddress"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tickSpacing"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token0Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"token1Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"virtualPooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"}}]}}]}}]}}]} as unknown as DocumentNode; +export const PairMetadataDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"PairMetadata"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"pairId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"quoteToken"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"QuoteToken"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenPairStatisticsType"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"pairMetadata"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"pairId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"pairId"}}},{"kind":"Argument","name":{"kind":"Name","value":"quoteToken"},"value":{"kind":"Variable","name":{"kind":"Name","value":"quoteToken"}}},{"kind":"Argument","name":{"kind":"Name","value":"statsType"},"value":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"enhancedToken0"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"enhancedToken1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"exchangeId"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"highPrice1"}},{"kind":"Field","name":{"kind":"Name","value":"highPrice4"}},{"kind":"Field","name":{"kind":"Name","value":"highPrice5m"}},{"kind":"Field","name":{"kind":"Name","value":"highPrice12"}},{"kind":"Field","name":{"kind":"Name","value":"highPrice24"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"lowPrice1"}},{"kind":"Field","name":{"kind":"Name","value":"lowPrice4"}},{"kind":"Field","name":{"kind":"Name","value":"lowPrice5m"}},{"kind":"Field","name":{"kind":"Name","value":"lowPrice12"}},{"kind":"Field","name":{"kind":"Name","value":"lowPrice24"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"nonLiquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"pairAddress"}},{"kind":"Field","name":{"kind":"Name","value":"price"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange1"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange4"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange12"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange24"}},{"kind":"Field","name":{"kind":"Name","value":"priceNonQuoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"statsType"}},{"kind":"Field","name":{"kind":"Name","value":"tickSpacing"}},{"kind":"Field","name":{"kind":"Name","value":"token0"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"labels"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"subType"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"}},{"kind":"Field","name":{"kind":"Name","value":"price"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"labels"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"subType"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"}},{"kind":"Field","name":{"kind":"Name","value":"price"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}}]}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}},{"kind":"Field","name":{"kind":"Name","value":"volume1"}},{"kind":"Field","name":{"kind":"Name","value":"volume4"}},{"kind":"Field","name":{"kind":"Name","value":"volume5m"}},{"kind":"Field","name":{"kind":"Name","value":"volume12"}},{"kind":"Field","name":{"kind":"Name","value":"volume24"}},{"kind":"Field","name":{"kind":"Name","value":"walletActivity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bundlerCount"}},{"kind":"Field","name":{"kind":"Name","value":"bundlerHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"devHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"insiderCount"}},{"kind":"Field","name":{"kind":"Name","value":"insiderHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"sniperCount"}},{"kind":"Field","name":{"kind":"Name","value":"sniperHeldPercentage"}}]}}]}}]}}]} as unknown as DocumentNode; export const PredictionCategoriesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"PredictionCategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"predictionCategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}}]}}]} as unknown as DocumentNode; export const PredictionEventBarsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"PredictionEventBars"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PredictionEventBarsInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"predictionEventBars"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"lastEventTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterestCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterestUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}},{"kind":"Field","name":{"kind":"Name","value":"venueVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"venueVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"eventId"}},{"kind":"Field","name":{"kind":"Name","value":"predictionEvent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"categories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"closesAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"marketIds"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"opensAt"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"question"}},{"kind":"Field","name":{"kind":"Name","value":"resolution"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"result"}},{"kind":"Field","name":{"kind":"Name","value":"source"}}]}},{"kind":"Field","name":{"kind":"Name","value":"resolvedAt"}},{"kind":"Field","name":{"kind":"Name","value":"resolvesAt"}},{"kind":"Field","name":{"kind":"Name","value":"rulesPrimary"}},{"kind":"Field","name":{"kind":"Name","value":"rulesSecondary"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"venueEventId"}},{"kind":"Field","name":{"kind":"Name","value":"venueSeriesId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"predictionMarkets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"categories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"closesAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"eventId"}},{"kind":"Field","name":{"kind":"Name","value":"eventLabel"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"observedAt"}},{"kind":"Field","name":{"kind":"Name","value":"opensAt"}},{"kind":"Field","name":{"kind":"Name","value":"outcomeIds"}},{"kind":"Field","name":{"kind":"Name","value":"outcomeLabels"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"question"}},{"kind":"Field","name":{"kind":"Name","value":"resolution"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"result"}},{"kind":"Field","name":{"kind":"Name","value":"source"}}]}},{"kind":"Field","name":{"kind":"Name","value":"resolvedAt"}},{"kind":"Field","name":{"kind":"Name","value":"resolvesAt"}},{"kind":"Field","name":{"kind":"Name","value":"rules"}},{"kind":"Field","name":{"kind":"Name","value":"rules2"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"venueEventId"}},{"kind":"Field","name":{"kind":"Name","value":"venueMarketId"}},{"kind":"Field","name":{"kind":"Name","value":"venueMarketSlug"}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeIds"}},{"kind":"Field","name":{"kind":"Name","value":"winningOutcomeId"}}]}}]}}]}}]} as unknown as DocumentNode; export const PredictionEventTopMarketsBarsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"PredictionEventTopMarketsBars"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PredictionEventTopMarketsBarsInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"predictionEventTopMarketsBars"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eventId"}},{"kind":"Field","name":{"kind":"Name","value":"marketBars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"allTimeVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"lastEventTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome0"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"askUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"askUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"marketId"}},{"kind":"Field","name":{"kind":"Name","value":"predictionEvent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"categories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"closesAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"marketIds"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"opensAt"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"question"}},{"kind":"Field","name":{"kind":"Name","value":"resolution"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"result"}},{"kind":"Field","name":{"kind":"Name","value":"source"}}]}},{"kind":"Field","name":{"kind":"Name","value":"resolvedAt"}},{"kind":"Field","name":{"kind":"Name","value":"resolvesAt"}},{"kind":"Field","name":{"kind":"Name","value":"rulesPrimary"}},{"kind":"Field","name":{"kind":"Name","value":"rulesSecondary"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"venueEventId"}},{"kind":"Field","name":{"kind":"Name","value":"venueSeriesId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"predictionMarket"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"categories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"closesAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"eventId"}},{"kind":"Field","name":{"kind":"Name","value":"eventLabel"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"observedAt"}},{"kind":"Field","name":{"kind":"Name","value":"opensAt"}},{"kind":"Field","name":{"kind":"Name","value":"outcomeIds"}},{"kind":"Field","name":{"kind":"Name","value":"outcomeLabels"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"question"}},{"kind":"Field","name":{"kind":"Name","value":"resolution"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"result"}},{"kind":"Field","name":{"kind":"Name","value":"source"}}]}},{"kind":"Field","name":{"kind":"Name","value":"resolvedAt"}},{"kind":"Field","name":{"kind":"Name","value":"resolvesAt"}},{"kind":"Field","name":{"kind":"Name","value":"rules"}},{"kind":"Field","name":{"kind":"Name","value":"rules2"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"venueEventId"}},{"kind":"Field","name":{"kind":"Name","value":"venueMarketId"}},{"kind":"Field","name":{"kind":"Name","value":"venueMarketSlug"}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeIds"}},{"kind":"Field","name":{"kind":"Name","value":"winningOutcomeId"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"predictionEvent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"categories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"closesAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"marketIds"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"opensAt"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"question"}},{"kind":"Field","name":{"kind":"Name","value":"resolution"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"result"}},{"kind":"Field","name":{"kind":"Name","value":"source"}}]}},{"kind":"Field","name":{"kind":"Name","value":"resolvedAt"}},{"kind":"Field","name":{"kind":"Name","value":"resolvesAt"}},{"kind":"Field","name":{"kind":"Name","value":"rulesPrimary"}},{"kind":"Field","name":{"kind":"Name","value":"rulesSecondary"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"venueEventId"}},{"kind":"Field","name":{"kind":"Name","value":"venueSeriesId"}}]}}]}}]}}]} as unknown as DocumentNode; @@ -16381,41 +16524,40 @@ export const PredictionTraderHoldingsDocument = {"kind":"Document","definitions" export const PredictionTraderMarketsStatsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"PredictionTraderMarketsStats"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PredictionTraderMarketsStatsInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"predictionTraderMarketsStats"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cursor"}},{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"hasOpenPosition"}},{"kind":"Field","name":{"kind":"Name","value":"marketId"}},{"kind":"Field","name":{"kind":"Name","value":"outcome0Stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"avgEntryPriceCT"}},{"kind":"Field","name":{"kind":"Name","value":"avgEntryPriceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"costBasisCT"}},{"kind":"Field","name":{"kind":"Name","value":"costBasisUsd"}},{"kind":"Field","name":{"kind":"Name","value":"firstTradeTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"lastTradeTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"outcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"pnlStatus"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlCT"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"sharesHeld"}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome1Stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"avgEntryPriceCT"}},{"kind":"Field","name":{"kind":"Name","value":"avgEntryPriceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"costBasisCT"}},{"kind":"Field","name":{"kind":"Name","value":"costBasisUsd"}},{"kind":"Field","name":{"kind":"Name","value":"firstTradeTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"lastTradeTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"outcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"pnlStatus"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlCT"}},{"kind":"Field","name":{"kind":"Name","value":"realizedPnlUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"sharesHeld"}}]}},{"kind":"Field","name":{"kind":"Name","value":"predictionMarket"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"categories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"closesAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"eventId"}},{"kind":"Field","name":{"kind":"Name","value":"eventLabel"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"observedAt"}},{"kind":"Field","name":{"kind":"Name","value":"opensAt"}},{"kind":"Field","name":{"kind":"Name","value":"outcomeIds"}},{"kind":"Field","name":{"kind":"Name","value":"outcomeLabels"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"question"}},{"kind":"Field","name":{"kind":"Name","value":"resolution"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"result"}},{"kind":"Field","name":{"kind":"Name","value":"source"}}]}},{"kind":"Field","name":{"kind":"Name","value":"resolvedAt"}},{"kind":"Field","name":{"kind":"Name","value":"resolvesAt"}},{"kind":"Field","name":{"kind":"Name","value":"rules"}},{"kind":"Field","name":{"kind":"Name","value":"rules2"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"venueEventId"}},{"kind":"Field","name":{"kind":"Name","value":"venueMarketId"}},{"kind":"Field","name":{"kind":"Name","value":"venueMarketSlug"}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeIds"}},{"kind":"Field","name":{"kind":"Name","value":"winningOutcomeId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traderId"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}}]}}]}}]}}]} as unknown as DocumentNode; export const PredictionTradersDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"PredictionTraders"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PredictionTradersInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"predictionTraders"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"activeMarketsCount"}},{"kind":"Field","name":{"kind":"Name","value":"alias"}},{"kind":"Field","name":{"kind":"Name","value":"allTimeProfitCT"}},{"kind":"Field","name":{"kind":"Name","value":"allTimeProfitUsd"}},{"kind":"Field","name":{"kind":"Name","value":"biggestLossCT"}},{"kind":"Field","name":{"kind":"Name","value":"biggestLossUsd"}},{"kind":"Field","name":{"kind":"Name","value":"biggestWinCT"}},{"kind":"Field","name":{"kind":"Name","value":"biggestWinUsd"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"firstTradeTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"labels"}},{"kind":"Field","name":{"kind":"Name","value":"lastTradeTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"linkedAddresses"}},{"kind":"Field","name":{"kind":"Name","value":"primaryAddress"}},{"kind":"Field","name":{"kind":"Name","value":"profileImageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"profileUrl"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"totalTradesCount"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeCT"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"venueTraderId"}}]}}]}}]} as unknown as DocumentNode; export const PredictionTradesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"PredictionTrades"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PredictionTradesInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"predictionTrades"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cursor"}},{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount"}},{"kind":"Field","name":{"kind":"Name","value":"amountCollateral"}},{"kind":"Field","name":{"kind":"Name","value":"amountUsd"}},{"kind":"Field","name":{"kind":"Name","value":"blockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"}},{"kind":"Field","name":{"kind":"Name","value":"maker"}},{"kind":"Field","name":{"kind":"Name","value":"marketId"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"outcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"outcomeIndex"}},{"kind":"Field","name":{"kind":"Name","value":"outcomeLabel"}},{"kind":"Field","name":{"kind":"Name","value":"predictionMarket"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"categories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"closesAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"eventId"}},{"kind":"Field","name":{"kind":"Name","value":"eventLabel"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"observedAt"}},{"kind":"Field","name":{"kind":"Name","value":"opensAt"}},{"kind":"Field","name":{"kind":"Name","value":"outcomeIds"}},{"kind":"Field","name":{"kind":"Name","value":"outcomeLabels"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"question"}},{"kind":"Field","name":{"kind":"Name","value":"resolution"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"result"}},{"kind":"Field","name":{"kind":"Name","value":"source"}}]}},{"kind":"Field","name":{"kind":"Name","value":"resolvedAt"}},{"kind":"Field","name":{"kind":"Name","value":"resolvesAt"}},{"kind":"Field","name":{"kind":"Name","value":"rules"}},{"kind":"Field","name":{"kind":"Name","value":"rules2"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"venueEventId"}},{"kind":"Field","name":{"kind":"Name","value":"venueMarketId"}},{"kind":"Field","name":{"kind":"Name","value":"venueMarketSlug"}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeIds"}},{"kind":"Field","name":{"kind":"Name","value":"winningOutcomeId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceCollateral"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"sortKey"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"tradeType"}},{"kind":"Field","name":{"kind":"Name","value":"traderId"}},{"kind":"Field","name":{"kind":"Name","value":"transactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"transactionId"}}]}}]}}]}}]} as unknown as DocumentNode; -export const TokenDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"Token"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}}]} as unknown as DocumentNode; +export const TokenDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"Token"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}}]} as unknown as DocumentNode; export const TokenLifecycleEventsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"TokenLifecycleEvents"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"cursor"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"query"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenLifecycleEventsQueryInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokenLifecycleEvents"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"cursor"},"value":{"kind":"Variable","name":{"kind":"Name","value":"cursor"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"query"},"value":{"kind":"Variable","name":{"kind":"Name","value":"query"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cursor"}},{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockHash"}},{"kind":"Field","name":{"kind":"Name","value":"blockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TokenBurnEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TokenMintEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"eventType"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"logIndex"}},{"kind":"Field","name":{"kind":"Name","value":"maker"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"transactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"transactionIndex"}}]}}]}}]}}]} as unknown as DocumentNode; export const TokenSparklinesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"TokenSparklines"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenSparklineInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokenSparklines"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"attribute"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"resolution"}},{"kind":"Field","name":{"kind":"Name","value":"sparkline"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}}]}}]}}]} as unknown as DocumentNode; export const TokenTopTradersDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"TokenTopTraders"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenTopTradersInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokenTopTraders"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amountBoughtUsd"}},{"kind":"Field","name":{"kind":"Name","value":"amountSoldUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"firstTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"realizedProfitUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"singleTokenAcquisitionCostUsd"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAmountBought"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAmountSold"}},{"kind":"Field","name":{"kind":"Name","value":"tokenBalance"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"walletAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"offset"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"tradingPeriod"}}]}}]}}]} as unknown as DocumentNode; -export const TokensDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"Tokens"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"ids"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenInput"}}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokens"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"ids"},"value":{"kind":"Variable","name":{"kind":"Name","value":"ids"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}}]} as unknown as DocumentNode; +export const TokensDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"Tokens"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"ids"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenInput"}}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokens"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"ids"},"value":{"kind":"Variable","name":{"kind":"Name","value":"ids"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}}]} as unknown as DocumentNode; export const Top10HoldersPercentDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"Top10HoldersPercent"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"tokenId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"tokenId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tokenId"}}}]}]}}]} as unknown as DocumentNode; export const WalletAggregateBackfillStateDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"WalletAggregateBackfillState"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WalletAggregateBackfillStateInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"walletAggregateBackfillState"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"walletAddress"}}]}}]}}]} as unknown as DocumentNode; export const WalletChartDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"WalletChart"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WalletChartInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"walletChart"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"backfillState"}},{"kind":"Field","name":{"kind":"Name","value":"data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"realizedProfitUsd"}},{"kind":"Field","name":{"kind":"Name","value":"resolution"}},{"kind":"Field","name":{"kind":"Name","value":"swaps"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsdAll"}}]}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"range"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}},{"kind":"Field","name":{"kind":"Name","value":"resolution"}},{"kind":"Field","name":{"kind":"Name","value":"walletAddress"}}]}}]}}]} as unknown as DocumentNode; -export const OnBalanceUpdatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnBalanceUpdated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"walletAddress"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onBalanceUpdated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"walletAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"walletAddress"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"balance"}},{"kind":"Field","name":{"kind":"Name","value":"balanceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"firstHeldTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"shiftedBalance"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"tokenPriceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"walletId"}}]}}]}}]} as unknown as DocumentNode; -export const OnBarsUpdatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnBarsUpdated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"pairId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"quoteToken"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"QuoteToken"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onBarsUpdated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"pairId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"pairId"}}},{"kind":"Argument","name":{"kind":"Name","value":"quoteToken"},"value":{"kind":"Variable","name":{"kind":"Name","value":"quoteToken"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"aggregates"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"r1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r1D"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r1S"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r5"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r5S"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r7D"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r15"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r15S"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r30"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r30S"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r60"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r240"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r720"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"eventSortKey"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pairAddress"}},{"kind":"Field","name":{"kind":"Name","value":"pairId"}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"quoteTokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"statsType"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}}]}}]}}]} as unknown as DocumentNode; +export const OnBalanceUpdatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnBalanceUpdated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"walletAddress"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onBalanceUpdated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"walletAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"walletAddress"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"balance"}},{"kind":"Field","name":{"kind":"Name","value":"balanceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"firstHeldTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"shiftedBalance"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"tokenPriceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"walletId"}}]}}]}}]} as unknown as DocumentNode; +export const OnBarsUpdatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnBarsUpdated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"commitmentLevel"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"BarCommitmentLevel"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"pairId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"quoteToken"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"QuoteToken"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onBarsUpdated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"commitmentLevel"},"value":{"kind":"Variable","name":{"kind":"Name","value":"commitmentLevel"}}},{"kind":"Argument","name":{"kind":"Name","value":"pairId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"pairId"}}},{"kind":"Argument","name":{"kind":"Name","value":"quoteToken"},"value":{"kind":"Variable","name":{"kind":"Name","value":"quoteToken"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"aggregates"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"r1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r1D"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r1S"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r5"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r5S"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r7D"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r15"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r15S"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r30"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r30S"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r60"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r240"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r720"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"commitmentLevel"}},{"kind":"Field","name":{"kind":"Name","value":"eventSortKey"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pairAddress"}},{"kind":"Field","name":{"kind":"Name","value":"pairId"}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"quoteTokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"statsType"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}}]}}]}}]} as unknown as DocumentNode; export const OnDetailedPredictionEventStatsUpdatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnDetailedPredictionEventStatsUpdated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"eventId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onDetailedPredictionEventStatsUpdated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"eventId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"eventId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeStats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"venueVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"eventId"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"lifecycle"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ageSeconds"}},{"kind":"Field","name":{"kind":"Name","value":"expectedLifespanSeconds"}},{"kind":"Field","name":{"kind":"Name","value":"isResolved"}},{"kind":"Field","name":{"kind":"Name","value":"timeToResolutionSeconds"}},{"kind":"Field","name":{"kind":"Name","value":"winningOutcomeId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"relevanceScores"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"score1"}},{"kind":"Field","name":{"kind":"Name","value":"score1w"}},{"kind":"Field","name":{"kind":"Name","value":"score4"}},{"kind":"Field","name":{"kind":"Name","value":"score5m"}},{"kind":"Field","name":{"kind":"Name","value":"score12"}},{"kind":"Field","name":{"kind":"Name","value":"score24"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsDay1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeStats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"venueVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"buySell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"scores"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"competitive"}},{"kind":"Field","name":{"kind":"Name","value":"relevance"}},{"kind":"Field","name":{"kind":"Name","value":"trending"}}]}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsHour1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeStats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"venueVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"buySell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"scores"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"competitive"}},{"kind":"Field","name":{"kind":"Name","value":"relevance"}},{"kind":"Field","name":{"kind":"Name","value":"trending"}}]}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsHour4"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeStats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"venueVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"buySell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"scores"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"competitive"}},{"kind":"Field","name":{"kind":"Name","value":"relevance"}},{"kind":"Field","name":{"kind":"Name","value":"trending"}}]}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsHour12"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeStats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"venueVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"buySell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"scores"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"competitive"}},{"kind":"Field","name":{"kind":"Name","value":"relevance"}},{"kind":"Field","name":{"kind":"Name","value":"trending"}}]}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsMin5"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeStats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"venueVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"buySell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"scores"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"competitive"}},{"kind":"Field","name":{"kind":"Name","value":"relevance"}},{"kind":"Field","name":{"kind":"Name","value":"trending"}}]}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsWeek1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeStats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"venueVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"buySell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"scores"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"competitive"}},{"kind":"Field","name":{"kind":"Name","value":"relevance"}},{"kind":"Field","name":{"kind":"Name","value":"trending"}}]}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"trendingScores"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"score1"}},{"kind":"Field","name":{"kind":"Name","value":"score1w"}},{"kind":"Field","name":{"kind":"Name","value":"score4"}},{"kind":"Field","name":{"kind":"Name","value":"score5m"}},{"kind":"Field","name":{"kind":"Name","value":"score12"}},{"kind":"Field","name":{"kind":"Name","value":"score24"}}]}}]}}]}}]} as unknown as DocumentNode; export const OnDetailedPredictionMarketStatsUpdatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnDetailedPredictionMarketStatsUpdated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"marketId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onDetailedPredictionMarketStatsUpdated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"marketId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"marketId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeStats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"venueVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"competitiveScores"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"score1"}},{"kind":"Field","name":{"kind":"Name","value":"score1w"}},{"kind":"Field","name":{"kind":"Name","value":"score4"}},{"kind":"Field","name":{"kind":"Name","value":"score5m"}},{"kind":"Field","name":{"kind":"Name","value":"score12"}},{"kind":"Field","name":{"kind":"Name","value":"score24"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"lifecycle"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ageSeconds"}},{"kind":"Field","name":{"kind":"Name","value":"expectedLifespanSeconds"}},{"kind":"Field","name":{"kind":"Name","value":"isResolved"}},{"kind":"Field","name":{"kind":"Name","value":"timeToResolutionSeconds"}},{"kind":"Field","name":{"kind":"Name","value":"winningOutcomeId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"marketId"}},{"kind":"Field","name":{"kind":"Name","value":"relevanceScores"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"score1"}},{"kind":"Field","name":{"kind":"Name","value":"score1w"}},{"kind":"Field","name":{"kind":"Name","value":"score4"}},{"kind":"Field","name":{"kind":"Name","value":"score5m"}},{"kind":"Field","name":{"kind":"Name","value":"score12"}},{"kind":"Field","name":{"kind":"Name","value":"score24"}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsDay1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeStats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"venueVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome0Stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buySell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"price"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"depth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askDepth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidDepth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"orderbook"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ask"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"bid"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buysChange"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange"}},{"kind":"Field","name":{"kind":"Name","value":"priceRange"}},{"kind":"Field","name":{"kind":"Name","value":"sellsChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeSharesChange"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome1Stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buySell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"price"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"depth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askDepth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidDepth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"orderbook"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ask"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"bid"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buysChange"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange"}},{"kind":"Field","name":{"kind":"Name","value":"priceRange"}},{"kind":"Field","name":{"kind":"Name","value":"sellsChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeSharesChange"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"scores"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"competitive"}},{"kind":"Field","name":{"kind":"Name","value":"relevance"}},{"kind":"Field","name":{"kind":"Name","value":"trending"}}]}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsHour1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeStats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"venueVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome0Stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buySell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"price"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"depth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askDepth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidDepth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"orderbook"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ask"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"bid"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buysChange"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange"}},{"kind":"Field","name":{"kind":"Name","value":"priceRange"}},{"kind":"Field","name":{"kind":"Name","value":"sellsChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeSharesChange"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome1Stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buySell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"price"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"depth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askDepth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidDepth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"orderbook"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ask"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"bid"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buysChange"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange"}},{"kind":"Field","name":{"kind":"Name","value":"priceRange"}},{"kind":"Field","name":{"kind":"Name","value":"sellsChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeSharesChange"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"scores"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"competitive"}},{"kind":"Field","name":{"kind":"Name","value":"relevance"}},{"kind":"Field","name":{"kind":"Name","value":"trending"}}]}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsHour4"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeStats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"venueVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome0Stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buySell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"price"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"depth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askDepth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidDepth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"orderbook"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ask"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"bid"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buysChange"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange"}},{"kind":"Field","name":{"kind":"Name","value":"priceRange"}},{"kind":"Field","name":{"kind":"Name","value":"sellsChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeSharesChange"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome1Stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buySell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"price"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"depth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askDepth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidDepth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"orderbook"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ask"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"bid"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buysChange"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange"}},{"kind":"Field","name":{"kind":"Name","value":"priceRange"}},{"kind":"Field","name":{"kind":"Name","value":"sellsChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeSharesChange"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"scores"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"competitive"}},{"kind":"Field","name":{"kind":"Name","value":"relevance"}},{"kind":"Field","name":{"kind":"Name","value":"trending"}}]}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsHour12"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeStats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"venueVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome0Stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buySell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"price"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"depth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askDepth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidDepth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"orderbook"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ask"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"bid"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buysChange"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange"}},{"kind":"Field","name":{"kind":"Name","value":"priceRange"}},{"kind":"Field","name":{"kind":"Name","value":"sellsChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeSharesChange"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome1Stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buySell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"price"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"depth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askDepth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidDepth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"orderbook"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ask"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"bid"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buysChange"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange"}},{"kind":"Field","name":{"kind":"Name","value":"priceRange"}},{"kind":"Field","name":{"kind":"Name","value":"sellsChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeSharesChange"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"scores"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"competitive"}},{"kind":"Field","name":{"kind":"Name","value":"relevance"}},{"kind":"Field","name":{"kind":"Name","value":"trending"}}]}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsMin5"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeStats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"venueVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome0Stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buySell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"price"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"depth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askDepth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidDepth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"orderbook"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ask"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"bid"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buysChange"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange"}},{"kind":"Field","name":{"kind":"Name","value":"priceRange"}},{"kind":"Field","name":{"kind":"Name","value":"sellsChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeSharesChange"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome1Stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buySell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"price"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"depth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askDepth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidDepth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"orderbook"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ask"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"bid"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buysChange"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange"}},{"kind":"Field","name":{"kind":"Name","value":"priceRange"}},{"kind":"Field","name":{"kind":"Name","value":"sellsChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeSharesChange"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"scores"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"competitive"}},{"kind":"Field","name":{"kind":"Name","value":"relevance"}},{"kind":"Field","name":{"kind":"Name","value":"trending"}}]}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsWeek1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeStats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"venueVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"openInterest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome0Stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buySell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"price"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"depth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askDepth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidDepth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"orderbook"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ask"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"bid"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buysChange"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange"}},{"kind":"Field","name":{"kind":"Name","value":"priceRange"}},{"kind":"Field","name":{"kind":"Name","value":"sellsChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeSharesChange"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome1Stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buySell"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"}}]}},{"kind":"Field","name":{"kind":"Name","value":"core"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"price"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"shares"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"depth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askDepth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidDepth"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"orderbook"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ask"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"bid"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"low"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ct"}},{"kind":"Field","name":{"kind":"Name","value":"usd"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buysChange"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange"}},{"kind":"Field","name":{"kind":"Name","value":"priceRange"}},{"kind":"Field","name":{"kind":"Name","value":"sellsChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeSharesChange"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"scores"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"competitive"}},{"kind":"Field","name":{"kind":"Name","value":"relevance"}},{"kind":"Field","name":{"kind":"Name","value":"trending"}}]}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsChange"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidityChange"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestChange"}},{"kind":"Field","name":{"kind":"Name","value":"tradesChange"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTradersChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"trendingScores"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"score1"}},{"kind":"Field","name":{"kind":"Name","value":"score1w"}},{"kind":"Field","name":{"kind":"Name","value":"score4"}},{"kind":"Field","name":{"kind":"Name","value":"score5m"}},{"kind":"Field","name":{"kind":"Name","value":"score12"}},{"kind":"Field","name":{"kind":"Name","value":"score24"}}]}}]}}]}}]} as unknown as DocumentNode; export const OnDetailedStatsUpdatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnDetailedStatsUpdated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"pairId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"tokenOfInterest"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenOfInterest"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onDetailedStatsUpdated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"pairId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"pairId"}}},{"kind":"Argument","name":{"kind":"Name","value":"tokenOfInterest"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tokenOfInterest"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"pairId"}},{"kind":"Field","name":{"kind":"Name","value":"statsType"}},{"kind":"Field","name":{"kind":"Name","value":"stats_day1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"endTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"windowSize"}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_hour1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"endTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"windowSize"}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_hour4"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"endTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"windowSize"}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_hour12"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"endTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"windowSize"}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_min5"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"endTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"windowSize"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenOfInterest"}}]}}]}}]} as unknown as DocumentNode; export const OnDetailedTokenStatsUpdatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnDetailedTokenStatsUpdated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"tokenId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onDetailedTokenStatsUpdated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"tokenId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tokenId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bucketCount"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransactionAt"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"queryTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"statsType"}},{"kind":"Field","name":{"kind":"Name","value":"stats_day1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_hour1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_hour4"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_hour12"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats_min5"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"duration"}},{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}},{"kind":"Field","name":{"kind":"Name","value":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sells"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"traders"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"statsUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowest"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamps"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"end"}},{"kind":"Field","name":{"kind":"Name","value":"start"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}}]}}]}}]} as unknown as DocumentNode; export const OnEventLabelCreatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnEventLabelCreated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onEventLabelCreated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"FrontRunLabelData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"index"}},{"kind":"Field","name":{"kind":"Name","value":"token0DrainedAmount"}},{"kind":"Field","name":{"kind":"Name","value":"token1DrainedAmount"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SandwichedLabelData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"token0DrainedAmountSandwich"},"name":{"kind":"Name","value":"token0DrainedAmount"}},{"kind":"Field","alias":{"kind":"Name","value":"token1DrainedAmountSandwich"},"name":{"kind":"Name","value":"token1DrainedAmount"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"logIndex"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"transactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"transactionIndex"}}]}}]}}]} as unknown as DocumentNode; -export const OnEventsCreatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnEventsCreated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"address"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"quoteToken"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"QuoteToken"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onEventsCreated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"address"},"value":{"kind":"Variable","name":{"kind":"Name","value":"address"}}},{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}},{"kind":"Argument","name":{"kind":"Name","value":"networkId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}}},{"kind":"Argument","name":{"kind":"Name","value":"quoteToken"},"value":{"kind":"Variable","name":{"kind":"Name","value":"quoteToken"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"events"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"baseTokenPrice"}},{"kind":"Field","name":{"kind":"Name","value":"blockHash"}},{"kind":"Field","name":{"kind":"Name","value":"blockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"BurnEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"tickLower"}},{"kind":"Field","name":{"kind":"Name","value":"tickUpper"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"MintEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"tickLower"}},{"kind":"Field","name":{"kind":"Name","value":"tickUpper"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PoolBalanceChangedEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity0"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity1"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeeAmount0"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeeAmount1"}},{"kind":"Field","name":{"kind":"Name","value":"sender"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SwapEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0In"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Out"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1In"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Out"}},{"kind":"Field","name":{"kind":"Name","value":"amountNonLiquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"priceBaseToken"}},{"kind":"Field","name":{"kind":"Name","value":"priceBaseTokenTotal"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsdTotal"}},{"kind":"Field","name":{"kind":"Name","value":"tick"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"eventDisplayType"}},{"kind":"Field","name":{"kind":"Name","value":"eventType"}},{"kind":"Field","name":{"kind":"Name","value":"feeData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"builderTipNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"dynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"estimatedPoolFee"}},{"kind":"Field","name":{"kind":"Name","value":"gasUsed"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeAmountRaw"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeRateRaw"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"supplementalFeeData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpAmmCashbackFeeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cashbackAmountLamports"}},{"kind":"Field","name":{"kind":"Name","value":"cashbackFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpCashbackFeeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cashbackAmountLamports"}},{"kind":"Field","name":{"kind":"Name","value":"cashbackFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"txEventCount"}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"labels"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"sandwich"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"sandwichType"}},{"kind":"Field","name":{"kind":"Name","value":"token0DrainedAmount"}},{"kind":"Field","name":{"kind":"Name","value":"token1DrainedAmount"}}]}},{"kind":"Field","name":{"kind":"Name","value":"washtrade"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"logIndex"}},{"kind":"Field","name":{"kind":"Name","value":"maker"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"token0Address"}},{"kind":"Field","name":{"kind":"Name","value":"token0PoolValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token0SwapValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token0ValueBase"}},{"kind":"Field","name":{"kind":"Name","value":"token1Address"}},{"kind":"Field","name":{"kind":"Name","value":"token1PoolValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token1SwapValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token1ValueBase"}},{"kind":"Field","name":{"kind":"Name","value":"transactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"transactionIndex"}},{"kind":"Field","name":{"kind":"Name","value":"walletAge"}},{"kind":"Field","name":{"kind":"Name","value":"walletLabels"}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}}]}}]}}]} as unknown as DocumentNode; -export const OnEventsCreatedByMakerDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnEventsCreatedByMaker"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"OnEventsCreatedByMakerInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onEventsCreatedByMaker"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"events"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"baseTokenPrice"}},{"kind":"Field","name":{"kind":"Name","value":"blockHash"}},{"kind":"Field","name":{"kind":"Name","value":"blockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"BurnEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"tickLower"}},{"kind":"Field","name":{"kind":"Name","value":"tickUpper"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"MintEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"tickLower"}},{"kind":"Field","name":{"kind":"Name","value":"tickUpper"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PoolBalanceChangedEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity0"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity1"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeeAmount0"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeeAmount1"}},{"kind":"Field","name":{"kind":"Name","value":"sender"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SwapEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0In"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Out"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1In"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Out"}},{"kind":"Field","name":{"kind":"Name","value":"amountNonLiquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"priceBaseToken"}},{"kind":"Field","name":{"kind":"Name","value":"priceBaseTokenTotal"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsdTotal"}},{"kind":"Field","name":{"kind":"Name","value":"tick"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"eventDisplayType"}},{"kind":"Field","name":{"kind":"Name","value":"eventType"}},{"kind":"Field","name":{"kind":"Name","value":"feeData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"builderTipNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"dynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"estimatedPoolFee"}},{"kind":"Field","name":{"kind":"Name","value":"gasUsed"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeAmountRaw"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeRateRaw"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"supplementalFeeData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpAmmCashbackFeeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cashbackAmountLamports"}},{"kind":"Field","name":{"kind":"Name","value":"cashbackFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpCashbackFeeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cashbackAmountLamports"}},{"kind":"Field","name":{"kind":"Name","value":"cashbackFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"txEventCount"}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"labels"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"sandwich"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"sandwichType"}},{"kind":"Field","name":{"kind":"Name","value":"token0DrainedAmount"}},{"kind":"Field","name":{"kind":"Name","value":"token1DrainedAmount"}}]}},{"kind":"Field","name":{"kind":"Name","value":"washtrade"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"logIndex"}},{"kind":"Field","name":{"kind":"Name","value":"maker"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"token0Address"}},{"kind":"Field","name":{"kind":"Name","value":"token0PoolValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token0SwapValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token0ValueBase"}},{"kind":"Field","name":{"kind":"Name","value":"token1Address"}},{"kind":"Field","name":{"kind":"Name","value":"token1PoolValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token1SwapValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token1ValueBase"}},{"kind":"Field","name":{"kind":"Name","value":"transactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"transactionIndex"}},{"kind":"Field","name":{"kind":"Name","value":"walletAge"}},{"kind":"Field","name":{"kind":"Name","value":"walletLabels"}}]}},{"kind":"Field","name":{"kind":"Name","value":"makerAddress"}}]}}]}}]} as unknown as DocumentNode; -export const OnFilterTokenUpdatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnFilterTokenUpdated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"excludeTokens"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filters"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenFilters"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"offset"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"phrase"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"rankings"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenRanking"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenPairStatisticsType"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"tokens"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"updatePeriod"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"useAggregatedStats"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onFilterTokensUpdated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"excludeTokens"},"value":{"kind":"Variable","name":{"kind":"Name","value":"excludeTokens"}}},{"kind":"Argument","name":{"kind":"Name","value":"filters"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filters"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"Variable","name":{"kind":"Name","value":"offset"}}},{"kind":"Argument","name":{"kind":"Name","value":"phrase"},"value":{"kind":"Variable","name":{"kind":"Name","value":"phrase"}}},{"kind":"Argument","name":{"kind":"Name","value":"rankings"},"value":{"kind":"Variable","name":{"kind":"Name","value":"rankings"}}},{"kind":"Argument","name":{"kind":"Name","value":"statsType"},"value":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}}},{"kind":"Argument","name":{"kind":"Name","value":"tokens"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tokens"}}},{"kind":"Argument","name":{"kind":"Name","value":"updatePeriod"},"value":{"kind":"Variable","name":{"kind":"Name","value":"updatePeriod"}}},{"kind":"Argument","name":{"kind":"Name","value":"useAggregatedStats"},"value":{"kind":"Variable","name":{"kind":"Name","value":"useAggregatedStats"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"updates"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bundlerCount"}},{"kind":"Field","name":{"kind":"Name","value":"bundlerHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount1"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount4"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount5m"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount12"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount24"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume1"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume4"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume5m"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume12"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume24"}},{"kind":"Field","name":{"kind":"Name","value":"change1"}},{"kind":"Field","name":{"kind":"Name","value":"change4"}},{"kind":"Field","name":{"kind":"Name","value":"change5m"}},{"kind":"Field","name":{"kind":"Name","value":"change12"}},{"kind":"Field","name":{"kind":"Name","value":"change24"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingMarketCap"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"devHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"high1"}},{"kind":"Field","name":{"kind":"Name","value":"high4"}},{"kind":"Field","name":{"kind":"Name","value":"high5m"}},{"kind":"Field","name":{"kind":"Name","value":"high12"}},{"kind":"Field","name":{"kind":"Name","value":"high24"}},{"kind":"Field","name":{"kind":"Name","value":"holders"}},{"kind":"Field","name":{"kind":"Name","value":"insiderCount"}},{"kind":"Field","name":{"kind":"Name","value":"insiderHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransaction"}},{"kind":"Field","name":{"kind":"Name","value":"liquidPair"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeHash"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"protocolData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ArenaTradeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"creator"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UniswapV4Data"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isDynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"isToken0NetworkToken"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"uniswapV4HookAddress"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tickSpacing"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token0Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"token1Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"virtualPooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidPairLiquidity"}},{"kind":"Field","name":{"kind":"Name","value":"liquidPairPriceUSD"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"low1"}},{"kind":"Field","name":{"kind":"Name","value":"low4"}},{"kind":"Field","name":{"kind":"Name","value":"low5m"}},{"kind":"Field","name":{"kind":"Name","value":"low12"}},{"kind":"Field","name":{"kind":"Name","value":"low24"}},{"kind":"Field","name":{"kind":"Name","value":"marketCap"}},{"kind":"Field","name":{"kind":"Name","value":"pair"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeHash"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"protocolData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ArenaTradeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"creator"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UniswapV4Data"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isDynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"isToken0NetworkToken"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"uniswapV4HookAddress"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tickSpacing"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token0Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"token1Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"virtualPooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"potentialScamReasons"}},{"kind":"Field","name":{"kind":"Name","value":"priceUSD"}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount1"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount4"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount5m"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount12"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount24"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume1"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume4"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume5m"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume12"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume24"}},{"kind":"Field","name":{"kind":"Name","value":"sniperCount"}},{"kind":"Field","name":{"kind":"Name","value":"sniperHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"swapPct1dOldWallet"}},{"kind":"Field","name":{"kind":"Name","value":"swapPct7dOldWallet"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}},{"kind":"Field","name":{"kind":"Name","value":"trendingScore"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount1"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount4"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount5m"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount12"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount24"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys1"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys4"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys5m"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys12"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys24"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells1"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells4"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells5m"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells12"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells24"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions1"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions4"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions5m"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions12"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions24"}},{"kind":"Field","name":{"kind":"Name","value":"volume1"}},{"kind":"Field","name":{"kind":"Name","value":"volume4"}},{"kind":"Field","name":{"kind":"Name","value":"volume5m"}},{"kind":"Field","name":{"kind":"Name","value":"volume12"}},{"kind":"Field","name":{"kind":"Name","value":"volume24"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange1"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange4"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange12"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange24"}},{"kind":"Field","name":{"kind":"Name","value":"walletAgeAvg"}},{"kind":"Field","name":{"kind":"Name","value":"walletAgeStd"}}]}}]}}]}}]} as unknown as DocumentNode; -export const OnFilterTokensUpdatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnFilterTokensUpdated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"excludeTokens"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filters"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenFilters"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"offset"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"phrase"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"rankings"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenRanking"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenPairStatisticsType"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"tokens"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"updatePeriod"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"useAggregatedStats"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onFilterTokensUpdated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"excludeTokens"},"value":{"kind":"Variable","name":{"kind":"Name","value":"excludeTokens"}}},{"kind":"Argument","name":{"kind":"Name","value":"filters"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filters"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"Variable","name":{"kind":"Name","value":"offset"}}},{"kind":"Argument","name":{"kind":"Name","value":"phrase"},"value":{"kind":"Variable","name":{"kind":"Name","value":"phrase"}}},{"kind":"Argument","name":{"kind":"Name","value":"rankings"},"value":{"kind":"Variable","name":{"kind":"Name","value":"rankings"}}},{"kind":"Argument","name":{"kind":"Name","value":"statsType"},"value":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}}},{"kind":"Argument","name":{"kind":"Name","value":"tokens"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tokens"}}},{"kind":"Argument","name":{"kind":"Name","value":"updatePeriod"},"value":{"kind":"Variable","name":{"kind":"Name","value":"updatePeriod"}}},{"kind":"Argument","name":{"kind":"Name","value":"useAggregatedStats"},"value":{"kind":"Variable","name":{"kind":"Name","value":"useAggregatedStats"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"updates"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees1"}},{"kind":"Field","name":{"kind":"Name","value":"baseFees4"}},{"kind":"Field","name":{"kind":"Name","value":"baseFees5m"}},{"kind":"Field","name":{"kind":"Name","value":"baseFees12"}},{"kind":"Field","name":{"kind":"Name","value":"baseFees24"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips1"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips4"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips5m"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips12"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips24"}},{"kind":"Field","name":{"kind":"Name","value":"bundlerCount"}},{"kind":"Field","name":{"kind":"Name","value":"bundlerHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount1"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount4"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount5m"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount12"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount24"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume1"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume4"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume5m"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume12"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume24"}},{"kind":"Field","name":{"kind":"Name","value":"change1"}},{"kind":"Field","name":{"kind":"Name","value":"change4"}},{"kind":"Field","name":{"kind":"Name","value":"change5m"}},{"kind":"Field","name":{"kind":"Name","value":"change12"}},{"kind":"Field","name":{"kind":"Name","value":"change24"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingMarketCap"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"devHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"feeToVolumeRatio1"}},{"kind":"Field","name":{"kind":"Name","value":"feeToVolumeRatio4"}},{"kind":"Field","name":{"kind":"Name","value":"feeToVolumeRatio5m"}},{"kind":"Field","name":{"kind":"Name","value":"feeToVolumeRatio12"}},{"kind":"Field","name":{"kind":"Name","value":"feeToVolumeRatio24"}},{"kind":"Field","name":{"kind":"Name","value":"high1"}},{"kind":"Field","name":{"kind":"Name","value":"high4"}},{"kind":"Field","name":{"kind":"Name","value":"high5m"}},{"kind":"Field","name":{"kind":"Name","value":"high12"}},{"kind":"Field","name":{"kind":"Name","value":"high24"}},{"kind":"Field","name":{"kind":"Name","value":"holders"}},{"kind":"Field","name":{"kind":"Name","value":"insiderCount"}},{"kind":"Field","name":{"kind":"Name","value":"insiderHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees1"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees4"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees5m"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees12"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees24"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransaction"}},{"kind":"Field","name":{"kind":"Name","value":"liquidPair"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeHash"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"protocolData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ArenaTradeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"creator"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UniswapV4Data"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isDynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"isToken0NetworkToken"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"uniswapV4HookAddress"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tickSpacing"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token0Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"token1Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"virtualPooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidPairLiquidity"}},{"kind":"Field","name":{"kind":"Name","value":"liquidPairPriceUSD"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"low1"}},{"kind":"Field","name":{"kind":"Name","value":"low4"}},{"kind":"Field","name":{"kind":"Name","value":"low5m"}},{"kind":"Field","name":{"kind":"Name","value":"low12"}},{"kind":"Field","name":{"kind":"Name","value":"low24"}},{"kind":"Field","name":{"kind":"Name","value":"marketCap"}},{"kind":"Field","name":{"kind":"Name","value":"pair"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeHash"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"protocolData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ArenaTradeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"creator"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UniswapV4Data"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isDynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"isToken0NetworkToken"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"uniswapV4HookAddress"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tickSpacing"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token0Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"token1Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"virtualPooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"poolFees1"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees4"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees5m"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees12"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees24"}},{"kind":"Field","name":{"kind":"Name","value":"potentialScamReasons"}},{"kind":"Field","name":{"kind":"Name","value":"priceUSD"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees1"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees4"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees5m"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees12"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees24"}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount1"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount4"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount5m"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount12"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount24"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume1"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume4"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume5m"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume12"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume24"}},{"kind":"Field","name":{"kind":"Name","value":"sniperCount"}},{"kind":"Field","name":{"kind":"Name","value":"sniperHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"swapPct1dOldWallet"}},{"kind":"Field","name":{"kind":"Name","value":"swapPct7dOldWallet"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}},{"kind":"Field","name":{"kind":"Name","value":"totalFees1"}},{"kind":"Field","name":{"kind":"Name","value":"totalFees4"}},{"kind":"Field","name":{"kind":"Name","value":"totalFees5m"}},{"kind":"Field","name":{"kind":"Name","value":"totalFees12"}},{"kind":"Field","name":{"kind":"Name","value":"totalFees24"}},{"kind":"Field","name":{"kind":"Name","value":"trendingScore"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount1"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount4"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount5m"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount12"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount24"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys1"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys4"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys5m"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys12"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys24"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells1"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells4"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells5m"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells12"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells24"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions1"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions4"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions5m"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions12"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions24"}},{"kind":"Field","name":{"kind":"Name","value":"volume1"}},{"kind":"Field","name":{"kind":"Name","value":"volume4"}},{"kind":"Field","name":{"kind":"Name","value":"volume5m"}},{"kind":"Field","name":{"kind":"Name","value":"volume12"}},{"kind":"Field","name":{"kind":"Name","value":"volume24"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange1"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange4"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange12"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange24"}},{"kind":"Field","name":{"kind":"Name","value":"walletAgeAvg"}},{"kind":"Field","name":{"kind":"Name","value":"walletAgeStd"}}]}}]}}]}}]} as unknown as DocumentNode; -export const OnHoldersUpdatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnHoldersUpdated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"tokenId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onHoldersUpdated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"tokenId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tokenId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"balances"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"balance"}},{"kind":"Field","name":{"kind":"Name","value":"balanceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"firstHeldTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"shiftedBalance"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"tokenPriceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"walletId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"holders"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}}]}}]}}]} as unknown as DocumentNode; +export const OnEventsCreatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnEventsCreated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"address"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"commitmentLevel"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EventCommitmentLevel"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"quoteToken"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"QuoteToken"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onEventsCreated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"address"},"value":{"kind":"Variable","name":{"kind":"Name","value":"address"}}},{"kind":"Argument","name":{"kind":"Name","value":"commitmentLevel"},"value":{"kind":"Variable","name":{"kind":"Name","value":"commitmentLevel"}}},{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}},{"kind":"Argument","name":{"kind":"Name","value":"networkId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}}},{"kind":"Argument","name":{"kind":"Name","value":"quoteToken"},"value":{"kind":"Variable","name":{"kind":"Name","value":"quoteToken"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"events"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"baseTokenPrice"}},{"kind":"Field","name":{"kind":"Name","value":"blockHash"}},{"kind":"Field","name":{"kind":"Name","value":"blockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"commitmentLevel"}},{"kind":"Field","name":{"kind":"Name","value":"data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"BurnEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"tickLower"}},{"kind":"Field","name":{"kind":"Name","value":"tickUpper"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"MintEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"tickLower"}},{"kind":"Field","name":{"kind":"Name","value":"tickUpper"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PoolBalanceChangedEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity0"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity1"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeeAmount0"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeeAmount1"}},{"kind":"Field","name":{"kind":"Name","value":"sender"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SwapEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0In"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Out"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1In"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Out"}},{"kind":"Field","name":{"kind":"Name","value":"amountNonLiquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"priceBaseToken"}},{"kind":"Field","name":{"kind":"Name","value":"priceBaseTokenTotal"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsdTotal"}},{"kind":"Field","name":{"kind":"Name","value":"tick"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"eventDisplayType"}},{"kind":"Field","name":{"kind":"Name","value":"eventType"}},{"kind":"Field","name":{"kind":"Name","value":"feeData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"builderTipNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"dynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"estimatedPoolFee"}},{"kind":"Field","name":{"kind":"Name","value":"gasUsed"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeAmountRaw"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeRateRaw"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"supplementalFeeData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpAmmCashbackFeeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cashbackAmountLamports"}},{"kind":"Field","name":{"kind":"Name","value":"cashbackFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpCashbackFeeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cashbackAmountLamports"}},{"kind":"Field","name":{"kind":"Name","value":"cashbackFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"txEventCount"}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"labels"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"sandwich"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"sandwichType"}},{"kind":"Field","name":{"kind":"Name","value":"token0DrainedAmount"}},{"kind":"Field","name":{"kind":"Name","value":"token1DrainedAmount"}}]}},{"kind":"Field","name":{"kind":"Name","value":"washtrade"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"logIndex"}},{"kind":"Field","name":{"kind":"Name","value":"maker"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"supplementalIndex"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"token0Address"}},{"kind":"Field","name":{"kind":"Name","value":"token0PoolValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token0SwapValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token0ValueBase"}},{"kind":"Field","name":{"kind":"Name","value":"token1Address"}},{"kind":"Field","name":{"kind":"Name","value":"token1PoolValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token1SwapValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token1ValueBase"}},{"kind":"Field","name":{"kind":"Name","value":"transactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"transactionIndex"}},{"kind":"Field","name":{"kind":"Name","value":"walletAge"}},{"kind":"Field","name":{"kind":"Name","value":"walletLabels"}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}}]}}]}}]} as unknown as DocumentNode; +export const OnEventsCreatedByMakerDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnEventsCreatedByMaker"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"commitmentLevel"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EventCommitmentLevel"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"OnEventsCreatedByMakerInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onEventsCreatedByMaker"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"commitmentLevel"},"value":{"kind":"Variable","name":{"kind":"Name","value":"commitmentLevel"}}},{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"events"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"baseTokenPrice"}},{"kind":"Field","name":{"kind":"Name","value":"blockHash"}},{"kind":"Field","name":{"kind":"Name","value":"blockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"commitmentLevel"}},{"kind":"Field","name":{"kind":"Name","value":"data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"BurnEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"tickLower"}},{"kind":"Field","name":{"kind":"Name","value":"tickUpper"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"MintEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"tickLower"}},{"kind":"Field","name":{"kind":"Name","value":"tickUpper"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PoolBalanceChangedEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity0"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity1"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeeAmount0"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeeAmount1"}},{"kind":"Field","name":{"kind":"Name","value":"sender"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SwapEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0In"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Out"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1In"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Out"}},{"kind":"Field","name":{"kind":"Name","value":"amountNonLiquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"priceBaseToken"}},{"kind":"Field","name":{"kind":"Name","value":"priceBaseTokenTotal"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsdTotal"}},{"kind":"Field","name":{"kind":"Name","value":"tick"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"eventDisplayType"}},{"kind":"Field","name":{"kind":"Name","value":"eventType"}},{"kind":"Field","name":{"kind":"Name","value":"feeData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"builderTipNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"dynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"estimatedPoolFee"}},{"kind":"Field","name":{"kind":"Name","value":"gasUsed"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeAmountRaw"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeRateRaw"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"supplementalFeeData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpAmmCashbackFeeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cashbackAmountLamports"}},{"kind":"Field","name":{"kind":"Name","value":"cashbackFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpCashbackFeeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cashbackAmountLamports"}},{"kind":"Field","name":{"kind":"Name","value":"cashbackFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"txEventCount"}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"labels"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"sandwich"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"sandwichType"}},{"kind":"Field","name":{"kind":"Name","value":"token0DrainedAmount"}},{"kind":"Field","name":{"kind":"Name","value":"token1DrainedAmount"}}]}},{"kind":"Field","name":{"kind":"Name","value":"washtrade"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"logIndex"}},{"kind":"Field","name":{"kind":"Name","value":"maker"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"supplementalIndex"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"token0Address"}},{"kind":"Field","name":{"kind":"Name","value":"token0PoolValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token0SwapValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token0ValueBase"}},{"kind":"Field","name":{"kind":"Name","value":"token1Address"}},{"kind":"Field","name":{"kind":"Name","value":"token1PoolValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token1SwapValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token1ValueBase"}},{"kind":"Field","name":{"kind":"Name","value":"transactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"transactionIndex"}},{"kind":"Field","name":{"kind":"Name","value":"walletAge"}},{"kind":"Field","name":{"kind":"Name","value":"walletLabels"}}]}},{"kind":"Field","name":{"kind":"Name","value":"makerAddress"}}]}}]}}]} as unknown as DocumentNode; +export const OnFilterTokensUpdatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnFilterTokensUpdated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"excludeTokens"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filters"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenFilters"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"limit"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"offset"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"phrase"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"rankings"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenRanking"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"TokenPairStatisticsType"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"tokens"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"updatePeriod"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"useAggregatedStats"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onFilterTokensUpdated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"excludeTokens"},"value":{"kind":"Variable","name":{"kind":"Name","value":"excludeTokens"}}},{"kind":"Argument","name":{"kind":"Name","value":"filters"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filters"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"offset"},"value":{"kind":"Variable","name":{"kind":"Name","value":"offset"}}},{"kind":"Argument","name":{"kind":"Name","value":"phrase"},"value":{"kind":"Variable","name":{"kind":"Name","value":"phrase"}}},{"kind":"Argument","name":{"kind":"Name","value":"rankings"},"value":{"kind":"Variable","name":{"kind":"Name","value":"rankings"}}},{"kind":"Argument","name":{"kind":"Name","value":"statsType"},"value":{"kind":"Variable","name":{"kind":"Name","value":"statsType"}}},{"kind":"Argument","name":{"kind":"Name","value":"tokens"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tokens"}}},{"kind":"Argument","name":{"kind":"Name","value":"updatePeriod"},"value":{"kind":"Variable","name":{"kind":"Name","value":"updatePeriod"}}},{"kind":"Argument","name":{"kind":"Name","value":"useAggregatedStats"},"value":{"kind":"Variable","name":{"kind":"Name","value":"useAggregatedStats"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"updates"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees1"}},{"kind":"Field","name":{"kind":"Name","value":"baseFees4"}},{"kind":"Field","name":{"kind":"Name","value":"baseFees5m"}},{"kind":"Field","name":{"kind":"Name","value":"baseFees12"}},{"kind":"Field","name":{"kind":"Name","value":"baseFees24"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips1"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips4"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips5m"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips12"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips24"}},{"kind":"Field","name":{"kind":"Name","value":"bundlerCount"}},{"kind":"Field","name":{"kind":"Name","value":"bundlerHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount1"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount4"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount5m"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount12"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount24"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume1"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume4"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume5m"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume12"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume24"}},{"kind":"Field","name":{"kind":"Name","value":"change1"}},{"kind":"Field","name":{"kind":"Name","value":"change4"}},{"kind":"Field","name":{"kind":"Name","value":"change5m"}},{"kind":"Field","name":{"kind":"Name","value":"change12"}},{"kind":"Field","name":{"kind":"Name","value":"change24"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingMarketCap"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"devHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"feeToVolumeRatio1"}},{"kind":"Field","name":{"kind":"Name","value":"feeToVolumeRatio4"}},{"kind":"Field","name":{"kind":"Name","value":"feeToVolumeRatio5m"}},{"kind":"Field","name":{"kind":"Name","value":"feeToVolumeRatio12"}},{"kind":"Field","name":{"kind":"Name","value":"feeToVolumeRatio24"}},{"kind":"Field","name":{"kind":"Name","value":"high1"}},{"kind":"Field","name":{"kind":"Name","value":"high4"}},{"kind":"Field","name":{"kind":"Name","value":"high5m"}},{"kind":"Field","name":{"kind":"Name","value":"high12"}},{"kind":"Field","name":{"kind":"Name","value":"high24"}},{"kind":"Field","name":{"kind":"Name","value":"holders"}},{"kind":"Field","name":{"kind":"Name","value":"insiderCount"}},{"kind":"Field","name":{"kind":"Name","value":"insiderHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees1"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees4"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees5m"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees12"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees24"}},{"kind":"Field","name":{"kind":"Name","value":"lastTransaction"}},{"kind":"Field","name":{"kind":"Name","value":"liquidPair"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeHash"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"protocolData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ArenaTradeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"creator"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UniswapV4Data"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isDynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"isToken0NetworkToken"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"uniswapV4HookAddress"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tickSpacing"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token0Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"token1Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"virtualPooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidPairLiquidity"}},{"kind":"Field","name":{"kind":"Name","value":"liquidPairPriceUSD"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"low1"}},{"kind":"Field","name":{"kind":"Name","value":"low4"}},{"kind":"Field","name":{"kind":"Name","value":"low5m"}},{"kind":"Field","name":{"kind":"Name","value":"low12"}},{"kind":"Field","name":{"kind":"Name","value":"low24"}},{"kind":"Field","name":{"kind":"Name","value":"marketCap"}},{"kind":"Field","name":{"kind":"Name","value":"pair"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeHash"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"protocolData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"ArenaTradeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"creator"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UniswapV4Data"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"isDynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"isToken0NetworkToken"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"uniswapV4HookAddress"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tickSpacing"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token0Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"token1Data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"virtualPooled"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"poolFees1"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees4"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees5m"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees12"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees24"}},{"kind":"Field","name":{"kind":"Name","value":"potentialScamReasons"}},{"kind":"Field","name":{"kind":"Name","value":"priceUSD"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees1"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees4"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees5m"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees12"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees24"}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount1"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount4"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount5m"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount12"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount24"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume1"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume4"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume5m"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume12"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume24"}},{"kind":"Field","name":{"kind":"Name","value":"sniperCount"}},{"kind":"Field","name":{"kind":"Name","value":"sniperHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"swapPct1dOldWallet"}},{"kind":"Field","name":{"kind":"Name","value":"swapPct7dOldWallet"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}},{"kind":"Field","name":{"kind":"Name","value":"totalFees1"}},{"kind":"Field","name":{"kind":"Name","value":"totalFees4"}},{"kind":"Field","name":{"kind":"Name","value":"totalFees5m"}},{"kind":"Field","name":{"kind":"Name","value":"totalFees12"}},{"kind":"Field","name":{"kind":"Name","value":"totalFees24"}},{"kind":"Field","name":{"kind":"Name","value":"trendingScore"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount1"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount4"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount5m"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount12"}},{"kind":"Field","name":{"kind":"Name","value":"txnCount24"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys1"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys4"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys5m"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys12"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuys24"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells1"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells4"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells5m"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells12"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSells24"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions1"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions4"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions5m"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions12"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTransactions24"}},{"kind":"Field","name":{"kind":"Name","value":"volume1"}},{"kind":"Field","name":{"kind":"Name","value":"volume4"}},{"kind":"Field","name":{"kind":"Name","value":"volume5m"}},{"kind":"Field","name":{"kind":"Name","value":"volume12"}},{"kind":"Field","name":{"kind":"Name","value":"volume24"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange1"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange4"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange12"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange24"}},{"kind":"Field","name":{"kind":"Name","value":"walletAgeAvg"}},{"kind":"Field","name":{"kind":"Name","value":"walletAgeStd"}}]}}]}}]}}]} as unknown as DocumentNode; +export const OnHoldersUpdatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnHoldersUpdated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"tokenId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onHoldersUpdated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"tokenId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tokenId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"balances"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"balance"}},{"kind":"Field","name":{"kind":"Name","value":"balanceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"firstHeldTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"shiftedBalance"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"tokenPriceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"walletId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"holders"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}}]}}]}}]} as unknown as DocumentNode; export const OnLatestPairUpdatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnLatestPairUpdated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onLatestPairUpdated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}},{"kind":"Argument","name":{"kind":"Name","value":"networkId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeHash"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"initialPriceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"liquidAt"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"newToken"}},{"kind":"Field","name":{"kind":"Name","value":"nonLiquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"oldToken"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token0"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"currentPoolAmount"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"initialPoolAmount"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pairId"}},{"kind":"Field","name":{"kind":"Name","value":"poolVariation"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"currentPoolAmount"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"initialPoolAmount"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pairId"}},{"kind":"Field","name":{"kind":"Name","value":"poolVariation"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactionHash"}}]}}]}}]} as unknown as DocumentNode; export const OnLatestTokensDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnLatestTokens"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"tokenAddress"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onLatestTokens"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}},{"kind":"Argument","name":{"kind":"Name","value":"networkId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}}},{"kind":"Argument","name":{"kind":"Name","value":"tokenAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tokenAddress"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockHash"}},{"kind":"Field","name":{"kind":"Name","value":"blockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"creatorBalance"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"simulationResults"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyGasUsed"}},{"kind":"Field","name":{"kind":"Name","value":"buySuccess"}},{"kind":"Field","name":{"kind":"Name","value":"buyTax"}},{"kind":"Field","name":{"kind":"Name","value":"canRenounceOwnership"}},{"kind":"Field","name":{"kind":"Name","value":"canTransferOwnership"}},{"kind":"Field","name":{"kind":"Name","value":"isOwnerRenounced"}},{"kind":"Field","name":{"kind":"Name","value":"maxBuyAmount"}},{"kind":"Field","name":{"kind":"Name","value":"maxSellAmount"}},{"kind":"Field","name":{"kind":"Name","value":"openTradingCall"}},{"kind":"Field","name":{"kind":"Name","value":"sellGasUsed"}},{"kind":"Field","name":{"kind":"Name","value":"sellSuccess"}},{"kind":"Field","name":{"kind":"Name","value":"sellTax"}}]}},{"kind":"Field","name":{"kind":"Name","value":"timeCreated"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"tokenName"}},{"kind":"Field","name":{"kind":"Name","value":"tokenSymbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"traceIndex"}},{"kind":"Field","name":{"kind":"Name","value":"transactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"transactionIndex"}}]}}]}}]} as unknown as DocumentNode; -export const OnLaunchpadTokenEventDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnLaunchpadTokenEvent"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"OnLaunchpadTokenEventInput"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onLaunchpadTokenEvent"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bundlerCount"}},{"kind":"Field","name":{"kind":"Name","value":"bundlerHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount1"}},{"kind":"Field","name":{"kind":"Name","value":"devHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"eventType"}},{"kind":"Field","name":{"kind":"Name","value":"holders"}},{"kind":"Field","name":{"kind":"Name","value":"insiderCount"}},{"kind":"Field","name":{"kind":"Name","value":"insiderHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"marketCap"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"price"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount1"}},{"kind":"Field","name":{"kind":"Name","value":"sniperCount"}},{"kind":"Field","name":{"kind":"Name","value":"sniperHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}},{"kind":"Field","name":{"kind":"Name","value":"transactions1"}},{"kind":"Field","name":{"kind":"Name","value":"volume1"}}]}}]}}]} as unknown as DocumentNode; -export const OnLaunchpadTokenEventBatchDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnLaunchpadTokenEventBatch"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"OnLaunchpadTokenEventBatchInput"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onLaunchpadTokenEventBatch"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bundlerCount"}},{"kind":"Field","name":{"kind":"Name","value":"bundlerHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount1"}},{"kind":"Field","name":{"kind":"Name","value":"devHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"eventType"}},{"kind":"Field","name":{"kind":"Name","value":"holders"}},{"kind":"Field","name":{"kind":"Name","value":"insiderCount"}},{"kind":"Field","name":{"kind":"Name","value":"insiderHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"marketCap"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"price"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount1"}},{"kind":"Field","name":{"kind":"Name","value":"sniperCount"}},{"kind":"Field","name":{"kind":"Name","value":"sniperHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}},{"kind":"Field","name":{"kind":"Name","value":"transactions1"}},{"kind":"Field","name":{"kind":"Name","value":"volume1"}}]}}]}}]} as unknown as DocumentNode; +export const OnLaunchpadTokenEventDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnLaunchpadTokenEvent"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"OnLaunchpadTokenEventInput"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onLaunchpadTokenEvent"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bundlerCount"}},{"kind":"Field","name":{"kind":"Name","value":"bundlerHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount1"}},{"kind":"Field","name":{"kind":"Name","value":"devHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"eventType"}},{"kind":"Field","name":{"kind":"Name","value":"holders"}},{"kind":"Field","name":{"kind":"Name","value":"insiderCount"}},{"kind":"Field","name":{"kind":"Name","value":"insiderHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"marketCap"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"price"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount1"}},{"kind":"Field","name":{"kind":"Name","value":"sniperCount"}},{"kind":"Field","name":{"kind":"Name","value":"sniperHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}},{"kind":"Field","name":{"kind":"Name","value":"transactions1"}},{"kind":"Field","name":{"kind":"Name","value":"volume1"}}]}}]}}]} as unknown as DocumentNode; +export const OnLaunchpadTokenEventBatchDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnLaunchpadTokenEventBatch"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"OnLaunchpadTokenEventBatchInput"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onLaunchpadTokenEventBatch"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bundlerCount"}},{"kind":"Field","name":{"kind":"Name","value":"bundlerHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"buyCount1"}},{"kind":"Field","name":{"kind":"Name","value":"devHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"eventType"}},{"kind":"Field","name":{"kind":"Name","value":"holders"}},{"kind":"Field","name":{"kind":"Name","value":"insiderCount"}},{"kind":"Field","name":{"kind":"Name","value":"insiderHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"marketCap"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"price"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"sellCount1"}},{"kind":"Field","name":{"kind":"Name","value":"sniperCount"}},{"kind":"Field","name":{"kind":"Name","value":"sniperHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}},{"kind":"Field","name":{"kind":"Name","value":"transactions1"}},{"kind":"Field","name":{"kind":"Name","value":"volume1"}}]}}]}}]} as unknown as DocumentNode; export const OnNftAssetsCreatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnNftAssetsCreated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"address"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"tokenId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onNftAssetsCreated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"address"},"value":{"kind":"Variable","name":{"kind":"Name","value":"address"}}},{"kind":"Argument","name":{"kind":"Name","value":"networkId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}}},{"kind":"Argument","name":{"kind":"Name","value":"tokenId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tokenId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"attributes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"class"}},{"kind":"Field","name":{"kind":"Name","value":"css"}},{"kind":"Field","name":{"kind":"Name","value":"displayType"}},{"kind":"Field","name":{"kind":"Name","value":"maxValue"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueType"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"media"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"}},{"kind":"Field","name":{"kind":"Name","value":"processed"}},{"kind":"Field","name":{"kind":"Name","value":"thumbLg"}},{"kind":"Field","name":{"kind":"Name","value":"thumbSm"}}]}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"originalImage"}},{"kind":"Field","name":{"kind":"Name","value":"quantity"}},{"kind":"Field","name":{"kind":"Name","value":"rawAssetData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"animationUrl"}},{"kind":"Field","name":{"kind":"Name","value":"externalUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageData"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}}]} as unknown as DocumentNode; export const OnNftEventsCreatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnNftEventsCreated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"address"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onNftEventsCreated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"address"},"value":{"kind":"Variable","name":{"kind":"Name","value":"address"}}},{"kind":"Argument","name":{"kind":"Name","value":"networkId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"events"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"aggregatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"blockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"contractAddress"}},{"kind":"Field","name":{"kind":"Name","value":"eventType"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"}},{"kind":"Field","name":{"kind":"Name","value":"fillSource"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"individualPriceNetworkBaseToken"}},{"kind":"Field","name":{"kind":"Name","value":"individualPriceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"individualTradePrice"}},{"kind":"Field","name":{"kind":"Name","value":"logIndex"}},{"kind":"Field","name":{"kind":"Name","value":"maker"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"numberOfTokens"}},{"kind":"Field","name":{"kind":"Name","value":"orderDirection"}},{"kind":"Field","name":{"kind":"Name","value":"paymentTokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"priceError"}},{"kind":"Field","name":{"kind":"Name","value":"sortKey"}},{"kind":"Field","name":{"kind":"Name","value":"taker"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"totalPriceNetworkBaseToken"}},{"kind":"Field","name":{"kind":"Name","value":"totalPriceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"totalTradePrice"}},{"kind":"Field","name":{"kind":"Name","value":"tradeOffer"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NftEventNftTradeItem"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"amount"}},{"kind":"Field","name":{"kind":"Name","value":"recipient"}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NftEventTokenTradeItem"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"amount"}},{"kind":"Field","name":{"kind":"Name","value":"individualPriceNetworkBaseToken"}},{"kind":"Field","name":{"kind":"Name","value":"individualPriceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"individualTradePrice"}},{"kind":"Field","name":{"kind":"Name","value":"isPrice"}},{"kind":"Field","name":{"kind":"Name","value":"priceError"}},{"kind":"Field","name":{"kind":"Name","value":"recipient"}},{"kind":"Field","name":{"kind":"Name","value":"totalPriceNetworkBaseToken"}},{"kind":"Field","name":{"kind":"Name","value":"totalPriceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"totalTradePrice"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tradeReceived"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NftEventNftTradeItem"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"amount"}},{"kind":"Field","name":{"kind":"Name","value":"recipient"}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NftEventTokenTradeItem"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"amount"}},{"kind":"Field","name":{"kind":"Name","value":"individualPriceNetworkBaseToken"}},{"kind":"Field","name":{"kind":"Name","value":"individualPriceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"individualTradePrice"}},{"kind":"Field","name":{"kind":"Name","value":"isPrice"}},{"kind":"Field","name":{"kind":"Name","value":"priceError"}},{"kind":"Field","name":{"kind":"Name","value":"recipient"}},{"kind":"Field","name":{"kind":"Name","value":"totalPriceNetworkBaseToken"}},{"kind":"Field","name":{"kind":"Name","value":"totalPriceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"totalTradePrice"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"transactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"transactionIndex"}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}}]}}]}}]} as unknown as DocumentNode; export const OnNftPoolEventsCreatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnNftPoolEventsCreated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"collectionAddress"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"exchangeAddress"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"poolAddress"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onNftPoolEventsCreated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"collectionAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"collectionAddress"}}},{"kind":"Argument","name":{"kind":"Name","value":"exchangeAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"exchangeAddress"}}},{"kind":"Argument","name":{"kind":"Name","value":"networkId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}}},{"kind":"Argument","name":{"kind":"Name","value":"poolAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"poolAddress"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"collectionAddress"}},{"kind":"Field","name":{"kind":"Name","value":"events"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockHash"}},{"kind":"Field","name":{"kind":"Name","value":"blockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"collectionAddress"}},{"kind":"Field","name":{"kind":"Name","value":"collectionId"}},{"kind":"Field","name":{"kind":"Name","value":"data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewPoolEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetRecipientAddress"}},{"kind":"Field","name":{"kind":"Name","value":"bondingCurveAddress"}},{"kind":"Field","name":{"kind":"Name","value":"bondingCurveType"}},{"kind":"Field","name":{"kind":"Name","value":"buyPriceT"}},{"kind":"Field","name":{"kind":"Name","value":"collectionAddress"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"delta"}},{"kind":"Field","name":{"kind":"Name","value":"feeAmountT"}},{"kind":"Field","name":{"kind":"Name","value":"nbtRatio"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"nftTokenBalance"}},{"kind":"Field","name":{"kind":"Name","value":"ownerAddress"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"sellPriceT"}},{"kind":"Field","name":{"kind":"Name","value":"startPriceT"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"tokenBalanceT"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"usdRatio"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NewPoolEventDataV2"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetRecipientAddress"}},{"kind":"Field","name":{"kind":"Name","value":"bondingCurveAddress"}},{"kind":"Field","name":{"kind":"Name","value":"bondingCurveType"}},{"kind":"Field","name":{"kind":"Name","value":"buyPriceT"}},{"kind":"Field","name":{"kind":"Name","value":"collectionAddress"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"delta"}},{"kind":"Field","name":{"kind":"Name","value":"feeAmountT"}},{"kind":"Field","name":{"kind":"Name","value":"nbtRatio"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"nftAssets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"attributes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"class"}},{"kind":"Field","name":{"kind":"Name","value":"css"}},{"kind":"Field","name":{"kind":"Name","value":"displayType"}},{"kind":"Field","name":{"kind":"Name","value":"maxValue"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueType"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"media"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"}},{"kind":"Field","name":{"kind":"Name","value":"processed"}},{"kind":"Field","name":{"kind":"Name","value":"thumbLg"}},{"kind":"Field","name":{"kind":"Name","value":"thumbSm"}}]}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"originalImage"}},{"kind":"Field","name":{"kind":"Name","value":"quantity"}},{"kind":"Field","name":{"kind":"Name","value":"rawAssetData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"animationUrl"}},{"kind":"Field","name":{"kind":"Name","value":"externalUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageData"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"nftTokenIds"}},{"kind":"Field","name":{"kind":"Name","value":"nftTokenQuantities"}},{"kind":"Field","name":{"kind":"Name","value":"ownerAddress"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"poolNftType"}},{"kind":"Field","name":{"kind":"Name","value":"propertyChecker"}},{"kind":"Field","name":{"kind":"Name","value":"royalties"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"percent"}},{"kind":"Field","name":{"kind":"Name","value":"recipient"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellPriceT"}},{"kind":"Field","name":{"kind":"Name","value":"startPriceT"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"tokenBalanceT"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"usdRatio"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NftPoolAssetRecipientUpdateEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"newAssetRecipient"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NftPoolDeltaUpdateEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"newDelta"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NftPoolFeeUpdateEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nbtRatio"}},{"kind":"Field","name":{"kind":"Name","value":"newFeeT"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"usdRatio"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NftPoolNftDepositEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nftTokenBalance"}},{"kind":"Field","name":{"kind":"Name","value":"nftTokenIds"}},{"kind":"Field","name":{"kind":"Name","value":"tokenBalanceT"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NftPoolNftDepositEventDataV2"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nftAssets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"attributes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"class"}},{"kind":"Field","name":{"kind":"Name","value":"css"}},{"kind":"Field","name":{"kind":"Name","value":"displayType"}},{"kind":"Field","name":{"kind":"Name","value":"maxValue"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueType"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"media"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"}},{"kind":"Field","name":{"kind":"Name","value":"processed"}},{"kind":"Field","name":{"kind":"Name","value":"thumbLg"}},{"kind":"Field","name":{"kind":"Name","value":"thumbSm"}}]}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"originalImage"}},{"kind":"Field","name":{"kind":"Name","value":"quantity"}},{"kind":"Field","name":{"kind":"Name","value":"rawAssetData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"animationUrl"}},{"kind":"Field","name":{"kind":"Name","value":"externalUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageData"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"nftTokenAmounts"}},{"kind":"Field","name":{"kind":"Name","value":"nftTokenIds"}},{"kind":"Field","name":{"kind":"Name","value":"tokenBalanceT"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NftPoolNftWithdrawalEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nftTokenBalance"}},{"kind":"Field","name":{"kind":"Name","value":"nftTokenIds"}},{"kind":"Field","name":{"kind":"Name","value":"tokenBalanceT"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NftPoolNftWithdrawalEventDataV2"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nftAssets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"attributes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"class"}},{"kind":"Field","name":{"kind":"Name","value":"css"}},{"kind":"Field","name":{"kind":"Name","value":"displayType"}},{"kind":"Field","name":{"kind":"Name","value":"maxValue"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueType"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"media"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"}},{"kind":"Field","name":{"kind":"Name","value":"processed"}},{"kind":"Field","name":{"kind":"Name","value":"thumbLg"}},{"kind":"Field","name":{"kind":"Name","value":"thumbSm"}}]}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"originalImage"}},{"kind":"Field","name":{"kind":"Name","value":"quantity"}},{"kind":"Field","name":{"kind":"Name","value":"rawAssetData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"animationUrl"}},{"kind":"Field","name":{"kind":"Name","value":"externalUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageData"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"nftTokenAmounts"}},{"kind":"Field","name":{"kind":"Name","value":"nftTokenIds"}},{"kind":"Field","name":{"kind":"Name","value":"tokenBalanceT"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NftPoolOwnershipTransferredEventDataV2"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"newOwner"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NftPoolSpotPriceUpdateEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nbtRatio"}},{"kind":"Field","name":{"kind":"Name","value":"newBuyPriceT"}},{"kind":"Field","name":{"kind":"Name","value":"newSellPriceT"}},{"kind":"Field","name":{"kind":"Name","value":"newSpotPriceT"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"usdRatio"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NftPoolSpotPriceUpdateEventDataV2"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nbtRatio"}},{"kind":"Field","name":{"kind":"Name","value":"newBuyPriceT"}},{"kind":"Field","name":{"kind":"Name","value":"newSellPriceT"}},{"kind":"Field","name":{"kind":"Name","value":"newSpotPriceT"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"usdRatio"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NftPoolTokenDepositEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amountT"}},{"kind":"Field","name":{"kind":"Name","value":"nbtRatio"}},{"kind":"Field","name":{"kind":"Name","value":"nftTokenBalance"}},{"kind":"Field","name":{"kind":"Name","value":"tokenBalanceT"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"usdRatio"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NftPoolTokenDepositEventDataV2"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amountT"}},{"kind":"Field","name":{"kind":"Name","value":"nbtRatio"}},{"kind":"Field","name":{"kind":"Name","value":"tokenBalanceT"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"usdRatio"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NftPoolTokenWithdrawalEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amountT"}},{"kind":"Field","name":{"kind":"Name","value":"nbtRatio"}},{"kind":"Field","name":{"kind":"Name","value":"nftTokenBalance"}},{"kind":"Field","name":{"kind":"Name","value":"tokenBalanceT"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"usdRatio"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"NftPoolTokenWithdrawalEventDataV2"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amountT"}},{"kind":"Field","name":{"kind":"Name","value":"nbtRatio"}},{"kind":"Field","name":{"kind":"Name","value":"tokenBalanceT"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"usdRatio"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SwapNftInPoolEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amountT"}},{"kind":"Field","name":{"kind":"Name","value":"nbtRatio"}},{"kind":"Field","name":{"kind":"Name","value":"newBuyPriceT"}},{"kind":"Field","name":{"kind":"Name","value":"newDelta"}},{"kind":"Field","name":{"kind":"Name","value":"newSellPriceT"}},{"kind":"Field","name":{"kind":"Name","value":"newSpotPriceT"}},{"kind":"Field","name":{"kind":"Name","value":"nftTokenBalance"}},{"kind":"Field","name":{"kind":"Name","value":"nftsTransfered"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amountT"}},{"kind":"Field","name":{"kind":"Name","value":"nftTokenId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeT"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeeT"}},{"kind":"Field","name":{"kind":"Name","value":"tokenBalanceT"}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"usdRatio"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SwapNftInPoolEventDataV2"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amountT"}},{"kind":"Field","name":{"kind":"Name","value":"nbtRatio"}},{"kind":"Field","name":{"kind":"Name","value":"newBuyPriceT"}},{"kind":"Field","name":{"kind":"Name","value":"newDelta"}},{"kind":"Field","name":{"kind":"Name","value":"newSellPriceT"}},{"kind":"Field","name":{"kind":"Name","value":"newSpotPriceT"}},{"kind":"Field","name":{"kind":"Name","value":"nftAssets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"attributes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"class"}},{"kind":"Field","name":{"kind":"Name","value":"css"}},{"kind":"Field","name":{"kind":"Name","value":"displayType"}},{"kind":"Field","name":{"kind":"Name","value":"maxValue"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueType"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"media"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"}},{"kind":"Field","name":{"kind":"Name","value":"processed"}},{"kind":"Field","name":{"kind":"Name","value":"thumbLg"}},{"kind":"Field","name":{"kind":"Name","value":"thumbSm"}}]}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"originalImage"}},{"kind":"Field","name":{"kind":"Name","value":"quantity"}},{"kind":"Field","name":{"kind":"Name","value":"rawAssetData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"animationUrl"}},{"kind":"Field","name":{"kind":"Name","value":"externalUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageData"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"nftsTransfered"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amountT"}},{"kind":"Field","name":{"kind":"Name","value":"nftQuantity"}},{"kind":"Field","name":{"kind":"Name","value":"nftTokenId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeT"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeeT"}},{"kind":"Field","name":{"kind":"Name","value":"tokenBalanceT"}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"usdRatio"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SwapNftOutPoolEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amountT"}},{"kind":"Field","name":{"kind":"Name","value":"nbtRatio"}},{"kind":"Field","name":{"kind":"Name","value":"newBuyPriceT"}},{"kind":"Field","name":{"kind":"Name","value":"newDelta"}},{"kind":"Field","name":{"kind":"Name","value":"newSellPriceT"}},{"kind":"Field","name":{"kind":"Name","value":"newSpotPriceT"}},{"kind":"Field","name":{"kind":"Name","value":"nftTokenBalance"}},{"kind":"Field","name":{"kind":"Name","value":"nftsTransfered"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amountT"}},{"kind":"Field","name":{"kind":"Name","value":"nftTokenId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeT"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeeT"}},{"kind":"Field","name":{"kind":"Name","value":"tokenBalanceT"}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"usdRatio"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SwapNftOutPoolEventDataV2"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amountT"}},{"kind":"Field","name":{"kind":"Name","value":"nbtRatio"}},{"kind":"Field","name":{"kind":"Name","value":"newBuyPriceT"}},{"kind":"Field","name":{"kind":"Name","value":"newDelta"}},{"kind":"Field","name":{"kind":"Name","value":"newSellPriceT"}},{"kind":"Field","name":{"kind":"Name","value":"newSpotPriceT"}},{"kind":"Field","name":{"kind":"Name","value":"nftAssets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"attributes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"class"}},{"kind":"Field","name":{"kind":"Name","value":"css"}},{"kind":"Field","name":{"kind":"Name","value":"displayType"}},{"kind":"Field","name":{"kind":"Name","value":"maxValue"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"value"}},{"kind":"Field","name":{"kind":"Name","value":"valueType"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"media"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"image"}},{"kind":"Field","name":{"kind":"Name","value":"processed"}},{"kind":"Field","name":{"kind":"Name","value":"thumbLg"}},{"kind":"Field","name":{"kind":"Name","value":"thumbSm"}}]}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"originalImage"}},{"kind":"Field","name":{"kind":"Name","value":"quantity"}},{"kind":"Field","name":{"kind":"Name","value":"rawAssetData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"animationUrl"}},{"kind":"Field","name":{"kind":"Name","value":"externalUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageData"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}},{"kind":"Field","name":{"kind":"Name","value":"nftsTransfered"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amountT"}},{"kind":"Field","name":{"kind":"Name","value":"nftQuantity"}},{"kind":"Field","name":{"kind":"Name","value":"nftTokenId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeT"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeeT"}},{"kind":"Field","name":{"kind":"Name","value":"tokenBalanceT"}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"usdRatio"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"eventType"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"logIndex"}},{"kind":"Field","name":{"kind":"Name","value":"maker"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"poolType"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"transactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"transactionIndex"}}]}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}}]}}]} as unknown as DocumentNode; -export const OnPairMetadataUpdatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnPairMetadataUpdated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"quoteToken"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"QuoteToken"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"useNonLiquidityTokenAsQuoteToken"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onPairMetadataUpdated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}},{"kind":"Argument","name":{"kind":"Name","value":"quoteToken"},"value":{"kind":"Variable","name":{"kind":"Name","value":"quoteToken"}}},{"kind":"Argument","name":{"kind":"Name","value":"useNonLiquidityTokenAsQuoteToken"},"value":{"kind":"Variable","name":{"kind":"Name","value":"useNonLiquidityTokenAsQuoteToken"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"enhancedToken0"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"enhancedToken1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"exchangeId"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"highPrice1"}},{"kind":"Field","name":{"kind":"Name","value":"highPrice4"}},{"kind":"Field","name":{"kind":"Name","value":"highPrice5m"}},{"kind":"Field","name":{"kind":"Name","value":"highPrice12"}},{"kind":"Field","name":{"kind":"Name","value":"highPrice24"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"lowPrice1"}},{"kind":"Field","name":{"kind":"Name","value":"lowPrice4"}},{"kind":"Field","name":{"kind":"Name","value":"lowPrice5m"}},{"kind":"Field","name":{"kind":"Name","value":"lowPrice12"}},{"kind":"Field","name":{"kind":"Name","value":"lowPrice24"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"nonLiquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"pairAddress"}},{"kind":"Field","name":{"kind":"Name","value":"price"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange1"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange4"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange12"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange24"}},{"kind":"Field","name":{"kind":"Name","value":"priceNonQuoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"statsType"}},{"kind":"Field","name":{"kind":"Name","value":"tickSpacing"}},{"kind":"Field","name":{"kind":"Name","value":"token0"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"labels"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"subType"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"}},{"kind":"Field","name":{"kind":"Name","value":"price"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"labels"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"subType"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"}},{"kind":"Field","name":{"kind":"Name","value":"price"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}}]}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}},{"kind":"Field","name":{"kind":"Name","value":"volume1"}},{"kind":"Field","name":{"kind":"Name","value":"volume4"}},{"kind":"Field","name":{"kind":"Name","value":"volume5m"}},{"kind":"Field","name":{"kind":"Name","value":"volume12"}},{"kind":"Field","name":{"kind":"Name","value":"volume24"}},{"kind":"Field","name":{"kind":"Name","value":"walletActivity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bundlerCount"}},{"kind":"Field","name":{"kind":"Name","value":"bundlerHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"devHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"insiderCount"}},{"kind":"Field","name":{"kind":"Name","value":"insiderHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"sniperCount"}},{"kind":"Field","name":{"kind":"Name","value":"sniperHeldPercentage"}}]}}]}}]}}]} as unknown as DocumentNode; +export const OnPairMetadataUpdatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnPairMetadataUpdated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"quoteToken"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"QuoteToken"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"useNonLiquidityTokenAsQuoteToken"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onPairMetadataUpdated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}},{"kind":"Argument","name":{"kind":"Name","value":"quoteToken"},"value":{"kind":"Variable","name":{"kind":"Name","value":"quoteToken"}}},{"kind":"Argument","name":{"kind":"Name","value":"useNonLiquidityTokenAsQuoteToken"},"value":{"kind":"Variable","name":{"kind":"Name","value":"useNonLiquidityTokenAsQuoteToken"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"enhancedToken0"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"enhancedToken1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"asset"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"createBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"createTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"creatorAddress"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"exchanges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeVersion"}},{"kind":"Field","name":{"kind":"Name","value":"iconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"tradeUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"freezable"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"info"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"bluechipRating"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"cmcId"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gridAssetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageBannerUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbHash"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"videoExternalUrl"}}]}},{"kind":"Field","name":{"kind":"Name","value":"isFreezableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isMintableValid"}},{"kind":"Field","name":{"kind":"Name","value":"isScam"}},{"kind":"Field","name":{"kind":"Name","value":"launchpad"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"completed"}},{"kind":"Field","name":{"kind":"Name","value":"completedAt"}},{"kind":"Field","name":{"kind":"Name","value":"completedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"graduationPercent"}},{"kind":"Field","name":{"kind":"Name","value":"isCashbackEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadName"}},{"kind":"Field","name":{"kind":"Name","value":"launchpadProtocol"}},{"kind":"Field","name":{"kind":"Name","value":"migrated"}},{"kind":"Field","name":{"kind":"Name","value":"migratedAt"}},{"kind":"Field","name":{"kind":"Name","value":"migratedPoolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"migratedSlot"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"mintable"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"organization"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"assetDeployments"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"assetId"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"standard"}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"ticker"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"descriptionLong"}},{"kind":"Field","name":{"kind":"Name","value":"descriptionShort"}},{"kind":"Field","name":{"kind":"Name","value":"foundingDate"}},{"kind":"Field","name":{"kind":"Name","value":"header"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"logo"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"rootId"}},{"kind":"Field","name":{"kind":"Name","value":"sector"}},{"kind":"Field","name":{"kind":"Name","value":"socials"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tagLine"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"urls"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"profanity"}},{"kind":"Field","name":{"kind":"Name","value":"socialLinks"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bitcointalk"}},{"kind":"Field","name":{"kind":"Name","value":"blog"}},{"kind":"Field","name":{"kind":"Name","value":"coingecko"}},{"kind":"Field","name":{"kind":"Name","value":"coinmarketcap"}},{"kind":"Field","name":{"kind":"Name","value":"discord"}},{"kind":"Field","name":{"kind":"Name","value":"email"}},{"kind":"Field","name":{"kind":"Name","value":"facebook"}},{"kind":"Field","name":{"kind":"Name","value":"github"}},{"kind":"Field","name":{"kind":"Name","value":"instagram"}},{"kind":"Field","name":{"kind":"Name","value":"linkedin"}},{"kind":"Field","name":{"kind":"Name","value":"reddit"}},{"kind":"Field","name":{"kind":"Name","value":"slack"}},{"kind":"Field","name":{"kind":"Name","value":"telegram"}},{"kind":"Field","name":{"kind":"Name","value":"twitch"}},{"kind":"Field","name":{"kind":"Name","value":"twitter"}},{"kind":"Field","name":{"kind":"Name","value":"website"}},{"kind":"Field","name":{"kind":"Name","value":"wechat"}},{"kind":"Field","name":{"kind":"Name","value":"whitepaper"}},{"kind":"Field","name":{"kind":"Name","value":"youtube"}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}}]}},{"kind":"Field","name":{"kind":"Name","value":"exchangeId"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"highPrice1"}},{"kind":"Field","name":{"kind":"Name","value":"highPrice4"}},{"kind":"Field","name":{"kind":"Name","value":"highPrice5m"}},{"kind":"Field","name":{"kind":"Name","value":"highPrice12"}},{"kind":"Field","name":{"kind":"Name","value":"highPrice24"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"lowPrice1"}},{"kind":"Field","name":{"kind":"Name","value":"lowPrice4"}},{"kind":"Field","name":{"kind":"Name","value":"lowPrice5m"}},{"kind":"Field","name":{"kind":"Name","value":"lowPrice12"}},{"kind":"Field","name":{"kind":"Name","value":"lowPrice24"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"nonLiquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"pairAddress"}},{"kind":"Field","name":{"kind":"Name","value":"price"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange1"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange4"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange5m"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange12"}},{"kind":"Field","name":{"kind":"Name","value":"priceChange24"}},{"kind":"Field","name":{"kind":"Name","value":"priceNonQuoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"statsType"}},{"kind":"Field","name":{"kind":"Name","value":"tickSpacing"}},{"kind":"Field","name":{"kind":"Name","value":"token0"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"labels"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"subType"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"}},{"kind":"Field","name":{"kind":"Name","value":"price"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}}]}},{"kind":"Field","name":{"kind":"Name","value":"token1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"decimals"}},{"kind":"Field","name":{"kind":"Name","value":"labels"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"subType"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pooled"}},{"kind":"Field","name":{"kind":"Name","value":"price"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}}]}},{"kind":"Field","name":{"kind":"Name","value":"top10HoldersPercent"}},{"kind":"Field","name":{"kind":"Name","value":"volume1"}},{"kind":"Field","name":{"kind":"Name","value":"volume4"}},{"kind":"Field","name":{"kind":"Name","value":"volume5m"}},{"kind":"Field","name":{"kind":"Name","value":"volume12"}},{"kind":"Field","name":{"kind":"Name","value":"volume24"}},{"kind":"Field","name":{"kind":"Name","value":"walletActivity"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bundlerCount"}},{"kind":"Field","name":{"kind":"Name","value":"bundlerHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"devHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"insiderCount"}},{"kind":"Field","name":{"kind":"Name","value":"insiderHeldPercentage"}},{"kind":"Field","name":{"kind":"Name","value":"sniperCount"}},{"kind":"Field","name":{"kind":"Name","value":"sniperHeldPercentage"}}]}}]}}]}}]} as unknown as DocumentNode; export const OnPredictionEventBarsUpdatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnPredictionEventBarsUpdated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"eventId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onPredictionEventBarsUpdated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"eventId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"eventId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"day1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"lastEventTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterestCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterestUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}},{"kind":"Field","name":{"kind":"Name","value":"venueVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"venueVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"hour1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"lastEventTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterestCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterestUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}},{"kind":"Field","name":{"kind":"Name","value":"venueVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"venueVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"hour4"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"lastEventTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterestCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterestUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}},{"kind":"Field","name":{"kind":"Name","value":"venueVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"venueVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"hour12"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"lastEventTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterestCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterestUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}},{"kind":"Field","name":{"kind":"Name","value":"venueVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"venueVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"min1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"lastEventTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterestCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterestUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}},{"kind":"Field","name":{"kind":"Name","value":"venueVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"venueVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"min5"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"lastEventTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterestCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterestUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}},{"kind":"Field","name":{"kind":"Name","value":"venueVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"venueVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"min15"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"lastEventTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterestCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterestUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}},{"kind":"Field","name":{"kind":"Name","value":"venueVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"venueVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"min30"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"lastEventTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterestCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterestUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}},{"kind":"Field","name":{"kind":"Name","value":"venueVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"venueVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"week1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"lastEventTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterestCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"openInterestUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"totalVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}},{"kind":"Field","name":{"kind":"Name","value":"venueVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"venueVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"eventId"}}]}}]}}]} as unknown as DocumentNode; export const OnPredictionMarketBarsUpdatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnPredictionMarketBarsUpdated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"marketId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onPredictionMarketBarsUpdated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"marketId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"marketId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"bars"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"day1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"allTimeVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"lastEventTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome0"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"askUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"askUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"hour1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"allTimeVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"lastEventTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome0"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"askUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"askUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"hour4"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"allTimeVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"lastEventTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome0"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"askUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"askUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"hour12"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"allTimeVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"lastEventTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome0"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"askUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"askUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"min1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"allTimeVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"lastEventTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome0"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"askUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"askUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"min5"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"allTimeVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"lastEventTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome0"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"askUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"askUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"min15"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"allTimeVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"lastEventTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome0"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"askUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"askUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"min30"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"allTimeVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"lastEventTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome0"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"askUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"askUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"week1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allTimeVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"allTimeVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"lastEventTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"openInterestUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome0"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"askUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"outcome1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"askCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"askUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"bidUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"liquidityCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolumeUsd"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentAskDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthCollateralToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"twoPercentBidDepthUsd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}}]}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"trades"}},{"kind":"Field","name":{"kind":"Name","value":"uniqueTraders"}},{"kind":"Field","name":{"kind":"Name","value":"volumeCollateralToken"}},{"kind":"Field","name":{"kind":"Name","value":"volumeShares"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUsd"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"marketId"}}]}}]}}]} as unknown as DocumentNode; export const OnPredictionTradesCreatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnPredictionTradesCreated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"OnPredictionTradesCreatedInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onPredictionTradesCreated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eventId"}},{"kind":"Field","name":{"kind":"Name","value":"marketId"}},{"kind":"Field","name":{"kind":"Name","value":"trades"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount"}},{"kind":"Field","name":{"kind":"Name","value":"amountCollateral"}},{"kind":"Field","name":{"kind":"Name","value":"amountUsd"}},{"kind":"Field","name":{"kind":"Name","value":"blockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"}},{"kind":"Field","name":{"kind":"Name","value":"maker"}},{"kind":"Field","name":{"kind":"Name","value":"marketId"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"outcomeId"}},{"kind":"Field","name":{"kind":"Name","value":"outcomeIndex"}},{"kind":"Field","name":{"kind":"Name","value":"outcomeLabel"}},{"kind":"Field","name":{"kind":"Name","value":"predictionMarket"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"categories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}},{"kind":"Field","name":{"kind":"Name","value":"subcategories"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"slug"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"closesAt"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"eventId"}},{"kind":"Field","name":{"kind":"Name","value":"eventLabel"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageLargeUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageSmallUrl"}},{"kind":"Field","name":{"kind":"Name","value":"imageThumbUrl"}},{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"observedAt"}},{"kind":"Field","name":{"kind":"Name","value":"opensAt"}},{"kind":"Field","name":{"kind":"Name","value":"outcomeIds"}},{"kind":"Field","name":{"kind":"Name","value":"outcomeLabels"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"question"}},{"kind":"Field","name":{"kind":"Name","value":"resolution"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"result"}},{"kind":"Field","name":{"kind":"Name","value":"source"}}]}},{"kind":"Field","name":{"kind":"Name","value":"resolvedAt"}},{"kind":"Field","name":{"kind":"Name","value":"resolvesAt"}},{"kind":"Field","name":{"kind":"Name","value":"rules"}},{"kind":"Field","name":{"kind":"Name","value":"rules2"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAt"}},{"kind":"Field","name":{"kind":"Name","value":"venueEventId"}},{"kind":"Field","name":{"kind":"Name","value":"venueMarketId"}},{"kind":"Field","name":{"kind":"Name","value":"venueMarketSlug"}},{"kind":"Field","name":{"kind":"Name","value":"venueOutcomeIds"}},{"kind":"Field","name":{"kind":"Name","value":"winningOutcomeId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"priceCollateral"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"protocol"}},{"kind":"Field","name":{"kind":"Name","value":"sortKey"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"tradeType"}},{"kind":"Field","name":{"kind":"Name","value":"traderId"}},{"kind":"Field","name":{"kind":"Name","value":"transactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"transactionId"}}]}}]}}]}}]} as unknown as DocumentNode; export const OnPriceUpdatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnPriceUpdated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"address"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"sourcePairAddress"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"useWeightedPrices"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onPriceUpdated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"address"},"value":{"kind":"Variable","name":{"kind":"Name","value":"address"}}},{"kind":"Argument","name":{"kind":"Name","value":"networkId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}}},{"kind":"Argument","name":{"kind":"Name","value":"sourcePairAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"sourcePairAddress"}}},{"kind":"Argument","name":{"kind":"Name","value":"useWeightedPrices"},"value":{"kind":"Variable","name":{"kind":"Name","value":"useWeightedPrices"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"blockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}}]}}]}}]} as unknown as DocumentNode; export const OnPricesUpdatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnPricesUpdated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"OnPricesUpdatedInput"}}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"useWeightedPrices"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onPricesUpdated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}},{"kind":"Argument","name":{"kind":"Name","value":"useWeightedPrices"},"value":{"kind":"Variable","name":{"kind":"Name","value":"useWeightedPrices"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"blockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}}]}}]}}]} as unknown as DocumentNode; export const OnTokenBarsUpdatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnTokenBarsUpdated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"tokenId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onTokenBarsUpdated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"networkId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}}},{"kind":"Argument","name":{"kind":"Name","value":"tokenId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tokenId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"aggregates"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"r1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r1D"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r1S"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r5"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r5S"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r7D"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r15"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r15S"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r30"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r30S"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r60"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r240"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"r720"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"token"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFees"}},{"kind":"Field","name":{"kind":"Name","value":"builderTips"}},{"kind":"Field","name":{"kind":"Name","value":"buyVolume"}},{"kind":"Field","name":{"kind":"Name","value":"buyers"}},{"kind":"Field","name":{"kind":"Name","value":"buys"}},{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFees"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"poolFees"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFees"}},{"kind":"Field","name":{"kind":"Name","value":"sellVolume"}},{"kind":"Field","name":{"kind":"Name","value":"sellers"}},{"kind":"Field","name":{"kind":"Name","value":"sells"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"traders"}},{"kind":"Field","name":{"kind":"Name","value":"transactions"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"eventSortKey"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"statsType"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}}]}}]}}]} as unknown as DocumentNode; -export const OnTokenEventsCreatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnTokenEventsCreated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"OnTokenEventsCreatedInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onTokenEventsCreated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"events"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"baseTokenPrice"}},{"kind":"Field","name":{"kind":"Name","value":"blockHash"}},{"kind":"Field","name":{"kind":"Name","value":"blockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"BurnEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"tickLower"}},{"kind":"Field","name":{"kind":"Name","value":"tickUpper"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"MintEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"tickLower"}},{"kind":"Field","name":{"kind":"Name","value":"tickUpper"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PoolBalanceChangedEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity0"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity1"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeeAmount0"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeeAmount1"}},{"kind":"Field","name":{"kind":"Name","value":"sender"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SwapEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0In"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Out"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1In"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Out"}},{"kind":"Field","name":{"kind":"Name","value":"amountNonLiquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"priceBaseToken"}},{"kind":"Field","name":{"kind":"Name","value":"priceBaseTokenTotal"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsdTotal"}},{"kind":"Field","name":{"kind":"Name","value":"tick"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"eventDisplayType"}},{"kind":"Field","name":{"kind":"Name","value":"eventType"}},{"kind":"Field","name":{"kind":"Name","value":"feeData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"builderTipNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"dynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"estimatedPoolFee"}},{"kind":"Field","name":{"kind":"Name","value":"gasUsed"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeAmountRaw"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeRateRaw"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"supplementalFeeData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpAmmCashbackFeeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cashbackAmountLamports"}},{"kind":"Field","name":{"kind":"Name","value":"cashbackFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpCashbackFeeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cashbackAmountLamports"}},{"kind":"Field","name":{"kind":"Name","value":"cashbackFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"txEventCount"}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"labels"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"sandwich"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"sandwichType"}},{"kind":"Field","name":{"kind":"Name","value":"token0DrainedAmount"}},{"kind":"Field","name":{"kind":"Name","value":"token1DrainedAmount"}}]}},{"kind":"Field","name":{"kind":"Name","value":"washtrade"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"logIndex"}},{"kind":"Field","name":{"kind":"Name","value":"maker"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"token0Address"}},{"kind":"Field","name":{"kind":"Name","value":"token0PoolValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token0SwapValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token0ValueBase"}},{"kind":"Field","name":{"kind":"Name","value":"token1Address"}},{"kind":"Field","name":{"kind":"Name","value":"token1PoolValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token1SwapValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token1ValueBase"}},{"kind":"Field","name":{"kind":"Name","value":"transactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"transactionIndex"}},{"kind":"Field","name":{"kind":"Name","value":"walletAge"}},{"kind":"Field","name":{"kind":"Name","value":"walletLabels"}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]} as unknown as DocumentNode; +export const OnTokenEventsCreatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnTokenEventsCreated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"OnTokenEventsCreatedInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onTokenEventsCreated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"events"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"baseTokenPrice"}},{"kind":"Field","name":{"kind":"Name","value":"blockHash"}},{"kind":"Field","name":{"kind":"Name","value":"blockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"commitmentLevel"}},{"kind":"Field","name":{"kind":"Name","value":"data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"BurnEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"tickLower"}},{"kind":"Field","name":{"kind":"Name","value":"tickUpper"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"MintEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"tickLower"}},{"kind":"Field","name":{"kind":"Name","value":"tickUpper"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PoolBalanceChangedEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity0"}},{"kind":"Field","name":{"kind":"Name","value":"liquidity1"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeeAmount0"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeeAmount1"}},{"kind":"Field","name":{"kind":"Name","value":"sender"}},{"kind":"Field","name":{"kind":"Name","value":"token0"}},{"kind":"Field","name":{"kind":"Name","value":"token1"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SwapEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0In"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Out"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1In"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Out"}},{"kind":"Field","name":{"kind":"Name","value":"amountNonLiquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"priceBaseToken"}},{"kind":"Field","name":{"kind":"Name","value":"priceBaseTokenTotal"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsdTotal"}},{"kind":"Field","name":{"kind":"Name","value":"tick"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"eventDisplayType"}},{"kind":"Field","name":{"kind":"Name","value":"eventType"}},{"kind":"Field","name":{"kind":"Name","value":"feeData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"builderTipNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"dynamicFee"}},{"kind":"Field","name":{"kind":"Name","value":"estimatedPoolFee"}},{"kind":"Field","name":{"kind":"Name","value":"gasUsed"}},{"kind":"Field","name":{"kind":"Name","value":"l1DataFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeAmountRaw"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeeRateRaw"}},{"kind":"Field","name":{"kind":"Name","value":"priorityFeeNativeUnit"}},{"kind":"Field","name":{"kind":"Name","value":"supplementalFeeData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpAmmCashbackFeeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cashbackAmountLamports"}},{"kind":"Field","name":{"kind":"Name","value":"cashbackFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PumpCashbackFeeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cashbackAmountLamports"}},{"kind":"Field","name":{"kind":"Name","value":"cashbackFeeBps"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"txEventCount"}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"labels"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"sandwich"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"label"}},{"kind":"Field","name":{"kind":"Name","value":"sandwichType"}},{"kind":"Field","name":{"kind":"Name","value":"token0DrainedAmount"}},{"kind":"Field","name":{"kind":"Name","value":"token1DrainedAmount"}}]}},{"kind":"Field","name":{"kind":"Name","value":"washtrade"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"label"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"liquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"logIndex"}},{"kind":"Field","name":{"kind":"Name","value":"maker"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"supplementalIndex"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"token0Address"}},{"kind":"Field","name":{"kind":"Name","value":"token0PoolValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token0SwapValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token0ValueBase"}},{"kind":"Field","name":{"kind":"Name","value":"token1Address"}},{"kind":"Field","name":{"kind":"Name","value":"token1PoolValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token1SwapValueUsd"}},{"kind":"Field","name":{"kind":"Name","value":"token1ValueBase"}},{"kind":"Field","name":{"kind":"Name","value":"transactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"transactionIndex"}},{"kind":"Field","name":{"kind":"Name","value":"walletAge"}},{"kind":"Field","name":{"kind":"Name","value":"walletLabels"}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]} as unknown as DocumentNode; export const OnTokenLifecycleEventsCreatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnTokenLifecycleEventsCreated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"address"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onTokenLifecycleEventsCreated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"address"},"value":{"kind":"Variable","name":{"kind":"Name","value":"address"}}},{"kind":"Argument","name":{"kind":"Name","value":"networkId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"events"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"blockHash"}},{"kind":"Field","name":{"kind":"Name","value":"blockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TokenBurnEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"TokenMintEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount"}},{"kind":"Field","name":{"kind":"Name","value":"circulatingSupply"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"eventType"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"logIndex"}},{"kind":"Field","name":{"kind":"Name","value":"maker"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"transactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"transactionIndex"}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]} as unknown as DocumentNode; export const OnUnconfirmedBarsUpdatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnUnconfirmedBarsUpdated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"pairId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"quoteToken"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"QuoteToken"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onUnconfirmedBarsUpdated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"pairId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"pairId"}}},{"kind":"Argument","name":{"kind":"Name","value":"quoteToken"},"value":{"kind":"Variable","name":{"kind":"Name","value":"quoteToken"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"aggregates"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"r1"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}}]}},{"kind":"Field","name":{"kind":"Name","value":"r1D"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}}]}},{"kind":"Field","name":{"kind":"Name","value":"r1S"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}}]}},{"kind":"Field","name":{"kind":"Name","value":"r5"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}}]}},{"kind":"Field","name":{"kind":"Name","value":"r5S"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}}]}},{"kind":"Field","name":{"kind":"Name","value":"r7D"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}}]}},{"kind":"Field","name":{"kind":"Name","value":"r15"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}}]}},{"kind":"Field","name":{"kind":"Name","value":"r15S"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}}]}},{"kind":"Field","name":{"kind":"Name","value":"r60"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}}]}},{"kind":"Field","name":{"kind":"Name","value":"r240"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}}]}},{"kind":"Field","name":{"kind":"Name","value":"r720"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"c"}},{"kind":"Field","name":{"kind":"Name","value":"h"}},{"kind":"Field","name":{"kind":"Name","value":"l"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"t"}},{"kind":"Field","name":{"kind":"Name","value":"v"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"eventSortKey"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"pairAddress"}},{"kind":"Field","name":{"kind":"Name","value":"pairId"}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"quoteTokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}}]}}]}}]} as unknown as DocumentNode; export const OnUnconfirmedEventsCreatedDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"subscription","name":{"kind":"Name","value":"OnUnconfirmedEventsCreated"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"address"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"quoteToken"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"QuoteToken"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"onUnconfirmedEventsCreated"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"address"},"value":{"kind":"Variable","name":{"kind":"Name","value":"address"}}},{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}},{"kind":"Argument","name":{"kind":"Name","value":"quoteToken"},"value":{"kind":"Variable","name":{"kind":"Name","value":"quoteToken"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"events"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"blockHash"}},{"kind":"Field","name":{"kind":"Name","value":"blockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UnconfirmedLiquidityChangeEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount0"}},{"kind":"Field","name":{"kind":"Name","value":"amount0Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"amount1"}},{"kind":"Field","name":{"kind":"Name","value":"amount1Shifted"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"UnconfirmedSwapEventData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amountBaseToken"}},{"kind":"Field","name":{"kind":"Name","value":"amountNonLiquidityToken"}},{"kind":"Field","name":{"kind":"Name","value":"priceBaseToken"}},{"kind":"Field","name":{"kind":"Name","value":"priceBaseTokenTotal"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsd"}},{"kind":"Field","name":{"kind":"Name","value":"priceUsdTotal"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"eventDisplayType"}},{"kind":"Field","name":{"kind":"Name","value":"eventType"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"logIndex"}},{"kind":"Field","name":{"kind":"Name","value":"maker"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"supplementalIndex"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"transactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"transactionIndex"}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"quoteToken"}}]}}]}}]} as unknown as DocumentNode;