diff --git a/src/sdk/Query.ts b/src/sdk/Query.ts index 22145d9..9f389b1 100644 --- a/src/sdk/Query.ts +++ b/src/sdk/Query.ts @@ -14,14 +14,6 @@ import { DetailedWalletStatsQueryVariables, FilterExchangesDocument, FilterExchangesQueryVariables, - FilterNftCollectionsDocument, - FilterNftCollectionsQueryVariables, - FilterNftParallelAssetsDocument, - FilterNftParallelAssetsQueryVariables, - FilterNftPoolCollectionsDocument, - FilterNftPoolCollectionsQueryVariables, - FilterNftPoolsDocument, - FilterNftPoolsQueryVariables, FilterPairsDocument, FilterPairsQueryVariables, FilterTokensDocument, @@ -34,8 +26,6 @@ import { GetBarsQueryVariables, GetCommunityNotesDocument, GetCommunityNotesQueryVariables, - GetDetailedNftStatsDocument, - GetDetailedNftStatsQueryVariables, GetDetailedPairsStatsDocument, GetDetailedPairsStatsQueryVariables, GetDetailedPairStatsDocument, @@ -52,36 +42,6 @@ import { GetNetworkStatsQueryVariables, GetNetworkStatusDocument, GetNetworkStatusQueryVariables, - GetNftAssetsDocument, - GetNftAssetsQueryVariables, - GetNftCollectionMetadataDocument, - GetNftCollectionMetadataQueryVariables, - GetNftContractsDocument, - GetNftContractsQueryVariables, - GetNftEventsDocument, - GetNftEventsQueryVariables, - GetNftPoolCollectionDocument, - GetNftPoolCollectionQueryVariables, - GetNftPoolCollectionsByExchangeDocument, - GetNftPoolCollectionsByExchangeQueryVariables, - GetNftPoolDocument, - GetNftPoolEventsDocument, - GetNftPoolEventsQueryVariables, - GetNftPoolQueryVariables, - GetNftPoolsByCollectionAndExchangeDocument, - GetNftPoolsByCollectionAndExchangeQueryVariables, - GetNftPoolsByOwnerDocument, - GetNftPoolsByOwnerQueryVariables, - GetNftPoolStatsDocument, - GetNftPoolStatsQueryVariables, - GetParallelCardChangesDocument, - GetParallelCardChangesQueryVariables, - GetPrimePoolAssetsDocument, - GetPrimePoolAssetsQueryVariables, - GetPrimePoolEventsDocument, - GetPrimePoolEventsQueryVariables, - GetPrimePoolsDocument, - GetPrimePoolsQueryVariables, GetSymbolDocument, GetSymbolQueryVariables, GetTokenBarsDocument, @@ -106,14 +66,8 @@ import { ListPairsForTokenQueryVariables, ListPairsWithMetadataForTokenDocument, ListPairsWithMetadataForTokenQueryVariables, - NftHoldersDocument, - NftHoldersQueryVariables, PairMetadataDocument, PairMetadataQueryVariables, - PrimeHoldersDocument, - PrimeHoldersQueryVariables, - SearchNftsDocument, - SearchNftsQueryVariables, TokenDocument, TokenLifecycleEventsDocument, TokenLifecycleEventsQueryVariables, @@ -130,10 +84,6 @@ import { WalletAggregateBackfillStateQueryVariables, WalletChartDocument, WalletChartQueryVariables, - WalletNftCollectionAssetsDocument, - WalletNftCollectionAssetsQueryVariables, - WalletNftCollectionsDocument, - WalletNftCollectionsQueryVariables, } from "./generated/graphql"; import { Codex } from "./index"; @@ -153,16 +103,6 @@ export class Query { this.sdk.query(DetailedWalletStatsDocument, vars); filterExchanges = async (vars: FilterExchangesQueryVariables) => this.sdk.query(FilterExchangesDocument, vars); - filterNftCollections = async (vars: FilterNftCollectionsQueryVariables) => - this.sdk.query(FilterNftCollectionsDocument, vars); - filterNftParallelAssets = async ( - vars: FilterNftParallelAssetsQueryVariables, - ) => this.sdk.query(FilterNftParallelAssetsDocument, vars); - filterNftPoolCollections = async ( - vars: FilterNftPoolCollectionsQueryVariables, - ) => this.sdk.query(FilterNftPoolCollectionsDocument, vars); - filterNftPools = async (vars: FilterNftPoolsQueryVariables) => - this.sdk.query(FilterNftPoolsDocument, vars); filterPairs = async (vars: FilterPairsQueryVariables) => this.sdk.query(FilterPairsDocument, vars); filterTokenWallets = async (vars: FilterTokenWalletsQueryVariables) => @@ -175,8 +115,6 @@ export class Query { this.sdk.query(GetBarsDocument, vars); getCommunityNotes = async (vars: GetCommunityNotesQueryVariables) => this.sdk.query(GetCommunityNotesDocument, vars); - getDetailedNftStats = async (vars: GetDetailedNftStatsQueryVariables) => - this.sdk.query(GetDetailedNftStatsDocument, vars); getDetailedPairStats = async (vars: GetDetailedPairStatsQueryVariables) => this.sdk.query(GetDetailedPairStatsDocument, vars); getDetailedPairsStats = async (vars: GetDetailedPairsStatsQueryVariables) => @@ -193,39 +131,6 @@ export class Query { this.sdk.query(GetNetworkStatusDocument, vars); getNetworks = async (vars: GetNetworksQueryVariables) => this.sdk.query(GetNetworksDocument, vars); - getNftAssets = async (vars: GetNftAssetsQueryVariables) => - this.sdk.query(GetNftAssetsDocument, vars); - getNftCollectionMetadata = async ( - vars: GetNftCollectionMetadataQueryVariables, - ) => this.sdk.query(GetNftCollectionMetadataDocument, vars); - getNftContracts = async (vars: GetNftContractsQueryVariables) => - this.sdk.query(GetNftContractsDocument, vars); - getNftEvents = async (vars: GetNftEventsQueryVariables) => - this.sdk.query(GetNftEventsDocument, vars); - getNftPool = async (vars: GetNftPoolQueryVariables) => - this.sdk.query(GetNftPoolDocument, vars); - getNftPoolCollection = async (vars: GetNftPoolCollectionQueryVariables) => - this.sdk.query(GetNftPoolCollectionDocument, vars); - getNftPoolCollectionsByExchange = async ( - vars: GetNftPoolCollectionsByExchangeQueryVariables, - ) => this.sdk.query(GetNftPoolCollectionsByExchangeDocument, vars); - getNftPoolEvents = async (vars: GetNftPoolEventsQueryVariables) => - this.sdk.query(GetNftPoolEventsDocument, vars); - getNftPoolStats = async (vars: GetNftPoolStatsQueryVariables) => - this.sdk.query(GetNftPoolStatsDocument, vars); - getNftPoolsByCollectionAndExchange = async ( - vars: GetNftPoolsByCollectionAndExchangeQueryVariables, - ) => this.sdk.query(GetNftPoolsByCollectionAndExchangeDocument, vars); - getNftPoolsByOwner = async (vars: GetNftPoolsByOwnerQueryVariables) => - this.sdk.query(GetNftPoolsByOwnerDocument, vars); - getParallelCardChanges = async (vars: GetParallelCardChangesQueryVariables) => - this.sdk.query(GetParallelCardChangesDocument, vars); - getPrimePoolAssets = async (vars: GetPrimePoolAssetsQueryVariables) => - this.sdk.query(GetPrimePoolAssetsDocument, vars); - getPrimePoolEvents = async (vars: GetPrimePoolEventsQueryVariables) => - this.sdk.query(GetPrimePoolEventsDocument, vars); - getPrimePools = async (vars: GetPrimePoolsQueryVariables) => - this.sdk.query(GetPrimePoolsDocument, vars); getSymbol = async (vars: GetSymbolQueryVariables) => this.sdk.query(GetSymbolDocument, vars); getTokenBars = async (vars: GetTokenBarsQueryVariables) => @@ -252,14 +157,8 @@ export class Query { listPairsWithMetadataForToken = async ( vars: ListPairsWithMetadataForTokenQueryVariables, ) => this.sdk.query(ListPairsWithMetadataForTokenDocument, vars); - nftHolders = async (vars: NftHoldersQueryVariables) => - this.sdk.query(NftHoldersDocument, vars); pairMetadata = async (vars: PairMetadataQueryVariables) => this.sdk.query(PairMetadataDocument, vars); - primeHolders = async (vars: PrimeHoldersQueryVariables) => - this.sdk.query(PrimeHoldersDocument, vars); - searchNfts = async (vars: SearchNftsQueryVariables) => - this.sdk.query(SearchNftsDocument, vars); token = async (vars: TokenQueryVariables) => this.sdk.query(TokenDocument, vars); tokenLifecycleEvents = async (vars: TokenLifecycleEventsQueryVariables) => @@ -277,9 +176,4 @@ export class Query { ) => this.sdk.query(WalletAggregateBackfillStateDocument, vars); walletChart = async (vars: WalletChartQueryVariables) => this.sdk.query(WalletChartDocument, vars); - walletNftCollectionAssets = async ( - vars: WalletNftCollectionAssetsQueryVariables, - ) => this.sdk.query(WalletNftCollectionAssetsDocument, vars); - walletNftCollections = async (vars: WalletNftCollectionsQueryVariables) => - this.sdk.query(WalletNftCollectionsDocument, vars); } diff --git a/src/sdk/Subscribe.ts b/src/sdk/Subscribe.ts index 5411fbb..ed92c06 100644 --- a/src/sdk/Subscribe.ts +++ b/src/sdk/Subscribe.ts @@ -60,7 +60,7 @@ export class Subscribe { this.sdk.subscribe( `subscription OnBalanceUpdated($walletAddress: String!) { onBalanceUpdated (walletAddress: $walletAddress) { - address, balance, balanceUsd, firstHeldTimestamp, 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, 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 }, tokenAddress, tokenId, tokenPriceUsd, walletId + 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, 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 }, tokenAddress, tokenId, tokenPriceUsd, walletId } }`, vars, @@ -156,7 +156,7 @@ export class Subscribe { this.sdk.subscribe( `subscription OnHoldersUpdated($tokenId: String!) { onHoldersUpdated (tokenId: $tokenId) { - balances { address, balance, balanceUsd, firstHeldTimestamp, 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, 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 }, tokenAddress, tokenId, tokenPriceUsd, walletId }, holders, networkId, tokenAddress, 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, 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 }, tokenAddress, tokenId, tokenPriceUsd, walletId }, holders, networkId, tokenAddress, tokenId } }`, vars, @@ -260,7 +260,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, 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 }, 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, 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 }, 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 }, volume1, volume4, volume5m, volume12, volume24 + 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, 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 }, 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, 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 }, 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 }, volume1, volume4, volume5m, volume12, volume24, walletActivity { bundlerCount, bundlerHeldPercentage, devHeldPercentage, insiderCount, insiderHeldPercentage, sniperCount, sniperHeldPercentage } } }`, vars, diff --git a/src/sdk/generated/gql.ts b/src/sdk/generated/gql.ts index 322c4a1..964033e 100644 --- a/src/sdk/generated/gql.ts +++ b/src/sdk/generated/gql.ts @@ -19,64 +19,41 @@ 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 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 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 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 cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\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 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 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 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 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 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 cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\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 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 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 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 firstFunding {\n amount\n fundedAt\n fundedByAddress\n fundedByLabel\n networkId\n tokenAddress\n transactionHash\n }\n firstSeenTimestamp\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 FilterNftCollections($collections: [String], $filters: NftCollectionFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [NftCollectionRanking]) {\n filterNftCollections(\n collections: $collections\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n ) {\n count\n offset\n results {\n address\n ercType\n grouping\n id\n imageUrl\n lastEventTimestamp\n name\n networkId\n stats1h {\n endTime\n networkBaseToken {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n nonCurrency {\n mints {\n change\n current\n previous\n }\n sales {\n change\n current\n previous\n }\n tokensSold {\n change\n current\n previous\n }\n transfers {\n change\n current\n previous\n }\n uniqueBuyers {\n change\n current\n previous\n }\n uniqueMinters {\n change\n current\n previous\n }\n uniqueSalesWallets {\n change\n current\n previous\n }\n uniqueSellers {\n change\n current\n previous\n }\n }\n startTime\n usd {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n }\n stats4h {\n endTime\n networkBaseToken {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n nonCurrency {\n mints {\n change\n current\n previous\n }\n sales {\n change\n current\n previous\n }\n tokensSold {\n change\n current\n previous\n }\n transfers {\n change\n current\n previous\n }\n uniqueBuyers {\n change\n current\n previous\n }\n uniqueMinters {\n change\n current\n previous\n }\n uniqueSalesWallets {\n change\n current\n previous\n }\n uniqueSellers {\n change\n current\n previous\n }\n }\n startTime\n usd {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n }\n stats12h {\n endTime\n networkBaseToken {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n nonCurrency {\n mints {\n change\n current\n previous\n }\n sales {\n change\n current\n previous\n }\n tokensSold {\n change\n current\n previous\n }\n transfers {\n change\n current\n previous\n }\n uniqueBuyers {\n change\n current\n previous\n }\n uniqueMinters {\n change\n current\n previous\n }\n uniqueSalesWallets {\n change\n current\n previous\n }\n uniqueSellers {\n change\n current\n previous\n }\n }\n startTime\n usd {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n }\n stats24h {\n endTime\n networkBaseToken {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n nonCurrency {\n mints {\n change\n current\n previous\n }\n sales {\n change\n current\n previous\n }\n tokensSold {\n change\n current\n previous\n }\n transfers {\n change\n current\n previous\n }\n uniqueBuyers {\n change\n current\n previous\n }\n uniqueMinters {\n change\n current\n previous\n }\n uniqueSalesWallets {\n change\n current\n previous\n }\n uniqueSellers {\n change\n current\n previous\n }\n }\n startTime\n usd {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n }\n symbol\n timestamp\n totalSupply\n }\n }\n}": typeof types.FilterNftCollectionsDocument, - "query FilterNftParallelAssets($filters: ParallelAssetFilters, $limit: Int, $match: ParallelAssetMatchers, $offset: Int, $phrase: String, $rankings: [ParallelAssetRanking]) {\n filterNftParallelAssets(\n filters: $filters\n limit: $limit\n match: $match\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n ) {\n count\n offset\n results {\n address\n description\n gameData {\n attack\n cardType\n cost\n functionText\n health\n parallel\n passiveAbility\n rarity\n subtype\n }\n id\n lastPriceNetworkBaseToken\n lastPriceUsd\n media {\n image\n processed\n thumbLg\n thumbSm\n }\n metadata {\n artist\n class\n expansion\n flavourText\n parallelId\n paraset\n supply\n }\n name\n networkId\n originalImage\n parallelId\n timestamp\n tokenId\n uri\n }\n }\n}": typeof types.FilterNftParallelAssetsDocument, - "query FilterNftPoolCollections($filters: NftPoolCollectionFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [NftPoolCollectionRanking]) {\n filterNftPoolCollections(\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n ) {\n count\n page\n results {\n balanceNBT\n balanceUSD\n collectionAddress\n ercType\n exchangeAddress\n expenseNBT24\n expenseNBTAll\n expenseUSD24\n expenseUSDAll\n floorNBT\n floorUSD\n highPriceNBT24\n highPriceNBTAll\n highPriceUSD24\n highPriceUSDAll\n id\n imageUrl\n lowPriceNBT24\n lowPriceNBTAll\n lowPriceUSD24\n lowPriceUSDAll\n name\n networkId\n nftBalanceV2\n nftVolume24V2\n nftVolumeAllV2\n nftsBought24V2\n nftsBoughtAllV2\n nftsSold24V2\n nftsSoldAllV2\n offerNBT\n offerUSD\n poolFeesNBT24\n poolFeesNBTAll\n poolFeesUSD24\n poolFeesUSDAll\n protocolFeesNBT24\n protocolFeesNBTAll\n protocolFeesUSD24\n protocolFeesUSDAll\n revenueNBT24\n revenueNBTAll\n revenueUSD24\n revenueUSDAll\n symbol\n timestamp\n totalSupplyV2\n volumeNBT24\n volumeNBTAll\n volumeUSD24\n volumeUSDAll\n }\n }\n}": typeof types.FilterNftPoolCollectionsDocument, - "query FilterNftPools($filters: NftPoolFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [NftPoolRanking]) {\n filterNftPools(\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n ) {\n count\n page\n results {\n acceptedNftTokenIds\n assetRecipientAddress\n balanceNBT\n balanceT\n balanceUSD\n bondingCurveAddress\n collectionAddress\n collectionName\n collectionSymbol\n delta\n exchangeAddress\n expenseNBT24\n expenseNBTAll\n expenseT24\n expenseTAll\n expenseUSD24\n expenseUSDAll\n feeAmount\n id\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 nftBalanceV2\n nftVolume24V2\n nftVolumeAllV2\n nftsBought24V2\n nftsBoughtAllV2\n nftsSold24V2\n nftsSoldAllV2\n offerNBT\n offerT\n offerUSD\n ownerAddress\n poolAddress\n poolFeesNBT24\n poolFeesNBTAll\n poolFeesT24\n poolFeesTAll\n poolFeesUSD24\n poolFeesUSDAll\n poolNftType\n poolType\n poolVariant\n propertyChecker\n protocolFeesNBT24\n protocolFeesNBTAll\n protocolFeesT24\n protocolFeesTAll\n protocolFeesUSD24\n protocolFeesUSDAll\n revenueNBT24\n revenueNBTAll\n revenueT24\n revenueTAll\n revenueUSD24\n revenueUSDAll\n royalties {\n percent\n recipient\n }\n sellNBT\n sellT\n sellUSD\n spotNBT\n spotT\n timestamp\n tokenAddress\n version\n volumeNBT24\n volumeNBTAll\n volumeT24\n volumeTAll\n volumeUSD24\n volumeUSDAll\n }\n }\n}": typeof types.FilterNftPoolsDocument, - "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 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 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 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 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 }\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 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 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 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 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 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 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 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 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 }\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 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 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 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 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 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]) {\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 ) {\n count\n page\n results {\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 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 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 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 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 }\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 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 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 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 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 }\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 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 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]) {\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 ) {\n count\n page\n results {\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 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 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 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 }\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 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 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 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 }\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 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 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 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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\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 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 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 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 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 }\n s\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n volume\n volumeNativeToken\n }\n}": typeof types.GetBarsDocument, + "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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\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 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 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 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 }\n s\n sellVolume\n sellers\n sells\n t\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 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 }\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 GetDetailedNftStats($bucketCount: Int, $collectionAddress: String!, $durations: [DetailedNftStatsDuration], $grouping: String, $networkId: Int!, $timestamp: Int) {\n getDetailedNftStats(\n bucketCount: $bucketCount\n collectionAddress: $collectionAddress\n durations: $durations\n grouping: $grouping\n networkId: $networkId\n timestamp: $timestamp\n ) {\n collectionAddress\n grouping\n networkId\n stats_day1 {\n duration\n end\n start\n statsNetworkBaseToken {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsNonCurrency {\n mints {\n buckets\n change\n currentValue\n previousValue\n }\n sales {\n buckets\n change\n currentValue\n previousValue\n }\n tokensSold {\n buckets\n change\n currentValue\n previousValue\n }\n transfers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueBuyers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueMinters {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSalesWallets {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSellers {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\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 statsNetworkBaseToken {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsNonCurrency {\n mints {\n buckets\n change\n currentValue\n previousValue\n }\n sales {\n buckets\n change\n currentValue\n previousValue\n }\n tokensSold {\n buckets\n change\n currentValue\n previousValue\n }\n transfers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueBuyers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueMinters {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSalesWallets {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSellers {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\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 statsNetworkBaseToken {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsNonCurrency {\n mints {\n buckets\n change\n currentValue\n previousValue\n }\n sales {\n buckets\n change\n currentValue\n previousValue\n }\n tokensSold {\n buckets\n change\n currentValue\n previousValue\n }\n transfers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueBuyers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueMinters {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSalesWallets {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSellers {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\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 statsNetworkBaseToken {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsNonCurrency {\n mints {\n buckets\n change\n currentValue\n previousValue\n }\n sales {\n buckets\n change\n currentValue\n previousValue\n }\n tokensSold {\n buckets\n change\n currentValue\n previousValue\n }\n transfers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueBuyers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueMinters {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSalesWallets {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSellers {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\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 statsNetworkBaseToken {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsNonCurrency {\n mints {\n buckets\n change\n currentValue\n previousValue\n }\n sales {\n buckets\n change\n currentValue\n previousValue\n }\n tokensSold {\n buckets\n change\n currentValue\n previousValue\n }\n transfers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueBuyers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueMinters {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSalesWallets {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSellers {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\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 statsNetworkBaseToken {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsNonCurrency {\n mints {\n buckets\n change\n currentValue\n previousValue\n }\n sales {\n buckets\n change\n currentValue\n previousValue\n }\n tokensSold {\n buckets\n change\n currentValue\n previousValue\n }\n transfers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueBuyers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueMinters {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSalesWallets {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSellers {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\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 }\n}": typeof types.GetDetailedNftStatsDocument, - "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 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 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 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 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 }\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 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 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 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 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 }\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 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 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 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 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 }\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 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 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 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 }\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 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, "query GetNetworkConfigs($networkIds: [Int!]) {\n getNetworkConfigs(networkIds: $networkIds) {\n ... on AptosNetworkConfig {\n baseTokenAddress\n baseTokenSymbol\n color\n defaultPairAddress\n defaultPairQuoteToken\n enabled\n explorer {\n checksummed\n icon\n name\n url\n }\n id\n mainnet\n name\n networkIconUrl\n networkId\n networkName\n networkShortName\n networkType\n newTokensEnabled\n stableCoinAddresses\n wrappedBaseTokenSymbol\n }\n ... on EvmNetworkConfig {\n baseTokenAddress\n baseTokenSymbol\n color\n defaultPairAddress\n defaultPairQuoteToken\n enabled\n explorer {\n checksummed\n icon\n name\n url\n }\n id\n mainnet\n name\n networkIconUrl\n networkId\n networkName\n networkShortName\n networkType\n newTokensEnabled\n stableCoinAddresses\n wrappedBaseTokenSymbol\n }\n ... on SolanaNetworkConfig {\n baseTokenAddress\n baseTokenSymbol\n color\n defaultPairAddress\n defaultPairQuoteToken\n enabled\n explorer {\n checksummed\n icon\n name\n url\n }\n id\n mainnet\n name\n networkIconUrl\n networkId\n networkName\n networkShortName\n networkType\n newTokensEnabled\n stableCoinAddresses\n wrappedBaseTokenSymbol\n }\n ... on StarknetNetworkConfig {\n baseTokenAddress\n baseTokenSymbol\n color\n defaultPairAddress\n defaultPairQuoteToken\n enabled\n explorer {\n checksummed\n icon\n name\n url\n }\n id\n mainnet\n name\n networkIconUrl\n networkId\n networkName\n networkShortName\n networkType\n newTokensEnabled\n stableCoinAddresses\n wrappedBaseTokenSymbol\n }\n ... on SuiNetworkConfig {\n baseTokenAddress\n baseTokenSymbol\n color\n defaultPairAddress\n defaultPairQuoteToken\n enabled\n explorer {\n checksummed\n icon\n name\n url\n }\n id\n mainnet\n name\n networkIconUrl\n networkId\n networkName\n networkShortName\n networkType\n newTokensEnabled\n stableCoinAddresses\n wrappedBaseTokenSymbol\n }\n }\n}": typeof types.GetNetworkConfigsDocument, "query GetNetworkStats($exchangeAddress: String, $networkId: Int!) {\n getNetworkStats(exchangeAddress: $exchangeAddress, networkId: $networkId) {\n liquidity\n transactions1\n transactions4\n transactions5m\n transactions12\n transactions24\n volume1\n volume4\n volume5m\n volume12\n volume24\n volumeChange1\n volumeChange4\n volumeChange5m\n volumeChange12\n volumeChange24\n }\n}": typeof types.GetNetworkStatsDocument, "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 GetNftAssets($address: String!, $cursor: String, $fetchMissingAssets: Boolean, $limit: Int, $networkId: Int!, $tokenIds: [String]) {\n getNftAssets(\n address: $address\n cursor: $cursor\n fetchMissingAssets: $fetchMissingAssets\n limit: $limit\n networkId: $networkId\n tokenIds: $tokenIds\n ) {\n cursor\n itemErrors {\n address\n id\n message\n networkId\n status\n tokenId\n }\n items {\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 }\n}": typeof types.GetNftAssetsDocument, - "query GetNftCollectionMetadata($address: String, $collectionId: String, $networkId: Int) {\n getNftCollectionMetadata(\n address: $address\n collectionId: $collectionId\n networkId: $networkId\n ) {\n contract {\n address\n description\n ercType\n id\n image\n name\n networkId\n symbol\n totalSupply\n }\n id\n media {\n image\n processed\n thumbLg\n thumbSm\n }\n stats {\n networkBaseTokenPriceStats {\n average\n averageChange\n ceiling\n ceilingChange\n floor\n floorChange\n volume\n volumeByFillsource {\n amount\n change\n fillsource\n }\n volumeChange\n volumePercentByFillsource {\n amount\n change\n fillsource\n }\n }\n tradeCount\n tradeCountChange\n usdPriceStats {\n average\n averageChange\n ceiling\n ceilingChange\n floor\n floorChange\n volume\n volumeByFillsource {\n amount\n change\n fillsource\n }\n volumeChange\n volumePercentByFillsource {\n amount\n change\n fillsource\n }\n }\n window\n }\n }\n}": typeof types.GetNftCollectionMetadataDocument, - "query GetNftContracts($contracts: [NftContractInput]) {\n getNftContracts(contracts: $contracts) {\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}": typeof types.GetNftContractsDocument, - "query GetNftEvents($address: String, $cursor: String, $exchangeAddress: String, $includeTransfers: Boolean, $limit: Int, $networkId: Int!, $poolAddress: String, $timestamp: EventQueryTimestampInput, $tokenId: String) {\n getNftEvents(\n address: $address\n cursor: $cursor\n exchangeAddress: $exchangeAddress\n includeTransfers: $includeTransfers\n limit: $limit\n networkId: $networkId\n poolAddress: $poolAddress\n timestamp: $timestamp\n tokenId: $tokenId\n ) {\n cursor\n items {\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 }\n}": typeof types.GetNftEventsDocument, - "query GetNftPool($address: String!, $networkId: Int!) {\n getNftPool(address: $address, networkId: $networkId) {\n acceptedNftTokenIds\n assetRecipientAddress\n balanceNBT\n balanceT\n bondingCurveAddress\n bondingCurveType\n collectionAddress\n collectionName\n collectionSymbol\n delta\n exchangeAddress\n fee\n floorNBT\n floorT\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 nftBalanceV2\n nftVolumeAllTimeV2\n offerNBT\n offerT\n owner\n poolAddress\n poolFeesAllTimeNBT\n poolFeesAllTimeT\n poolId\n poolNftType\n poolType\n poolVariant\n propertyChecker\n royalties {\n percent\n recipient\n }\n spotPriceNBT\n spotPriceT\n tokenAddress\n version\n volumeAllTimeNBT\n volumeAllTimeT\n }\n}": typeof types.GetNftPoolDocument, - "query GetNftPoolCollection($collectionAddress: String!, $exchangeAddress: String!, $networkId: Int!) {\n getNftPoolCollection(\n collectionAddress: $collectionAddress\n exchangeAddress: $exchangeAddress\n networkId: $networkId\n ) {\n balanceNBT\n collectionAddress\n collectionId\n collectionSymbol\n exchangeAddress\n exchangeId\n floorNBT\n image\n name\n networkId\n nftBalanceV2\n nftVolumeAllTimeV2\n offerNBT\n poolFeesNBTAll\n poolFeesUSDAll\n protocolFeesNBTAll\n protocolFeesUSDAll\n royaltiesNBTAllEstimate\n royaltiesUSDAllEstimate\n volumeAllTimeNBT\n volumeAllTimeUSD\n }\n}": typeof types.GetNftPoolCollectionDocument, - "query GetNftPoolCollectionsByExchange($cursor: String, $exchangeAddress: String!, $limit: Int, $networkId: Int!) {\n getNftPoolCollectionsByExchange(\n cursor: $cursor\n exchangeAddress: $exchangeAddress\n limit: $limit\n networkId: $networkId\n ) {\n cursor\n items {\n balanceNBT\n collectionAddress\n collectionId\n collectionSymbol\n exchangeAddress\n exchangeId\n floorNBT\n image\n name\n networkId\n nftBalanceV2\n nftVolumeAllTimeV2\n offerNBT\n poolFeesNBTAll\n poolFeesUSDAll\n protocolFeesNBTAll\n protocolFeesUSDAll\n royaltiesNBTAllEstimate\n royaltiesUSDAllEstimate\n volumeAllTimeNBT\n volumeAllTimeUSD\n }\n }\n}": typeof types.GetNftPoolCollectionsByExchangeDocument, - "query GetNftPoolEvents($collectionAddress: String, $cursor: String, $eventTypes: [NftPoolEventType!], $exchangeAddress: String, $limit: Int, $networkId: Int!, $poolAddress: String, $timestamp: EventQueryTimestampInput) {\n getNftPoolEvents(\n collectionAddress: $collectionAddress\n cursor: $cursor\n eventTypes: $eventTypes\n exchangeAddress: $exchangeAddress\n limit: $limit\n networkId: $networkId\n poolAddress: $poolAddress\n timestamp: $timestamp\n ) {\n cursor\n items {\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 }\n}": typeof types.GetNftPoolEventsDocument, - "query GetNftPoolStats($collectionAddress: String!, $endTime: Int!, $exchangeAddress: String!, $networkId: Int!, $poolAddress: String, $startTime: Int!) {\n getNftPoolStats(\n collectionAddress: $collectionAddress\n endTime: $endTime\n exchangeAddress: $exchangeAddress\n networkId: $networkId\n poolAddress: $poolAddress\n startTime: $startTime\n ) {\n closeBalanceNBT\n closeNftBalanceV2\n collectionAddress\n endTime\n exchangeAddress\n expenseNBT\n highFloorNBT\n highOfferNBT\n lowFloorNBT\n lowOfferNBT\n networkId\n nftVolumeV2\n nftsBoughtV2\n nftsSoldV2\n openBalanceNBT\n openNftBalanceV2\n poolAddress\n poolFeesNBT\n protocolFeesNBT\n revenueNBT\n startTime\n volumeNBT\n }\n}": typeof types.GetNftPoolStatsDocument, - "query GetNftPoolsByCollectionAndExchange($collectionAddress: String!, $cursor: String, $exchangeAddress: String!, $limit: Int, $networkId: Int!) {\n getNftPoolsByCollectionAndExchange(\n collectionAddress: $collectionAddress\n cursor: $cursor\n exchangeAddress: $exchangeAddress\n limit: $limit\n networkId: $networkId\n ) {\n cursor\n items {\n acceptedNftTokenIds\n assetRecipientAddress\n balanceNBT\n balanceT\n bondingCurveAddress\n bondingCurveType\n collectionAddress\n collectionName\n collectionSymbol\n delta\n exchangeAddress\n fee\n floorNBT\n floorT\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 nftBalanceV2\n nftVolumeAllTimeV2\n offerNBT\n offerT\n owner\n poolAddress\n poolFeesAllTimeNBT\n poolFeesAllTimeT\n poolId\n poolNftType\n poolType\n poolVariant\n propertyChecker\n royalties {\n percent\n recipient\n }\n spotPriceNBT\n spotPriceT\n tokenAddress\n version\n volumeAllTimeNBT\n volumeAllTimeT\n }\n }\n}": typeof types.GetNftPoolsByCollectionAndExchangeDocument, - "query GetNftPoolsByOwner($cursor: String, $exchangeAddress: String, $limit: Int, $networkId: Int!, $ownerAddress: String!) {\n getNftPoolsByOwner(\n cursor: $cursor\n exchangeAddress: $exchangeAddress\n limit: $limit\n networkId: $networkId\n ownerAddress: $ownerAddress\n ) {\n cursor\n items {\n acceptedNftTokenIds\n assetRecipientAddress\n balanceNBT\n balanceT\n bondingCurveAddress\n bondingCurveType\n collectionAddress\n collectionName\n collectionSymbol\n delta\n exchangeAddress\n fee\n floorNBT\n floorT\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 nftBalanceV2\n nftVolumeAllTimeV2\n offerNBT\n offerT\n owner\n poolAddress\n poolFeesAllTimeNBT\n poolFeesAllTimeT\n poolId\n poolNftType\n poolType\n poolVariant\n propertyChecker\n royalties {\n percent\n recipient\n }\n spotPriceNBT\n spotPriceT\n tokenAddress\n version\n volumeAllTimeNBT\n volumeAllTimeT\n }\n }\n}": typeof types.GetNftPoolsByOwnerDocument, - "query GetParallelCardChanges($cursor: String, $limit: Int, $timestamp: ParallelCardChangeQueryTimestampInput, $tokenId: String) {\n getParallelCardChanges(\n cursor: $cursor\n limit: $limit\n timestamp: $timestamp\n tokenId: $tokenId\n ) {\n cursor\n items {\n diff {\n new {\n artist\n attack\n cardType\n class\n cost\n expansion\n flavourText\n functionText\n health\n parallel\n parallelId\n paraset\n passiveAbility\n rarity\n subtype\n supply\n }\n old {\n artist\n attack\n cardType\n class\n cost\n expansion\n flavourText\n functionText\n health\n parallel\n parallelId\n paraset\n passiveAbility\n rarity\n subtype\n supply\n }\n }\n timestamp\n tokenId\n }\n }\n}": typeof types.GetParallelCardChangesDocument, - "query GetPrimePoolAssets($cursor: String, $limit: Int, $networkId: Int!, $poolContractAddress: String, $poolId: String, $walletAddress: String) {\n getPrimePoolAssets(\n cursor: $cursor\n limit: $limit\n networkId: $networkId\n poolContractAddress: $poolContractAddress\n poolId: $poolId\n walletAddress: $walletAddress\n ) {\n cursor\n items {\n amount\n ethRewardDebt\n from\n fromHashKey\n fromSortKey\n id\n networkId\n poolContractAddress\n poolId\n primeRewardDebt\n sortKey\n }\n }\n}": typeof types.GetPrimePoolAssetsDocument, - "query GetPrimePoolEvents($cursor: String, $eventTypes: [PrimePoolEventType], $limit: Int, $networkId: Int!, $poolContractAddress: String, $poolId: String, $walletAddress: String) {\n getPrimePoolEvents(\n cursor: $cursor\n eventTypes: $eventTypes\n limit: $limit\n networkId: $networkId\n poolContractAddress: $poolContractAddress\n poolId: $poolId\n walletAddress: $walletAddress\n ) {\n cursor\n items {\n blockHash\n blockNumber\n data {\n ... on PrimePoolCacheData {\n eventAmount\n totalSupply\n type\n user\n userCachedAmount\n userEthRewardDebt\n userPrimeRewardDebt\n }\n ... on PrimePoolCachingPausedData {\n cachingPaused\n type\n }\n ... on PrimePoolClaimEthData {\n currency\n ethClaimed\n eventAmount\n type\n user\n userEthRewardDebt\n }\n ... on PrimePoolClaimPrimeData {\n currency\n eventAmount\n type\n user\n userPrimeRewardDebt\n }\n ... on PrimePoolEmergencyWithdrawData {\n eventAmount\n totalSupply\n type\n user\n userCachedAmount\n userEthRewardDebt\n userPrimeRewardDebt\n }\n ... on PrimePoolEndTimestampUpdatedEthData {\n currency\n ethEndTimestamp\n ethPerSecond\n ethStartTimestamp\n type\n }\n ... on PrimePoolEndTimestampUpdatedPrimeData {\n currency\n primeEndTimestamp\n primePerSecond\n primeStartTimestamp\n type\n }\n ... on PrimePoolEthRewardsAddedData {\n amount\n totalRewards\n type\n }\n ... on PrimePoolEthRewardsSetData {\n amount\n totalRewards\n type\n }\n ... on PrimePoolLogPoolAdditionData {\n tokenIds\n type\n }\n ... on PrimePoolLogPoolSetAllocPointData {\n allocPoint\n currency\n totalAllocPoint\n type\n }\n ... on PrimePoolLogSetPerSecondData {\n amount\n currency\n endTimestamp\n ethAmountPerSecond\n primeAmountPerSecond\n startTimestamp\n type\n }\n ... on PrimePoolLogUpdatePoolData {\n accPerShare\n currency\n ethAmount\n lastRewardTimestamp\n primeAmount\n supply\n totalSupply\n type\n }\n ... on PrimePoolRewardDecreaseData {\n currency\n eventAmount\n type\n updatedAmount\n }\n ... on PrimePoolRewardIncreaseData {\n currency\n eventAmount\n type\n updatedAmount\n }\n ... on PrimePoolTimeCachePeriodUpdateData {\n currency\n timedCachePeriod\n type\n }\n ... on PrimePoolWithdrawData {\n eventAmount\n totalSupply\n type\n user\n userCachedAmount\n userEthRewardDebt\n userPrimeRewardDebt\n }\n }\n eventType\n from\n fromHashKey\n id\n logIndex\n networkId\n poolContractAddress\n poolId\n poolType\n sortKey\n timestamp\n transactionHash\n transactionIndex\n }\n }\n}": typeof types.GetPrimePoolEventsDocument, - "query GetPrimePools($address: String!, $cursor: String, $limit: Int, $networkId: Int!, $poolIds: [String]) {\n getPrimePools(\n address: $address\n cursor: $cursor\n limit: $limit\n networkId: $networkId\n poolIds: $poolIds\n ) {\n cursor\n items {\n calcData {\n poolAccumulatedEth\n poolAccumulatedPrime\n poolEthAmount\n poolEthPerDay\n poolEthPerSecond\n poolPrimeAmount\n poolPrimePerDay\n poolPrimePerSecond\n shareAccumulatedEth\n shareAccumulatedPrime\n shareEthPerDay\n shareEthPerSecond\n sharePrimePerDay\n sharePrimePerSecond\n }\n chainData {\n cachingPaused\n ethAllocPoint\n ethClaimed\n ethEndTimestamp\n ethLastRewardTimestamp\n ethReward\n ethStartTimestamp\n ethTimedCachePeriod\n ethTotalAllocPoint\n primeAllocPoint\n primeEndTimestamp\n primeLastRewardTimestamp\n primeStartTimestamp\n primeTotalAllocPoint\n }\n createdAt\n discoveryBlockNumber\n discoveryTransactionHash\n id\n networkId\n nftContractAddress\n poolContractAddress\n poolId\n poolType\n tokenIds\n totalSupply\n }\n }\n}": typeof types.GetPrimePoolsDocument, "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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n s\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 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 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 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 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 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 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 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 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 }\n}": typeof types.LiquidityLocksDocument, + "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 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 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 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 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 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 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 }\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 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 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 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 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 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 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 }\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 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 volume\n }\n }\n}": typeof types.ListPairsWithMetadataForTokenDocument, - "query NftHolders($input: NftHoldersInput!) {\n nftHolders(input: $input) {\n count\n cursor\n items {\n balance\n collectionId\n walletAddress\n }\n status\n }\n}": typeof types.NftHoldersDocument, - "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 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 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 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 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 volume1\n volume4\n volume5m\n volume12\n volume24\n }\n}": typeof types.PairMetadataDocument, - "query PrimeHolders($cursor: String) {\n primeHolders(cursor: $cursor) {\n count\n cursor\n items {\n address\n balance\n balanceUsd\n firstHeldTimestamp\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 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 tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n }\n}": typeof types.PrimeHoldersDocument, - "query SearchNfts($filterWashTrading: Boolean, $include: [NftSearchable!], $limit: Int, $networkFilter: [Int!], $search: String, $window: String) {\n searchNfts(\n filterWashTrading: $filterWashTrading\n include: $include\n limit: $limit\n networkFilter: $networkFilter\n search: $search\n window: $window\n ) {\n hasMore\n items {\n address\n average\n ceiling\n floor\n id\n imageUrl\n name\n networkId\n symbol\n tradeCount\n tradeCountChange\n volume\n volumeChange\n window\n }\n }\n}": typeof types.SearchNftsDocument, + "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 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 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 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 }\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 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 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 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 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 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 }\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 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 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 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 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 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 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 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 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 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}": 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, @@ -85,15 +62,13 @@ type Documents = { "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, - "query WalletNftCollectionAssets($input: WalletNftCollectionAssetsInput!) {\n walletNftCollectionAssets(input: $input) {\n collectionId\n cursor\n items {\n quantity\n tokenId\n }\n walletAddress\n }\n}": typeof types.WalletNftCollectionAssetsDocument, - "query WalletNftCollections($input: WalletNftCollectionsInput!) {\n walletNftCollections(input: $input) {\n cursor\n items {\n collectionId\n quantity\n walletAddress\n }\n }\n}": typeof types.WalletNftCollectionsDocument, - "subscription OnBalanceUpdated($walletAddress: String!) {\n onBalanceUpdated(walletAddress: $walletAddress) {\n address\n balance\n balanceUsd\n firstHeldTimestamp\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 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 tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n}": typeof types.OnBalanceUpdatedDocument, + "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 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 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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 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 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 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 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 OnHoldersUpdated($tokenId: String!) {\n onHoldersUpdated(tokenId: $tokenId) {\n balances {\n address\n balance\n balanceUsd\n firstHeldTimestamp\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 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 tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n holders\n networkId\n tokenAddress\n tokenId\n }\n}": typeof types.OnHoldersUpdatedDocument, + "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 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 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 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 transactions1\n volume1\n }\n}": typeof types.OnLaunchpadTokenEventDocument, @@ -101,7 +76,7 @@ type Documents = { "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 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 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 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 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 volume1\n volume4\n volume5m\n volume12\n volume24\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 cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\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 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 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 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 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 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 OnPriceUpdated($address: String, $networkId: Int, $sourcePairAddress: String) {\n onPriceUpdated(\n address: $address\n networkId: $networkId\n sourcePairAddress: $sourcePairAddress\n ) {\n address\n blockNumber\n networkId\n priceUsd\n timestamp\n }\n}": typeof types.OnPriceUpdatedDocument, "subscription OnPricesUpdated($input: [OnPricesUpdatedInput!]!) {\n onPricesUpdated(input: $input) {\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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, @@ -117,64 +92,41 @@ 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 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 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 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 cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\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 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 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 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 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 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 cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\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 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 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 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 firstFunding {\n amount\n fundedAt\n fundedByAddress\n fundedByLabel\n networkId\n tokenAddress\n transactionHash\n }\n firstSeenTimestamp\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 FilterNftCollections($collections: [String], $filters: NftCollectionFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [NftCollectionRanking]) {\n filterNftCollections(\n collections: $collections\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n ) {\n count\n offset\n results {\n address\n ercType\n grouping\n id\n imageUrl\n lastEventTimestamp\n name\n networkId\n stats1h {\n endTime\n networkBaseToken {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n nonCurrency {\n mints {\n change\n current\n previous\n }\n sales {\n change\n current\n previous\n }\n tokensSold {\n change\n current\n previous\n }\n transfers {\n change\n current\n previous\n }\n uniqueBuyers {\n change\n current\n previous\n }\n uniqueMinters {\n change\n current\n previous\n }\n uniqueSalesWallets {\n change\n current\n previous\n }\n uniqueSellers {\n change\n current\n previous\n }\n }\n startTime\n usd {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n }\n stats4h {\n endTime\n networkBaseToken {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n nonCurrency {\n mints {\n change\n current\n previous\n }\n sales {\n change\n current\n previous\n }\n tokensSold {\n change\n current\n previous\n }\n transfers {\n change\n current\n previous\n }\n uniqueBuyers {\n change\n current\n previous\n }\n uniqueMinters {\n change\n current\n previous\n }\n uniqueSalesWallets {\n change\n current\n previous\n }\n uniqueSellers {\n change\n current\n previous\n }\n }\n startTime\n usd {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n }\n stats12h {\n endTime\n networkBaseToken {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n nonCurrency {\n mints {\n change\n current\n previous\n }\n sales {\n change\n current\n previous\n }\n tokensSold {\n change\n current\n previous\n }\n transfers {\n change\n current\n previous\n }\n uniqueBuyers {\n change\n current\n previous\n }\n uniqueMinters {\n change\n current\n previous\n }\n uniqueSalesWallets {\n change\n current\n previous\n }\n uniqueSellers {\n change\n current\n previous\n }\n }\n startTime\n usd {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n }\n stats24h {\n endTime\n networkBaseToken {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n nonCurrency {\n mints {\n change\n current\n previous\n }\n sales {\n change\n current\n previous\n }\n tokensSold {\n change\n current\n previous\n }\n transfers {\n change\n current\n previous\n }\n uniqueBuyers {\n change\n current\n previous\n }\n uniqueMinters {\n change\n current\n previous\n }\n uniqueSalesWallets {\n change\n current\n previous\n }\n uniqueSellers {\n change\n current\n previous\n }\n }\n startTime\n usd {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n }\n symbol\n timestamp\n totalSupply\n }\n }\n}": types.FilterNftCollectionsDocument, - "query FilterNftParallelAssets($filters: ParallelAssetFilters, $limit: Int, $match: ParallelAssetMatchers, $offset: Int, $phrase: String, $rankings: [ParallelAssetRanking]) {\n filterNftParallelAssets(\n filters: $filters\n limit: $limit\n match: $match\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n ) {\n count\n offset\n results {\n address\n description\n gameData {\n attack\n cardType\n cost\n functionText\n health\n parallel\n passiveAbility\n rarity\n subtype\n }\n id\n lastPriceNetworkBaseToken\n lastPriceUsd\n media {\n image\n processed\n thumbLg\n thumbSm\n }\n metadata {\n artist\n class\n expansion\n flavourText\n parallelId\n paraset\n supply\n }\n name\n networkId\n originalImage\n parallelId\n timestamp\n tokenId\n uri\n }\n }\n}": types.FilterNftParallelAssetsDocument, - "query FilterNftPoolCollections($filters: NftPoolCollectionFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [NftPoolCollectionRanking]) {\n filterNftPoolCollections(\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n ) {\n count\n page\n results {\n balanceNBT\n balanceUSD\n collectionAddress\n ercType\n exchangeAddress\n expenseNBT24\n expenseNBTAll\n expenseUSD24\n expenseUSDAll\n floorNBT\n floorUSD\n highPriceNBT24\n highPriceNBTAll\n highPriceUSD24\n highPriceUSDAll\n id\n imageUrl\n lowPriceNBT24\n lowPriceNBTAll\n lowPriceUSD24\n lowPriceUSDAll\n name\n networkId\n nftBalanceV2\n nftVolume24V2\n nftVolumeAllV2\n nftsBought24V2\n nftsBoughtAllV2\n nftsSold24V2\n nftsSoldAllV2\n offerNBT\n offerUSD\n poolFeesNBT24\n poolFeesNBTAll\n poolFeesUSD24\n poolFeesUSDAll\n protocolFeesNBT24\n protocolFeesNBTAll\n protocolFeesUSD24\n protocolFeesUSDAll\n revenueNBT24\n revenueNBTAll\n revenueUSD24\n revenueUSDAll\n symbol\n timestamp\n totalSupplyV2\n volumeNBT24\n volumeNBTAll\n volumeUSD24\n volumeUSDAll\n }\n }\n}": types.FilterNftPoolCollectionsDocument, - "query FilterNftPools($filters: NftPoolFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [NftPoolRanking]) {\n filterNftPools(\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n ) {\n count\n page\n results {\n acceptedNftTokenIds\n assetRecipientAddress\n balanceNBT\n balanceT\n balanceUSD\n bondingCurveAddress\n collectionAddress\n collectionName\n collectionSymbol\n delta\n exchangeAddress\n expenseNBT24\n expenseNBTAll\n expenseT24\n expenseTAll\n expenseUSD24\n expenseUSDAll\n feeAmount\n id\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 nftBalanceV2\n nftVolume24V2\n nftVolumeAllV2\n nftsBought24V2\n nftsBoughtAllV2\n nftsSold24V2\n nftsSoldAllV2\n offerNBT\n offerT\n offerUSD\n ownerAddress\n poolAddress\n poolFeesNBT24\n poolFeesNBTAll\n poolFeesT24\n poolFeesTAll\n poolFeesUSD24\n poolFeesUSDAll\n poolNftType\n poolType\n poolVariant\n propertyChecker\n protocolFeesNBT24\n protocolFeesNBTAll\n protocolFeesT24\n protocolFeesTAll\n protocolFeesUSD24\n protocolFeesUSDAll\n revenueNBT24\n revenueNBTAll\n revenueT24\n revenueTAll\n revenueUSD24\n revenueUSDAll\n royalties {\n percent\n recipient\n }\n sellNBT\n sellT\n sellUSD\n spotNBT\n spotT\n timestamp\n tokenAddress\n version\n volumeNBT24\n volumeNBTAll\n volumeT24\n volumeTAll\n volumeUSD24\n volumeUSDAll\n }\n }\n}": types.FilterNftPoolsDocument, - "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 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 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 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 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 }\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 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 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 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 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 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 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 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 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 }\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 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 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 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 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 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]) {\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 ) {\n count\n page\n results {\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 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 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 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 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 }\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 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 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 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 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 }\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 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 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]) {\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 ) {\n count\n page\n results {\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 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 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 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 }\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 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 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 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 }\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 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 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 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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\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 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 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 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 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 }\n s\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n volume\n volumeNativeToken\n }\n}": types.GetBarsDocument, + "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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\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 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 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 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 }\n s\n sellVolume\n sellers\n sells\n t\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 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 }\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 GetDetailedNftStats($bucketCount: Int, $collectionAddress: String!, $durations: [DetailedNftStatsDuration], $grouping: String, $networkId: Int!, $timestamp: Int) {\n getDetailedNftStats(\n bucketCount: $bucketCount\n collectionAddress: $collectionAddress\n durations: $durations\n grouping: $grouping\n networkId: $networkId\n timestamp: $timestamp\n ) {\n collectionAddress\n grouping\n networkId\n stats_day1 {\n duration\n end\n start\n statsNetworkBaseToken {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsNonCurrency {\n mints {\n buckets\n change\n currentValue\n previousValue\n }\n sales {\n buckets\n change\n currentValue\n previousValue\n }\n tokensSold {\n buckets\n change\n currentValue\n previousValue\n }\n transfers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueBuyers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueMinters {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSalesWallets {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSellers {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\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 statsNetworkBaseToken {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsNonCurrency {\n mints {\n buckets\n change\n currentValue\n previousValue\n }\n sales {\n buckets\n change\n currentValue\n previousValue\n }\n tokensSold {\n buckets\n change\n currentValue\n previousValue\n }\n transfers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueBuyers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueMinters {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSalesWallets {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSellers {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\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 statsNetworkBaseToken {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsNonCurrency {\n mints {\n buckets\n change\n currentValue\n previousValue\n }\n sales {\n buckets\n change\n currentValue\n previousValue\n }\n tokensSold {\n buckets\n change\n currentValue\n previousValue\n }\n transfers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueBuyers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueMinters {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSalesWallets {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSellers {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\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 statsNetworkBaseToken {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsNonCurrency {\n mints {\n buckets\n change\n currentValue\n previousValue\n }\n sales {\n buckets\n change\n currentValue\n previousValue\n }\n tokensSold {\n buckets\n change\n currentValue\n previousValue\n }\n transfers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueBuyers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueMinters {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSalesWallets {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSellers {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\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 statsNetworkBaseToken {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsNonCurrency {\n mints {\n buckets\n change\n currentValue\n previousValue\n }\n sales {\n buckets\n change\n currentValue\n previousValue\n }\n tokensSold {\n buckets\n change\n currentValue\n previousValue\n }\n transfers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueBuyers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueMinters {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSalesWallets {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSellers {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\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 statsNetworkBaseToken {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsNonCurrency {\n mints {\n buckets\n change\n currentValue\n previousValue\n }\n sales {\n buckets\n change\n currentValue\n previousValue\n }\n tokensSold {\n buckets\n change\n currentValue\n previousValue\n }\n transfers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueBuyers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueMinters {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSalesWallets {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSellers {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\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 }\n}": types.GetDetailedNftStatsDocument, - "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 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 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 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 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 }\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 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 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 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 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 }\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 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 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 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 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 }\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 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 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 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 }\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 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, "query GetNetworkConfigs($networkIds: [Int!]) {\n getNetworkConfigs(networkIds: $networkIds) {\n ... on AptosNetworkConfig {\n baseTokenAddress\n baseTokenSymbol\n color\n defaultPairAddress\n defaultPairQuoteToken\n enabled\n explorer {\n checksummed\n icon\n name\n url\n }\n id\n mainnet\n name\n networkIconUrl\n networkId\n networkName\n networkShortName\n networkType\n newTokensEnabled\n stableCoinAddresses\n wrappedBaseTokenSymbol\n }\n ... on EvmNetworkConfig {\n baseTokenAddress\n baseTokenSymbol\n color\n defaultPairAddress\n defaultPairQuoteToken\n enabled\n explorer {\n checksummed\n icon\n name\n url\n }\n id\n mainnet\n name\n networkIconUrl\n networkId\n networkName\n networkShortName\n networkType\n newTokensEnabled\n stableCoinAddresses\n wrappedBaseTokenSymbol\n }\n ... on SolanaNetworkConfig {\n baseTokenAddress\n baseTokenSymbol\n color\n defaultPairAddress\n defaultPairQuoteToken\n enabled\n explorer {\n checksummed\n icon\n name\n url\n }\n id\n mainnet\n name\n networkIconUrl\n networkId\n networkName\n networkShortName\n networkType\n newTokensEnabled\n stableCoinAddresses\n wrappedBaseTokenSymbol\n }\n ... on StarknetNetworkConfig {\n baseTokenAddress\n baseTokenSymbol\n color\n defaultPairAddress\n defaultPairQuoteToken\n enabled\n explorer {\n checksummed\n icon\n name\n url\n }\n id\n mainnet\n name\n networkIconUrl\n networkId\n networkName\n networkShortName\n networkType\n newTokensEnabled\n stableCoinAddresses\n wrappedBaseTokenSymbol\n }\n ... on SuiNetworkConfig {\n baseTokenAddress\n baseTokenSymbol\n color\n defaultPairAddress\n defaultPairQuoteToken\n enabled\n explorer {\n checksummed\n icon\n name\n url\n }\n id\n mainnet\n name\n networkIconUrl\n networkId\n networkName\n networkShortName\n networkType\n newTokensEnabled\n stableCoinAddresses\n wrappedBaseTokenSymbol\n }\n }\n}": types.GetNetworkConfigsDocument, "query GetNetworkStats($exchangeAddress: String, $networkId: Int!) {\n getNetworkStats(exchangeAddress: $exchangeAddress, networkId: $networkId) {\n liquidity\n transactions1\n transactions4\n transactions5m\n transactions12\n transactions24\n volume1\n volume4\n volume5m\n volume12\n volume24\n volumeChange1\n volumeChange4\n volumeChange5m\n volumeChange12\n volumeChange24\n }\n}": types.GetNetworkStatsDocument, "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 GetNftAssets($address: String!, $cursor: String, $fetchMissingAssets: Boolean, $limit: Int, $networkId: Int!, $tokenIds: [String]) {\n getNftAssets(\n address: $address\n cursor: $cursor\n fetchMissingAssets: $fetchMissingAssets\n limit: $limit\n networkId: $networkId\n tokenIds: $tokenIds\n ) {\n cursor\n itemErrors {\n address\n id\n message\n networkId\n status\n tokenId\n }\n items {\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 }\n}": types.GetNftAssetsDocument, - "query GetNftCollectionMetadata($address: String, $collectionId: String, $networkId: Int) {\n getNftCollectionMetadata(\n address: $address\n collectionId: $collectionId\n networkId: $networkId\n ) {\n contract {\n address\n description\n ercType\n id\n image\n name\n networkId\n symbol\n totalSupply\n }\n id\n media {\n image\n processed\n thumbLg\n thumbSm\n }\n stats {\n networkBaseTokenPriceStats {\n average\n averageChange\n ceiling\n ceilingChange\n floor\n floorChange\n volume\n volumeByFillsource {\n amount\n change\n fillsource\n }\n volumeChange\n volumePercentByFillsource {\n amount\n change\n fillsource\n }\n }\n tradeCount\n tradeCountChange\n usdPriceStats {\n average\n averageChange\n ceiling\n ceilingChange\n floor\n floorChange\n volume\n volumeByFillsource {\n amount\n change\n fillsource\n }\n volumeChange\n volumePercentByFillsource {\n amount\n change\n fillsource\n }\n }\n window\n }\n }\n}": types.GetNftCollectionMetadataDocument, - "query GetNftContracts($contracts: [NftContractInput]) {\n getNftContracts(contracts: $contracts) {\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}": types.GetNftContractsDocument, - "query GetNftEvents($address: String, $cursor: String, $exchangeAddress: String, $includeTransfers: Boolean, $limit: Int, $networkId: Int!, $poolAddress: String, $timestamp: EventQueryTimestampInput, $tokenId: String) {\n getNftEvents(\n address: $address\n cursor: $cursor\n exchangeAddress: $exchangeAddress\n includeTransfers: $includeTransfers\n limit: $limit\n networkId: $networkId\n poolAddress: $poolAddress\n timestamp: $timestamp\n tokenId: $tokenId\n ) {\n cursor\n items {\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 }\n}": types.GetNftEventsDocument, - "query GetNftPool($address: String!, $networkId: Int!) {\n getNftPool(address: $address, networkId: $networkId) {\n acceptedNftTokenIds\n assetRecipientAddress\n balanceNBT\n balanceT\n bondingCurveAddress\n bondingCurveType\n collectionAddress\n collectionName\n collectionSymbol\n delta\n exchangeAddress\n fee\n floorNBT\n floorT\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 nftBalanceV2\n nftVolumeAllTimeV2\n offerNBT\n offerT\n owner\n poolAddress\n poolFeesAllTimeNBT\n poolFeesAllTimeT\n poolId\n poolNftType\n poolType\n poolVariant\n propertyChecker\n royalties {\n percent\n recipient\n }\n spotPriceNBT\n spotPriceT\n tokenAddress\n version\n volumeAllTimeNBT\n volumeAllTimeT\n }\n}": types.GetNftPoolDocument, - "query GetNftPoolCollection($collectionAddress: String!, $exchangeAddress: String!, $networkId: Int!) {\n getNftPoolCollection(\n collectionAddress: $collectionAddress\n exchangeAddress: $exchangeAddress\n networkId: $networkId\n ) {\n balanceNBT\n collectionAddress\n collectionId\n collectionSymbol\n exchangeAddress\n exchangeId\n floorNBT\n image\n name\n networkId\n nftBalanceV2\n nftVolumeAllTimeV2\n offerNBT\n poolFeesNBTAll\n poolFeesUSDAll\n protocolFeesNBTAll\n protocolFeesUSDAll\n royaltiesNBTAllEstimate\n royaltiesUSDAllEstimate\n volumeAllTimeNBT\n volumeAllTimeUSD\n }\n}": types.GetNftPoolCollectionDocument, - "query GetNftPoolCollectionsByExchange($cursor: String, $exchangeAddress: String!, $limit: Int, $networkId: Int!) {\n getNftPoolCollectionsByExchange(\n cursor: $cursor\n exchangeAddress: $exchangeAddress\n limit: $limit\n networkId: $networkId\n ) {\n cursor\n items {\n balanceNBT\n collectionAddress\n collectionId\n collectionSymbol\n exchangeAddress\n exchangeId\n floorNBT\n image\n name\n networkId\n nftBalanceV2\n nftVolumeAllTimeV2\n offerNBT\n poolFeesNBTAll\n poolFeesUSDAll\n protocolFeesNBTAll\n protocolFeesUSDAll\n royaltiesNBTAllEstimate\n royaltiesUSDAllEstimate\n volumeAllTimeNBT\n volumeAllTimeUSD\n }\n }\n}": types.GetNftPoolCollectionsByExchangeDocument, - "query GetNftPoolEvents($collectionAddress: String, $cursor: String, $eventTypes: [NftPoolEventType!], $exchangeAddress: String, $limit: Int, $networkId: Int!, $poolAddress: String, $timestamp: EventQueryTimestampInput) {\n getNftPoolEvents(\n collectionAddress: $collectionAddress\n cursor: $cursor\n eventTypes: $eventTypes\n exchangeAddress: $exchangeAddress\n limit: $limit\n networkId: $networkId\n poolAddress: $poolAddress\n timestamp: $timestamp\n ) {\n cursor\n items {\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 }\n}": types.GetNftPoolEventsDocument, - "query GetNftPoolStats($collectionAddress: String!, $endTime: Int!, $exchangeAddress: String!, $networkId: Int!, $poolAddress: String, $startTime: Int!) {\n getNftPoolStats(\n collectionAddress: $collectionAddress\n endTime: $endTime\n exchangeAddress: $exchangeAddress\n networkId: $networkId\n poolAddress: $poolAddress\n startTime: $startTime\n ) {\n closeBalanceNBT\n closeNftBalanceV2\n collectionAddress\n endTime\n exchangeAddress\n expenseNBT\n highFloorNBT\n highOfferNBT\n lowFloorNBT\n lowOfferNBT\n networkId\n nftVolumeV2\n nftsBoughtV2\n nftsSoldV2\n openBalanceNBT\n openNftBalanceV2\n poolAddress\n poolFeesNBT\n protocolFeesNBT\n revenueNBT\n startTime\n volumeNBT\n }\n}": types.GetNftPoolStatsDocument, - "query GetNftPoolsByCollectionAndExchange($collectionAddress: String!, $cursor: String, $exchangeAddress: String!, $limit: Int, $networkId: Int!) {\n getNftPoolsByCollectionAndExchange(\n collectionAddress: $collectionAddress\n cursor: $cursor\n exchangeAddress: $exchangeAddress\n limit: $limit\n networkId: $networkId\n ) {\n cursor\n items {\n acceptedNftTokenIds\n assetRecipientAddress\n balanceNBT\n balanceT\n bondingCurveAddress\n bondingCurveType\n collectionAddress\n collectionName\n collectionSymbol\n delta\n exchangeAddress\n fee\n floorNBT\n floorT\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 nftBalanceV2\n nftVolumeAllTimeV2\n offerNBT\n offerT\n owner\n poolAddress\n poolFeesAllTimeNBT\n poolFeesAllTimeT\n poolId\n poolNftType\n poolType\n poolVariant\n propertyChecker\n royalties {\n percent\n recipient\n }\n spotPriceNBT\n spotPriceT\n tokenAddress\n version\n volumeAllTimeNBT\n volumeAllTimeT\n }\n }\n}": types.GetNftPoolsByCollectionAndExchangeDocument, - "query GetNftPoolsByOwner($cursor: String, $exchangeAddress: String, $limit: Int, $networkId: Int!, $ownerAddress: String!) {\n getNftPoolsByOwner(\n cursor: $cursor\n exchangeAddress: $exchangeAddress\n limit: $limit\n networkId: $networkId\n ownerAddress: $ownerAddress\n ) {\n cursor\n items {\n acceptedNftTokenIds\n assetRecipientAddress\n balanceNBT\n balanceT\n bondingCurveAddress\n bondingCurveType\n collectionAddress\n collectionName\n collectionSymbol\n delta\n exchangeAddress\n fee\n floorNBT\n floorT\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 nftBalanceV2\n nftVolumeAllTimeV2\n offerNBT\n offerT\n owner\n poolAddress\n poolFeesAllTimeNBT\n poolFeesAllTimeT\n poolId\n poolNftType\n poolType\n poolVariant\n propertyChecker\n royalties {\n percent\n recipient\n }\n spotPriceNBT\n spotPriceT\n tokenAddress\n version\n volumeAllTimeNBT\n volumeAllTimeT\n }\n }\n}": types.GetNftPoolsByOwnerDocument, - "query GetParallelCardChanges($cursor: String, $limit: Int, $timestamp: ParallelCardChangeQueryTimestampInput, $tokenId: String) {\n getParallelCardChanges(\n cursor: $cursor\n limit: $limit\n timestamp: $timestamp\n tokenId: $tokenId\n ) {\n cursor\n items {\n diff {\n new {\n artist\n attack\n cardType\n class\n cost\n expansion\n flavourText\n functionText\n health\n parallel\n parallelId\n paraset\n passiveAbility\n rarity\n subtype\n supply\n }\n old {\n artist\n attack\n cardType\n class\n cost\n expansion\n flavourText\n functionText\n health\n parallel\n parallelId\n paraset\n passiveAbility\n rarity\n subtype\n supply\n }\n }\n timestamp\n tokenId\n }\n }\n}": types.GetParallelCardChangesDocument, - "query GetPrimePoolAssets($cursor: String, $limit: Int, $networkId: Int!, $poolContractAddress: String, $poolId: String, $walletAddress: String) {\n getPrimePoolAssets(\n cursor: $cursor\n limit: $limit\n networkId: $networkId\n poolContractAddress: $poolContractAddress\n poolId: $poolId\n walletAddress: $walletAddress\n ) {\n cursor\n items {\n amount\n ethRewardDebt\n from\n fromHashKey\n fromSortKey\n id\n networkId\n poolContractAddress\n poolId\n primeRewardDebt\n sortKey\n }\n }\n}": types.GetPrimePoolAssetsDocument, - "query GetPrimePoolEvents($cursor: String, $eventTypes: [PrimePoolEventType], $limit: Int, $networkId: Int!, $poolContractAddress: String, $poolId: String, $walletAddress: String) {\n getPrimePoolEvents(\n cursor: $cursor\n eventTypes: $eventTypes\n limit: $limit\n networkId: $networkId\n poolContractAddress: $poolContractAddress\n poolId: $poolId\n walletAddress: $walletAddress\n ) {\n cursor\n items {\n blockHash\n blockNumber\n data {\n ... on PrimePoolCacheData {\n eventAmount\n totalSupply\n type\n user\n userCachedAmount\n userEthRewardDebt\n userPrimeRewardDebt\n }\n ... on PrimePoolCachingPausedData {\n cachingPaused\n type\n }\n ... on PrimePoolClaimEthData {\n currency\n ethClaimed\n eventAmount\n type\n user\n userEthRewardDebt\n }\n ... on PrimePoolClaimPrimeData {\n currency\n eventAmount\n type\n user\n userPrimeRewardDebt\n }\n ... on PrimePoolEmergencyWithdrawData {\n eventAmount\n totalSupply\n type\n user\n userCachedAmount\n userEthRewardDebt\n userPrimeRewardDebt\n }\n ... on PrimePoolEndTimestampUpdatedEthData {\n currency\n ethEndTimestamp\n ethPerSecond\n ethStartTimestamp\n type\n }\n ... on PrimePoolEndTimestampUpdatedPrimeData {\n currency\n primeEndTimestamp\n primePerSecond\n primeStartTimestamp\n type\n }\n ... on PrimePoolEthRewardsAddedData {\n amount\n totalRewards\n type\n }\n ... on PrimePoolEthRewardsSetData {\n amount\n totalRewards\n type\n }\n ... on PrimePoolLogPoolAdditionData {\n tokenIds\n type\n }\n ... on PrimePoolLogPoolSetAllocPointData {\n allocPoint\n currency\n totalAllocPoint\n type\n }\n ... on PrimePoolLogSetPerSecondData {\n amount\n currency\n endTimestamp\n ethAmountPerSecond\n primeAmountPerSecond\n startTimestamp\n type\n }\n ... on PrimePoolLogUpdatePoolData {\n accPerShare\n currency\n ethAmount\n lastRewardTimestamp\n primeAmount\n supply\n totalSupply\n type\n }\n ... on PrimePoolRewardDecreaseData {\n currency\n eventAmount\n type\n updatedAmount\n }\n ... on PrimePoolRewardIncreaseData {\n currency\n eventAmount\n type\n updatedAmount\n }\n ... on PrimePoolTimeCachePeriodUpdateData {\n currency\n timedCachePeriod\n type\n }\n ... on PrimePoolWithdrawData {\n eventAmount\n totalSupply\n type\n user\n userCachedAmount\n userEthRewardDebt\n userPrimeRewardDebt\n }\n }\n eventType\n from\n fromHashKey\n id\n logIndex\n networkId\n poolContractAddress\n poolId\n poolType\n sortKey\n timestamp\n transactionHash\n transactionIndex\n }\n }\n}": types.GetPrimePoolEventsDocument, - "query GetPrimePools($address: String!, $cursor: String, $limit: Int, $networkId: Int!, $poolIds: [String]) {\n getPrimePools(\n address: $address\n cursor: $cursor\n limit: $limit\n networkId: $networkId\n poolIds: $poolIds\n ) {\n cursor\n items {\n calcData {\n poolAccumulatedEth\n poolAccumulatedPrime\n poolEthAmount\n poolEthPerDay\n poolEthPerSecond\n poolPrimeAmount\n poolPrimePerDay\n poolPrimePerSecond\n shareAccumulatedEth\n shareAccumulatedPrime\n shareEthPerDay\n shareEthPerSecond\n sharePrimePerDay\n sharePrimePerSecond\n }\n chainData {\n cachingPaused\n ethAllocPoint\n ethClaimed\n ethEndTimestamp\n ethLastRewardTimestamp\n ethReward\n ethStartTimestamp\n ethTimedCachePeriod\n ethTotalAllocPoint\n primeAllocPoint\n primeEndTimestamp\n primeLastRewardTimestamp\n primeStartTimestamp\n primeTotalAllocPoint\n }\n createdAt\n discoveryBlockNumber\n discoveryTransactionHash\n id\n networkId\n nftContractAddress\n poolContractAddress\n poolId\n poolType\n tokenIds\n totalSupply\n }\n }\n}": types.GetPrimePoolsDocument, "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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n s\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 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 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 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 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 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 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 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 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 }\n}": types.LiquidityLocksDocument, + "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 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 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 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 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 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 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 }\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 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 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 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 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 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 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 }\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 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 volume\n }\n }\n}": types.ListPairsWithMetadataForTokenDocument, - "query NftHolders($input: NftHoldersInput!) {\n nftHolders(input: $input) {\n count\n cursor\n items {\n balance\n collectionId\n walletAddress\n }\n status\n }\n}": types.NftHoldersDocument, - "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 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 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 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 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 volume1\n volume4\n volume5m\n volume12\n volume24\n }\n}": types.PairMetadataDocument, - "query PrimeHolders($cursor: String) {\n primeHolders(cursor: $cursor) {\n count\n cursor\n items {\n address\n balance\n balanceUsd\n firstHeldTimestamp\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 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 tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n }\n}": types.PrimeHoldersDocument, - "query SearchNfts($filterWashTrading: Boolean, $include: [NftSearchable!], $limit: Int, $networkFilter: [Int!], $search: String, $window: String) {\n searchNfts(\n filterWashTrading: $filterWashTrading\n include: $include\n limit: $limit\n networkFilter: $networkFilter\n search: $search\n window: $window\n ) {\n hasMore\n items {\n address\n average\n ceiling\n floor\n id\n imageUrl\n name\n networkId\n symbol\n tradeCount\n tradeCountChange\n volume\n volumeChange\n window\n }\n }\n}": types.SearchNftsDocument, + "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 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 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 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 }\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 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 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 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 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 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 }\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 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 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 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 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 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 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 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 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 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}": 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, @@ -183,15 +135,13 @@ const documents: Documents = { "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, - "query WalletNftCollectionAssets($input: WalletNftCollectionAssetsInput!) {\n walletNftCollectionAssets(input: $input) {\n collectionId\n cursor\n items {\n quantity\n tokenId\n }\n walletAddress\n }\n}": types.WalletNftCollectionAssetsDocument, - "query WalletNftCollections($input: WalletNftCollectionsInput!) {\n walletNftCollections(input: $input) {\n cursor\n items {\n collectionId\n quantity\n walletAddress\n }\n }\n}": types.WalletNftCollectionsDocument, - "subscription OnBalanceUpdated($walletAddress: String!) {\n onBalanceUpdated(walletAddress: $walletAddress) {\n address\n balance\n balanceUsd\n firstHeldTimestamp\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 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 tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n}": types.OnBalanceUpdatedDocument, + "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 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 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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 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 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 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 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 OnHoldersUpdated($tokenId: String!) {\n onHoldersUpdated(tokenId: $tokenId) {\n balances {\n address\n balance\n balanceUsd\n firstHeldTimestamp\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 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 tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n holders\n networkId\n tokenAddress\n tokenId\n }\n}": types.OnHoldersUpdatedDocument, + "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 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 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 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 transactions1\n volume1\n }\n}": types.OnLaunchpadTokenEventDocument, @@ -199,7 +149,7 @@ const documents: Documents = { "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 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 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 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 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 volume1\n volume4\n volume5m\n volume12\n volume24\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 cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\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 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 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 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 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 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 OnPriceUpdated($address: String, $networkId: Int, $sourcePairAddress: String) {\n onPriceUpdated(\n address: $address\n networkId: $networkId\n sourcePairAddress: $sourcePairAddress\n ) {\n address\n blockNumber\n networkId\n priceUsd\n timestamp\n }\n}": types.OnPriceUpdatedDocument, "subscription OnPricesUpdated($input: [OnPricesUpdatedInput!]!) {\n onPricesUpdated(input: $input) {\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\n sellVolume\n sellers\n sells\n t\n traders\n transactions\n v\n volume\n volumeNativeToken\n }\n usd {\n buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\n o\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, @@ -247,7 +197,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 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 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 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 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 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 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 cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\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 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 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 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 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. */ @@ -259,7 +209,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 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 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 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 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 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 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 cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\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 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 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 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 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. */ @@ -279,23 +229,7 @@ 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 FilterNftCollections($collections: [String], $filters: NftCollectionFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [NftCollectionRanking]) {\n filterNftCollections(\n collections: $collections\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n ) {\n count\n offset\n results {\n address\n ercType\n grouping\n id\n imageUrl\n lastEventTimestamp\n name\n networkId\n stats1h {\n endTime\n networkBaseToken {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n nonCurrency {\n mints {\n change\n current\n previous\n }\n sales {\n change\n current\n previous\n }\n tokensSold {\n change\n current\n previous\n }\n transfers {\n change\n current\n previous\n }\n uniqueBuyers {\n change\n current\n previous\n }\n uniqueMinters {\n change\n current\n previous\n }\n uniqueSalesWallets {\n change\n current\n previous\n }\n uniqueSellers {\n change\n current\n previous\n }\n }\n startTime\n usd {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n }\n stats4h {\n endTime\n networkBaseToken {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n nonCurrency {\n mints {\n change\n current\n previous\n }\n sales {\n change\n current\n previous\n }\n tokensSold {\n change\n current\n previous\n }\n transfers {\n change\n current\n previous\n }\n uniqueBuyers {\n change\n current\n previous\n }\n uniqueMinters {\n change\n current\n previous\n }\n uniqueSalesWallets {\n change\n current\n previous\n }\n uniqueSellers {\n change\n current\n previous\n }\n }\n startTime\n usd {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n }\n stats12h {\n endTime\n networkBaseToken {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n nonCurrency {\n mints {\n change\n current\n previous\n }\n sales {\n change\n current\n previous\n }\n tokensSold {\n change\n current\n previous\n }\n transfers {\n change\n current\n previous\n }\n uniqueBuyers {\n change\n current\n previous\n }\n uniqueMinters {\n change\n current\n previous\n }\n uniqueSalesWallets {\n change\n current\n previous\n }\n uniqueSellers {\n change\n current\n previous\n }\n }\n startTime\n usd {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n }\n stats24h {\n endTime\n networkBaseToken {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n nonCurrency {\n mints {\n change\n current\n previous\n }\n sales {\n change\n current\n previous\n }\n tokensSold {\n change\n current\n previous\n }\n transfers {\n change\n current\n previous\n }\n uniqueBuyers {\n change\n current\n previous\n }\n uniqueMinters {\n change\n current\n previous\n }\n uniqueSalesWallets {\n change\n current\n previous\n }\n uniqueSellers {\n change\n current\n previous\n }\n }\n startTime\n usd {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n }\n symbol\n timestamp\n totalSupply\n }\n }\n}"): (typeof documents)["query FilterNftCollections($collections: [String], $filters: NftCollectionFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [NftCollectionRanking]) {\n filterNftCollections(\n collections: $collections\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n ) {\n count\n offset\n results {\n address\n ercType\n grouping\n id\n imageUrl\n lastEventTimestamp\n name\n networkId\n stats1h {\n endTime\n networkBaseToken {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n nonCurrency {\n mints {\n change\n current\n previous\n }\n sales {\n change\n current\n previous\n }\n tokensSold {\n change\n current\n previous\n }\n transfers {\n change\n current\n previous\n }\n uniqueBuyers {\n change\n current\n previous\n }\n uniqueMinters {\n change\n current\n previous\n }\n uniqueSalesWallets {\n change\n current\n previous\n }\n uniqueSellers {\n change\n current\n previous\n }\n }\n startTime\n usd {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n }\n stats4h {\n endTime\n networkBaseToken {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n nonCurrency {\n mints {\n change\n current\n previous\n }\n sales {\n change\n current\n previous\n }\n tokensSold {\n change\n current\n previous\n }\n transfers {\n change\n current\n previous\n }\n uniqueBuyers {\n change\n current\n previous\n }\n uniqueMinters {\n change\n current\n previous\n }\n uniqueSalesWallets {\n change\n current\n previous\n }\n uniqueSellers {\n change\n current\n previous\n }\n }\n startTime\n usd {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n }\n stats12h {\n endTime\n networkBaseToken {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n nonCurrency {\n mints {\n change\n current\n previous\n }\n sales {\n change\n current\n previous\n }\n tokensSold {\n change\n current\n previous\n }\n transfers {\n change\n current\n previous\n }\n uniqueBuyers {\n change\n current\n previous\n }\n uniqueMinters {\n change\n current\n previous\n }\n uniqueSalesWallets {\n change\n current\n previous\n }\n uniqueSellers {\n change\n current\n previous\n }\n }\n startTime\n usd {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n }\n stats24h {\n endTime\n networkBaseToken {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n nonCurrency {\n mints {\n change\n current\n previous\n }\n sales {\n change\n current\n previous\n }\n tokensSold {\n change\n current\n previous\n }\n transfers {\n change\n current\n previous\n }\n uniqueBuyers {\n change\n current\n previous\n }\n uniqueMinters {\n change\n current\n previous\n }\n uniqueSalesWallets {\n change\n current\n previous\n }\n uniqueSellers {\n change\n current\n previous\n }\n }\n startTime\n usd {\n average {\n change\n current\n previous\n }\n close {\n change\n current\n previous\n }\n highestSale {\n change\n current\n previous\n }\n lowestSale {\n change\n current\n previous\n }\n open {\n change\n current\n previous\n }\n volume {\n change\n current\n previous\n }\n volumeByFillsource {\n change\n current\n fillsource\n previous\n }\n volumePercentByFillsource {\n change\n current\n fillsource\n previous\n }\n }\n }\n symbol\n timestamp\n totalSupply\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 FilterNftParallelAssets($filters: ParallelAssetFilters, $limit: Int, $match: ParallelAssetMatchers, $offset: Int, $phrase: String, $rankings: [ParallelAssetRanking]) {\n filterNftParallelAssets(\n filters: $filters\n limit: $limit\n match: $match\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n ) {\n count\n offset\n results {\n address\n description\n gameData {\n attack\n cardType\n cost\n functionText\n health\n parallel\n passiveAbility\n rarity\n subtype\n }\n id\n lastPriceNetworkBaseToken\n lastPriceUsd\n media {\n image\n processed\n thumbLg\n thumbSm\n }\n metadata {\n artist\n class\n expansion\n flavourText\n parallelId\n paraset\n supply\n }\n name\n networkId\n originalImage\n parallelId\n timestamp\n tokenId\n uri\n }\n }\n}"): (typeof documents)["query FilterNftParallelAssets($filters: ParallelAssetFilters, $limit: Int, $match: ParallelAssetMatchers, $offset: Int, $phrase: String, $rankings: [ParallelAssetRanking]) {\n filterNftParallelAssets(\n filters: $filters\n limit: $limit\n match: $match\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n ) {\n count\n offset\n results {\n address\n description\n gameData {\n attack\n cardType\n cost\n functionText\n health\n parallel\n passiveAbility\n rarity\n subtype\n }\n id\n lastPriceNetworkBaseToken\n lastPriceUsd\n media {\n image\n processed\n thumbLg\n thumbSm\n }\n metadata {\n artist\n class\n expansion\n flavourText\n parallelId\n paraset\n supply\n }\n name\n networkId\n originalImage\n parallelId\n timestamp\n tokenId\n uri\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 FilterNftPoolCollections($filters: NftPoolCollectionFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [NftPoolCollectionRanking]) {\n filterNftPoolCollections(\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n ) {\n count\n page\n results {\n balanceNBT\n balanceUSD\n collectionAddress\n ercType\n exchangeAddress\n expenseNBT24\n expenseNBTAll\n expenseUSD24\n expenseUSDAll\n floorNBT\n floorUSD\n highPriceNBT24\n highPriceNBTAll\n highPriceUSD24\n highPriceUSDAll\n id\n imageUrl\n lowPriceNBT24\n lowPriceNBTAll\n lowPriceUSD24\n lowPriceUSDAll\n name\n networkId\n nftBalanceV2\n nftVolume24V2\n nftVolumeAllV2\n nftsBought24V2\n nftsBoughtAllV2\n nftsSold24V2\n nftsSoldAllV2\n offerNBT\n offerUSD\n poolFeesNBT24\n poolFeesNBTAll\n poolFeesUSD24\n poolFeesUSDAll\n protocolFeesNBT24\n protocolFeesNBTAll\n protocolFeesUSD24\n protocolFeesUSDAll\n revenueNBT24\n revenueNBTAll\n revenueUSD24\n revenueUSDAll\n symbol\n timestamp\n totalSupplyV2\n volumeNBT24\n volumeNBTAll\n volumeUSD24\n volumeUSDAll\n }\n }\n}"): (typeof documents)["query FilterNftPoolCollections($filters: NftPoolCollectionFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [NftPoolCollectionRanking]) {\n filterNftPoolCollections(\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n ) {\n count\n page\n results {\n balanceNBT\n balanceUSD\n collectionAddress\n ercType\n exchangeAddress\n expenseNBT24\n expenseNBTAll\n expenseUSD24\n expenseUSDAll\n floorNBT\n floorUSD\n highPriceNBT24\n highPriceNBTAll\n highPriceUSD24\n highPriceUSDAll\n id\n imageUrl\n lowPriceNBT24\n lowPriceNBTAll\n lowPriceUSD24\n lowPriceUSDAll\n name\n networkId\n nftBalanceV2\n nftVolume24V2\n nftVolumeAllV2\n nftsBought24V2\n nftsBoughtAllV2\n nftsSold24V2\n nftsSoldAllV2\n offerNBT\n offerUSD\n poolFeesNBT24\n poolFeesNBTAll\n poolFeesUSD24\n poolFeesUSDAll\n protocolFeesNBT24\n protocolFeesNBTAll\n protocolFeesUSD24\n protocolFeesUSDAll\n revenueNBT24\n revenueNBTAll\n revenueUSD24\n revenueUSDAll\n symbol\n timestamp\n totalSupplyV2\n volumeNBT24\n volumeNBTAll\n volumeUSD24\n volumeUSDAll\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 FilterNftPools($filters: NftPoolFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [NftPoolRanking]) {\n filterNftPools(\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n ) {\n count\n page\n results {\n acceptedNftTokenIds\n assetRecipientAddress\n balanceNBT\n balanceT\n balanceUSD\n bondingCurveAddress\n collectionAddress\n collectionName\n collectionSymbol\n delta\n exchangeAddress\n expenseNBT24\n expenseNBTAll\n expenseT24\n expenseTAll\n expenseUSD24\n expenseUSDAll\n feeAmount\n id\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 nftBalanceV2\n nftVolume24V2\n nftVolumeAllV2\n nftsBought24V2\n nftsBoughtAllV2\n nftsSold24V2\n nftsSoldAllV2\n offerNBT\n offerT\n offerUSD\n ownerAddress\n poolAddress\n poolFeesNBT24\n poolFeesNBTAll\n poolFeesT24\n poolFeesTAll\n poolFeesUSD24\n poolFeesUSDAll\n poolNftType\n poolType\n poolVariant\n propertyChecker\n protocolFeesNBT24\n protocolFeesNBTAll\n protocolFeesT24\n protocolFeesTAll\n protocolFeesUSD24\n protocolFeesUSDAll\n revenueNBT24\n revenueNBTAll\n revenueT24\n revenueTAll\n revenueUSD24\n revenueUSDAll\n royalties {\n percent\n recipient\n }\n sellNBT\n sellT\n sellUSD\n spotNBT\n spotT\n timestamp\n tokenAddress\n version\n volumeNBT24\n volumeNBTAll\n volumeT24\n volumeTAll\n volumeUSD24\n volumeUSDAll\n }\n }\n}"): (typeof documents)["query FilterNftPools($filters: NftPoolFilters, $limit: Int, $offset: Int, $phrase: String, $rankings: [NftPoolRanking]) {\n filterNftPools(\n filters: $filters\n limit: $limit\n offset: $offset\n phrase: $phrase\n rankings: $rankings\n ) {\n count\n page\n results {\n acceptedNftTokenIds\n assetRecipientAddress\n balanceNBT\n balanceT\n balanceUSD\n bondingCurveAddress\n collectionAddress\n collectionName\n collectionSymbol\n delta\n exchangeAddress\n expenseNBT24\n expenseNBTAll\n expenseT24\n expenseTAll\n expenseUSD24\n expenseUSDAll\n feeAmount\n id\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 nftBalanceV2\n nftVolume24V2\n nftVolumeAllV2\n nftsBought24V2\n nftsBoughtAllV2\n nftsSold24V2\n nftsSoldAllV2\n offerNBT\n offerT\n offerUSD\n ownerAddress\n poolAddress\n poolFeesNBT24\n poolFeesNBTAll\n poolFeesT24\n poolFeesTAll\n poolFeesUSD24\n poolFeesUSDAll\n poolNftType\n poolType\n poolVariant\n propertyChecker\n protocolFeesNBT24\n protocolFeesNBTAll\n protocolFeesT24\n protocolFeesTAll\n protocolFeesUSD24\n protocolFeesUSDAll\n revenueNBT24\n revenueNBTAll\n revenueT24\n revenueTAll\n revenueUSD24\n revenueUSDAll\n royalties {\n percent\n recipient\n }\n sellNBT\n sellT\n sellUSD\n spotNBT\n spotT\n timestamp\n tokenAddress\n version\n volumeNBT24\n volumeNBTAll\n volumeT24\n volumeTAll\n volumeUSD24\n volumeUSDAll\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 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 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 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 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 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 }\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 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 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 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 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 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 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 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 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 }\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 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 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 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 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 cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\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 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 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 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 }\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 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 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 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 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 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 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 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 }\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 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 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 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 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. */ @@ -303,7 +237,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]) {\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 ) {\n count\n page\n results {\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 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 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 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 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 }\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 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 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 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 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 }\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 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 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]) {\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 ) {\n count\n page\n results {\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 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 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 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 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 }\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 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 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 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 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 }\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 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 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]) {\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 ) {\n count\n page\n results {\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 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 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 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 }\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 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 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 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 }\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 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 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]) {\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 ) {\n count\n page\n results {\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 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 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 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 }\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 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 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 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 }\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 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 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. */ @@ -311,7 +245,7 @@ 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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\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 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 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 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 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 }\n s\n sellVolume\n sellers\n sells\n t\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\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 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 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 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 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 }\n s\n sellVolume\n sellers\n sells\n t\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\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 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 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 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 }\n s\n sellVolume\n sellers\n sells\n t\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 buyVolume\n buyers\n buys\n c\n h\n l\n liquidity\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 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 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 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 }\n s\n sellVolume\n sellers\n sells\n t\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. */ @@ -319,15 +253,11 @@ export function graphql(source: "query GetCommunityNotes($input: CommunityNotesI /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "query GetDetailedNftStats($bucketCount: Int, $collectionAddress: String!, $durations: [DetailedNftStatsDuration], $grouping: String, $networkId: Int!, $timestamp: Int) {\n getDetailedNftStats(\n bucketCount: $bucketCount\n collectionAddress: $collectionAddress\n durations: $durations\n grouping: $grouping\n networkId: $networkId\n timestamp: $timestamp\n ) {\n collectionAddress\n grouping\n networkId\n stats_day1 {\n duration\n end\n start\n statsNetworkBaseToken {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsNonCurrency {\n mints {\n buckets\n change\n currentValue\n previousValue\n }\n sales {\n buckets\n change\n currentValue\n previousValue\n }\n tokensSold {\n buckets\n change\n currentValue\n previousValue\n }\n transfers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueBuyers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueMinters {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSalesWallets {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSellers {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\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 statsNetworkBaseToken {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsNonCurrency {\n mints {\n buckets\n change\n currentValue\n previousValue\n }\n sales {\n buckets\n change\n currentValue\n previousValue\n }\n tokensSold {\n buckets\n change\n currentValue\n previousValue\n }\n transfers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueBuyers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueMinters {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSalesWallets {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSellers {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\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 statsNetworkBaseToken {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsNonCurrency {\n mints {\n buckets\n change\n currentValue\n previousValue\n }\n sales {\n buckets\n change\n currentValue\n previousValue\n }\n tokensSold {\n buckets\n change\n currentValue\n previousValue\n }\n transfers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueBuyers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueMinters {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSalesWallets {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSellers {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\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 statsNetworkBaseToken {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsNonCurrency {\n mints {\n buckets\n change\n currentValue\n previousValue\n }\n sales {\n buckets\n change\n currentValue\n previousValue\n }\n tokensSold {\n buckets\n change\n currentValue\n previousValue\n }\n transfers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueBuyers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueMinters {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSalesWallets {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSellers {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\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 statsNetworkBaseToken {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsNonCurrency {\n mints {\n buckets\n change\n currentValue\n previousValue\n }\n sales {\n buckets\n change\n currentValue\n previousValue\n }\n tokensSold {\n buckets\n change\n currentValue\n previousValue\n }\n transfers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueBuyers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueMinters {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSalesWallets {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSellers {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\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 statsNetworkBaseToken {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsNonCurrency {\n mints {\n buckets\n change\n currentValue\n previousValue\n }\n sales {\n buckets\n change\n currentValue\n previousValue\n }\n tokensSold {\n buckets\n change\n currentValue\n previousValue\n }\n transfers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueBuyers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueMinters {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSalesWallets {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSellers {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\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 }\n}"): (typeof documents)["query GetDetailedNftStats($bucketCount: Int, $collectionAddress: String!, $durations: [DetailedNftStatsDuration], $grouping: String, $networkId: Int!, $timestamp: Int) {\n getDetailedNftStats(\n bucketCount: $bucketCount\n collectionAddress: $collectionAddress\n durations: $durations\n grouping: $grouping\n networkId: $networkId\n timestamp: $timestamp\n ) {\n collectionAddress\n grouping\n networkId\n stats_day1 {\n duration\n end\n start\n statsNetworkBaseToken {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsNonCurrency {\n mints {\n buckets\n change\n currentValue\n previousValue\n }\n sales {\n buckets\n change\n currentValue\n previousValue\n }\n tokensSold {\n buckets\n change\n currentValue\n previousValue\n }\n transfers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueBuyers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueMinters {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSalesWallets {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSellers {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\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 statsNetworkBaseToken {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsNonCurrency {\n mints {\n buckets\n change\n currentValue\n previousValue\n }\n sales {\n buckets\n change\n currentValue\n previousValue\n }\n tokensSold {\n buckets\n change\n currentValue\n previousValue\n }\n transfers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueBuyers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueMinters {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSalesWallets {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSellers {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\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 statsNetworkBaseToken {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsNonCurrency {\n mints {\n buckets\n change\n currentValue\n previousValue\n }\n sales {\n buckets\n change\n currentValue\n previousValue\n }\n tokensSold {\n buckets\n change\n currentValue\n previousValue\n }\n transfers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueBuyers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueMinters {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSalesWallets {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSellers {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\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 statsNetworkBaseToken {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsNonCurrency {\n mints {\n buckets\n change\n currentValue\n previousValue\n }\n sales {\n buckets\n change\n currentValue\n previousValue\n }\n tokensSold {\n buckets\n change\n currentValue\n previousValue\n }\n transfers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueBuyers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueMinters {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSalesWallets {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSellers {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\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 statsNetworkBaseToken {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsNonCurrency {\n mints {\n buckets\n change\n currentValue\n previousValue\n }\n sales {\n buckets\n change\n currentValue\n previousValue\n }\n tokensSold {\n buckets\n change\n currentValue\n previousValue\n }\n transfers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueBuyers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueMinters {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSalesWallets {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSellers {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\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 statsNetworkBaseToken {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\n buckets\n change\n currentValue\n previousValue\n }\n volume {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsNonCurrency {\n mints {\n buckets\n change\n currentValue\n previousValue\n }\n sales {\n buckets\n change\n currentValue\n previousValue\n }\n tokensSold {\n buckets\n change\n currentValue\n previousValue\n }\n transfers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueBuyers {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueMinters {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSalesWallets {\n buckets\n change\n currentValue\n previousValue\n }\n uniqueSellers {\n buckets\n change\n currentValue\n previousValue\n }\n }\n statsUsd {\n average {\n buckets\n change\n currentValue\n previousValue\n }\n close {\n buckets\n change\n currentValue\n previousValue\n }\n highestSale {\n buckets\n change\n currentValue\n previousValue\n }\n lowestSale {\n buckets\n change\n currentValue\n previousValue\n }\n open {\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 }\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 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 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 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 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 }\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 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 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 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 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 }\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 cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\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 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 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 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 }\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 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 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 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 }\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 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 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 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 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 }\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 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 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 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 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 }\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 cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\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 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 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 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 }\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 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 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 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 }\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. */ @@ -352,66 +282,6 @@ export function graphql(source: "query GetNetworkStatus($networkIds: [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 GetNetworks {\n getNetworks {\n id\n name\n networkShortName\n }\n}"): (typeof documents)["query GetNetworks {\n getNetworks {\n id\n name\n networkShortName\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 GetNftAssets($address: String!, $cursor: String, $fetchMissingAssets: Boolean, $limit: Int, $networkId: Int!, $tokenIds: [String]) {\n getNftAssets(\n address: $address\n cursor: $cursor\n fetchMissingAssets: $fetchMissingAssets\n limit: $limit\n networkId: $networkId\n tokenIds: $tokenIds\n ) {\n cursor\n itemErrors {\n address\n id\n message\n networkId\n status\n tokenId\n }\n items {\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 }\n}"): (typeof documents)["query GetNftAssets($address: String!, $cursor: String, $fetchMissingAssets: Boolean, $limit: Int, $networkId: Int!, $tokenIds: [String]) {\n getNftAssets(\n address: $address\n cursor: $cursor\n fetchMissingAssets: $fetchMissingAssets\n limit: $limit\n networkId: $networkId\n tokenIds: $tokenIds\n ) {\n cursor\n itemErrors {\n address\n id\n message\n networkId\n status\n tokenId\n }\n items {\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 }\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 GetNftCollectionMetadata($address: String, $collectionId: String, $networkId: Int) {\n getNftCollectionMetadata(\n address: $address\n collectionId: $collectionId\n networkId: $networkId\n ) {\n contract {\n address\n description\n ercType\n id\n image\n name\n networkId\n symbol\n totalSupply\n }\n id\n media {\n image\n processed\n thumbLg\n thumbSm\n }\n stats {\n networkBaseTokenPriceStats {\n average\n averageChange\n ceiling\n ceilingChange\n floor\n floorChange\n volume\n volumeByFillsource {\n amount\n change\n fillsource\n }\n volumeChange\n volumePercentByFillsource {\n amount\n change\n fillsource\n }\n }\n tradeCount\n tradeCountChange\n usdPriceStats {\n average\n averageChange\n ceiling\n ceilingChange\n floor\n floorChange\n volume\n volumeByFillsource {\n amount\n change\n fillsource\n }\n volumeChange\n volumePercentByFillsource {\n amount\n change\n fillsource\n }\n }\n window\n }\n }\n}"): (typeof documents)["query GetNftCollectionMetadata($address: String, $collectionId: String, $networkId: Int) {\n getNftCollectionMetadata(\n address: $address\n collectionId: $collectionId\n networkId: $networkId\n ) {\n contract {\n address\n description\n ercType\n id\n image\n name\n networkId\n symbol\n totalSupply\n }\n id\n media {\n image\n processed\n thumbLg\n thumbSm\n }\n stats {\n networkBaseTokenPriceStats {\n average\n averageChange\n ceiling\n ceilingChange\n floor\n floorChange\n volume\n volumeByFillsource {\n amount\n change\n fillsource\n }\n volumeChange\n volumePercentByFillsource {\n amount\n change\n fillsource\n }\n }\n tradeCount\n tradeCountChange\n usdPriceStats {\n average\n averageChange\n ceiling\n ceilingChange\n floor\n floorChange\n volume\n volumeByFillsource {\n amount\n change\n fillsource\n }\n volumeChange\n volumePercentByFillsource {\n amount\n change\n fillsource\n }\n }\n window\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 GetNftContracts($contracts: [NftContractInput]) {\n getNftContracts(contracts: $contracts) {\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}"): (typeof documents)["query GetNftContracts($contracts: [NftContractInput]) {\n getNftContracts(contracts: $contracts) {\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}"]; -/** - * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. - */ -export function graphql(source: "query GetNftEvents($address: String, $cursor: String, $exchangeAddress: String, $includeTransfers: Boolean, $limit: Int, $networkId: Int!, $poolAddress: String, $timestamp: EventQueryTimestampInput, $tokenId: String) {\n getNftEvents(\n address: $address\n cursor: $cursor\n exchangeAddress: $exchangeAddress\n includeTransfers: $includeTransfers\n limit: $limit\n networkId: $networkId\n poolAddress: $poolAddress\n timestamp: $timestamp\n tokenId: $tokenId\n ) {\n cursor\n items {\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 }\n}"): (typeof documents)["query GetNftEvents($address: String, $cursor: String, $exchangeAddress: String, $includeTransfers: Boolean, $limit: Int, $networkId: Int!, $poolAddress: String, $timestamp: EventQueryTimestampInput, $tokenId: String) {\n getNftEvents(\n address: $address\n cursor: $cursor\n exchangeAddress: $exchangeAddress\n includeTransfers: $includeTransfers\n limit: $limit\n networkId: $networkId\n poolAddress: $poolAddress\n timestamp: $timestamp\n tokenId: $tokenId\n ) {\n cursor\n items {\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 }\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 GetNftPool($address: String!, $networkId: Int!) {\n getNftPool(address: $address, networkId: $networkId) {\n acceptedNftTokenIds\n assetRecipientAddress\n balanceNBT\n balanceT\n bondingCurveAddress\n bondingCurveType\n collectionAddress\n collectionName\n collectionSymbol\n delta\n exchangeAddress\n fee\n floorNBT\n floorT\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 nftBalanceV2\n nftVolumeAllTimeV2\n offerNBT\n offerT\n owner\n poolAddress\n poolFeesAllTimeNBT\n poolFeesAllTimeT\n poolId\n poolNftType\n poolType\n poolVariant\n propertyChecker\n royalties {\n percent\n recipient\n }\n spotPriceNBT\n spotPriceT\n tokenAddress\n version\n volumeAllTimeNBT\n volumeAllTimeT\n }\n}"): (typeof documents)["query GetNftPool($address: String!, $networkId: Int!) {\n getNftPool(address: $address, networkId: $networkId) {\n acceptedNftTokenIds\n assetRecipientAddress\n balanceNBT\n balanceT\n bondingCurveAddress\n bondingCurveType\n collectionAddress\n collectionName\n collectionSymbol\n delta\n exchangeAddress\n fee\n floorNBT\n floorT\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 nftBalanceV2\n nftVolumeAllTimeV2\n offerNBT\n offerT\n owner\n poolAddress\n poolFeesAllTimeNBT\n poolFeesAllTimeT\n poolId\n poolNftType\n poolType\n poolVariant\n propertyChecker\n royalties {\n percent\n recipient\n }\n spotPriceNBT\n spotPriceT\n tokenAddress\n version\n volumeAllTimeNBT\n volumeAllTimeT\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 GetNftPoolCollection($collectionAddress: String!, $exchangeAddress: String!, $networkId: Int!) {\n getNftPoolCollection(\n collectionAddress: $collectionAddress\n exchangeAddress: $exchangeAddress\n networkId: $networkId\n ) {\n balanceNBT\n collectionAddress\n collectionId\n collectionSymbol\n exchangeAddress\n exchangeId\n floorNBT\n image\n name\n networkId\n nftBalanceV2\n nftVolumeAllTimeV2\n offerNBT\n poolFeesNBTAll\n poolFeesUSDAll\n protocolFeesNBTAll\n protocolFeesUSDAll\n royaltiesNBTAllEstimate\n royaltiesUSDAllEstimate\n volumeAllTimeNBT\n volumeAllTimeUSD\n }\n}"): (typeof documents)["query GetNftPoolCollection($collectionAddress: String!, $exchangeAddress: String!, $networkId: Int!) {\n getNftPoolCollection(\n collectionAddress: $collectionAddress\n exchangeAddress: $exchangeAddress\n networkId: $networkId\n ) {\n balanceNBT\n collectionAddress\n collectionId\n collectionSymbol\n exchangeAddress\n exchangeId\n floorNBT\n image\n name\n networkId\n nftBalanceV2\n nftVolumeAllTimeV2\n offerNBT\n poolFeesNBTAll\n poolFeesUSDAll\n protocolFeesNBTAll\n protocolFeesUSDAll\n royaltiesNBTAllEstimate\n royaltiesUSDAllEstimate\n volumeAllTimeNBT\n volumeAllTimeUSD\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 GetNftPoolCollectionsByExchange($cursor: String, $exchangeAddress: String!, $limit: Int, $networkId: Int!) {\n getNftPoolCollectionsByExchange(\n cursor: $cursor\n exchangeAddress: $exchangeAddress\n limit: $limit\n networkId: $networkId\n ) {\n cursor\n items {\n balanceNBT\n collectionAddress\n collectionId\n collectionSymbol\n exchangeAddress\n exchangeId\n floorNBT\n image\n name\n networkId\n nftBalanceV2\n nftVolumeAllTimeV2\n offerNBT\n poolFeesNBTAll\n poolFeesUSDAll\n protocolFeesNBTAll\n protocolFeesUSDAll\n royaltiesNBTAllEstimate\n royaltiesUSDAllEstimate\n volumeAllTimeNBT\n volumeAllTimeUSD\n }\n }\n}"): (typeof documents)["query GetNftPoolCollectionsByExchange($cursor: String, $exchangeAddress: String!, $limit: Int, $networkId: Int!) {\n getNftPoolCollectionsByExchange(\n cursor: $cursor\n exchangeAddress: $exchangeAddress\n limit: $limit\n networkId: $networkId\n ) {\n cursor\n items {\n balanceNBT\n collectionAddress\n collectionId\n collectionSymbol\n exchangeAddress\n exchangeId\n floorNBT\n image\n name\n networkId\n nftBalanceV2\n nftVolumeAllTimeV2\n offerNBT\n poolFeesNBTAll\n poolFeesUSDAll\n protocolFeesNBTAll\n protocolFeesUSDAll\n royaltiesNBTAllEstimate\n royaltiesUSDAllEstimate\n volumeAllTimeNBT\n volumeAllTimeUSD\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 GetNftPoolEvents($collectionAddress: String, $cursor: String, $eventTypes: [NftPoolEventType!], $exchangeAddress: String, $limit: Int, $networkId: Int!, $poolAddress: String, $timestamp: EventQueryTimestampInput) {\n getNftPoolEvents(\n collectionAddress: $collectionAddress\n cursor: $cursor\n eventTypes: $eventTypes\n exchangeAddress: $exchangeAddress\n limit: $limit\n networkId: $networkId\n poolAddress: $poolAddress\n timestamp: $timestamp\n ) {\n cursor\n items {\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 }\n}"): (typeof documents)["query GetNftPoolEvents($collectionAddress: String, $cursor: String, $eventTypes: [NftPoolEventType!], $exchangeAddress: String, $limit: Int, $networkId: Int!, $poolAddress: String, $timestamp: EventQueryTimestampInput) {\n getNftPoolEvents(\n collectionAddress: $collectionAddress\n cursor: $cursor\n eventTypes: $eventTypes\n exchangeAddress: $exchangeAddress\n limit: $limit\n networkId: $networkId\n poolAddress: $poolAddress\n timestamp: $timestamp\n ) {\n cursor\n items {\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 }\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 GetNftPoolStats($collectionAddress: String!, $endTime: Int!, $exchangeAddress: String!, $networkId: Int!, $poolAddress: String, $startTime: Int!) {\n getNftPoolStats(\n collectionAddress: $collectionAddress\n endTime: $endTime\n exchangeAddress: $exchangeAddress\n networkId: $networkId\n poolAddress: $poolAddress\n startTime: $startTime\n ) {\n closeBalanceNBT\n closeNftBalanceV2\n collectionAddress\n endTime\n exchangeAddress\n expenseNBT\n highFloorNBT\n highOfferNBT\n lowFloorNBT\n lowOfferNBT\n networkId\n nftVolumeV2\n nftsBoughtV2\n nftsSoldV2\n openBalanceNBT\n openNftBalanceV2\n poolAddress\n poolFeesNBT\n protocolFeesNBT\n revenueNBT\n startTime\n volumeNBT\n }\n}"): (typeof documents)["query GetNftPoolStats($collectionAddress: String!, $endTime: Int!, $exchangeAddress: String!, $networkId: Int!, $poolAddress: String, $startTime: Int!) {\n getNftPoolStats(\n collectionAddress: $collectionAddress\n endTime: $endTime\n exchangeAddress: $exchangeAddress\n networkId: $networkId\n poolAddress: $poolAddress\n startTime: $startTime\n ) {\n closeBalanceNBT\n closeNftBalanceV2\n collectionAddress\n endTime\n exchangeAddress\n expenseNBT\n highFloorNBT\n highOfferNBT\n lowFloorNBT\n lowOfferNBT\n networkId\n nftVolumeV2\n nftsBoughtV2\n nftsSoldV2\n openBalanceNBT\n openNftBalanceV2\n poolAddress\n poolFeesNBT\n protocolFeesNBT\n revenueNBT\n startTime\n volumeNBT\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 GetNftPoolsByCollectionAndExchange($collectionAddress: String!, $cursor: String, $exchangeAddress: String!, $limit: Int, $networkId: Int!) {\n getNftPoolsByCollectionAndExchange(\n collectionAddress: $collectionAddress\n cursor: $cursor\n exchangeAddress: $exchangeAddress\n limit: $limit\n networkId: $networkId\n ) {\n cursor\n items {\n acceptedNftTokenIds\n assetRecipientAddress\n balanceNBT\n balanceT\n bondingCurveAddress\n bondingCurveType\n collectionAddress\n collectionName\n collectionSymbol\n delta\n exchangeAddress\n fee\n floorNBT\n floorT\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 nftBalanceV2\n nftVolumeAllTimeV2\n offerNBT\n offerT\n owner\n poolAddress\n poolFeesAllTimeNBT\n poolFeesAllTimeT\n poolId\n poolNftType\n poolType\n poolVariant\n propertyChecker\n royalties {\n percent\n recipient\n }\n spotPriceNBT\n spotPriceT\n tokenAddress\n version\n volumeAllTimeNBT\n volumeAllTimeT\n }\n }\n}"): (typeof documents)["query GetNftPoolsByCollectionAndExchange($collectionAddress: String!, $cursor: String, $exchangeAddress: String!, $limit: Int, $networkId: Int!) {\n getNftPoolsByCollectionAndExchange(\n collectionAddress: $collectionAddress\n cursor: $cursor\n exchangeAddress: $exchangeAddress\n limit: $limit\n networkId: $networkId\n ) {\n cursor\n items {\n acceptedNftTokenIds\n assetRecipientAddress\n balanceNBT\n balanceT\n bondingCurveAddress\n bondingCurveType\n collectionAddress\n collectionName\n collectionSymbol\n delta\n exchangeAddress\n fee\n floorNBT\n floorT\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 nftBalanceV2\n nftVolumeAllTimeV2\n offerNBT\n offerT\n owner\n poolAddress\n poolFeesAllTimeNBT\n poolFeesAllTimeT\n poolId\n poolNftType\n poolType\n poolVariant\n propertyChecker\n royalties {\n percent\n recipient\n }\n spotPriceNBT\n spotPriceT\n tokenAddress\n version\n volumeAllTimeNBT\n volumeAllTimeT\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 GetNftPoolsByOwner($cursor: String, $exchangeAddress: String, $limit: Int, $networkId: Int!, $ownerAddress: String!) {\n getNftPoolsByOwner(\n cursor: $cursor\n exchangeAddress: $exchangeAddress\n limit: $limit\n networkId: $networkId\n ownerAddress: $ownerAddress\n ) {\n cursor\n items {\n acceptedNftTokenIds\n assetRecipientAddress\n balanceNBT\n balanceT\n bondingCurveAddress\n bondingCurveType\n collectionAddress\n collectionName\n collectionSymbol\n delta\n exchangeAddress\n fee\n floorNBT\n floorT\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 nftBalanceV2\n nftVolumeAllTimeV2\n offerNBT\n offerT\n owner\n poolAddress\n poolFeesAllTimeNBT\n poolFeesAllTimeT\n poolId\n poolNftType\n poolType\n poolVariant\n propertyChecker\n royalties {\n percent\n recipient\n }\n spotPriceNBT\n spotPriceT\n tokenAddress\n version\n volumeAllTimeNBT\n volumeAllTimeT\n }\n }\n}"): (typeof documents)["query GetNftPoolsByOwner($cursor: String, $exchangeAddress: String, $limit: Int, $networkId: Int!, $ownerAddress: String!) {\n getNftPoolsByOwner(\n cursor: $cursor\n exchangeAddress: $exchangeAddress\n limit: $limit\n networkId: $networkId\n ownerAddress: $ownerAddress\n ) {\n cursor\n items {\n acceptedNftTokenIds\n assetRecipientAddress\n balanceNBT\n balanceT\n bondingCurveAddress\n bondingCurveType\n collectionAddress\n collectionName\n collectionSymbol\n delta\n exchangeAddress\n fee\n floorNBT\n floorT\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 nftBalanceV2\n nftVolumeAllTimeV2\n offerNBT\n offerT\n owner\n poolAddress\n poolFeesAllTimeNBT\n poolFeesAllTimeT\n poolId\n poolNftType\n poolType\n poolVariant\n propertyChecker\n royalties {\n percent\n recipient\n }\n spotPriceNBT\n spotPriceT\n tokenAddress\n version\n volumeAllTimeNBT\n volumeAllTimeT\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 GetParallelCardChanges($cursor: String, $limit: Int, $timestamp: ParallelCardChangeQueryTimestampInput, $tokenId: String) {\n getParallelCardChanges(\n cursor: $cursor\n limit: $limit\n timestamp: $timestamp\n tokenId: $tokenId\n ) {\n cursor\n items {\n diff {\n new {\n artist\n attack\n cardType\n class\n cost\n expansion\n flavourText\n functionText\n health\n parallel\n parallelId\n paraset\n passiveAbility\n rarity\n subtype\n supply\n }\n old {\n artist\n attack\n cardType\n class\n cost\n expansion\n flavourText\n functionText\n health\n parallel\n parallelId\n paraset\n passiveAbility\n rarity\n subtype\n supply\n }\n }\n timestamp\n tokenId\n }\n }\n}"): (typeof documents)["query GetParallelCardChanges($cursor: String, $limit: Int, $timestamp: ParallelCardChangeQueryTimestampInput, $tokenId: String) {\n getParallelCardChanges(\n cursor: $cursor\n limit: $limit\n timestamp: $timestamp\n tokenId: $tokenId\n ) {\n cursor\n items {\n diff {\n new {\n artist\n attack\n cardType\n class\n cost\n expansion\n flavourText\n functionText\n health\n parallel\n parallelId\n paraset\n passiveAbility\n rarity\n subtype\n supply\n }\n old {\n artist\n attack\n cardType\n class\n cost\n expansion\n flavourText\n functionText\n health\n parallel\n parallelId\n paraset\n passiveAbility\n rarity\n subtype\n supply\n }\n }\n timestamp\n tokenId\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 GetPrimePoolAssets($cursor: String, $limit: Int, $networkId: Int!, $poolContractAddress: String, $poolId: String, $walletAddress: String) {\n getPrimePoolAssets(\n cursor: $cursor\n limit: $limit\n networkId: $networkId\n poolContractAddress: $poolContractAddress\n poolId: $poolId\n walletAddress: $walletAddress\n ) {\n cursor\n items {\n amount\n ethRewardDebt\n from\n fromHashKey\n fromSortKey\n id\n networkId\n poolContractAddress\n poolId\n primeRewardDebt\n sortKey\n }\n }\n}"): (typeof documents)["query GetPrimePoolAssets($cursor: String, $limit: Int, $networkId: Int!, $poolContractAddress: String, $poolId: String, $walletAddress: String) {\n getPrimePoolAssets(\n cursor: $cursor\n limit: $limit\n networkId: $networkId\n poolContractAddress: $poolContractAddress\n poolId: $poolId\n walletAddress: $walletAddress\n ) {\n cursor\n items {\n amount\n ethRewardDebt\n from\n fromHashKey\n fromSortKey\n id\n networkId\n poolContractAddress\n poolId\n primeRewardDebt\n sortKey\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 GetPrimePoolEvents($cursor: String, $eventTypes: [PrimePoolEventType], $limit: Int, $networkId: Int!, $poolContractAddress: String, $poolId: String, $walletAddress: String) {\n getPrimePoolEvents(\n cursor: $cursor\n eventTypes: $eventTypes\n limit: $limit\n networkId: $networkId\n poolContractAddress: $poolContractAddress\n poolId: $poolId\n walletAddress: $walletAddress\n ) {\n cursor\n items {\n blockHash\n blockNumber\n data {\n ... on PrimePoolCacheData {\n eventAmount\n totalSupply\n type\n user\n userCachedAmount\n userEthRewardDebt\n userPrimeRewardDebt\n }\n ... on PrimePoolCachingPausedData {\n cachingPaused\n type\n }\n ... on PrimePoolClaimEthData {\n currency\n ethClaimed\n eventAmount\n type\n user\n userEthRewardDebt\n }\n ... on PrimePoolClaimPrimeData {\n currency\n eventAmount\n type\n user\n userPrimeRewardDebt\n }\n ... on PrimePoolEmergencyWithdrawData {\n eventAmount\n totalSupply\n type\n user\n userCachedAmount\n userEthRewardDebt\n userPrimeRewardDebt\n }\n ... on PrimePoolEndTimestampUpdatedEthData {\n currency\n ethEndTimestamp\n ethPerSecond\n ethStartTimestamp\n type\n }\n ... on PrimePoolEndTimestampUpdatedPrimeData {\n currency\n primeEndTimestamp\n primePerSecond\n primeStartTimestamp\n type\n }\n ... on PrimePoolEthRewardsAddedData {\n amount\n totalRewards\n type\n }\n ... on PrimePoolEthRewardsSetData {\n amount\n totalRewards\n type\n }\n ... on PrimePoolLogPoolAdditionData {\n tokenIds\n type\n }\n ... on PrimePoolLogPoolSetAllocPointData {\n allocPoint\n currency\n totalAllocPoint\n type\n }\n ... on PrimePoolLogSetPerSecondData {\n amount\n currency\n endTimestamp\n ethAmountPerSecond\n primeAmountPerSecond\n startTimestamp\n type\n }\n ... on PrimePoolLogUpdatePoolData {\n accPerShare\n currency\n ethAmount\n lastRewardTimestamp\n primeAmount\n supply\n totalSupply\n type\n }\n ... on PrimePoolRewardDecreaseData {\n currency\n eventAmount\n type\n updatedAmount\n }\n ... on PrimePoolRewardIncreaseData {\n currency\n eventAmount\n type\n updatedAmount\n }\n ... on PrimePoolTimeCachePeriodUpdateData {\n currency\n timedCachePeriod\n type\n }\n ... on PrimePoolWithdrawData {\n eventAmount\n totalSupply\n type\n user\n userCachedAmount\n userEthRewardDebt\n userPrimeRewardDebt\n }\n }\n eventType\n from\n fromHashKey\n id\n logIndex\n networkId\n poolContractAddress\n poolId\n poolType\n sortKey\n timestamp\n transactionHash\n transactionIndex\n }\n }\n}"): (typeof documents)["query GetPrimePoolEvents($cursor: String, $eventTypes: [PrimePoolEventType], $limit: Int, $networkId: Int!, $poolContractAddress: String, $poolId: String, $walletAddress: String) {\n getPrimePoolEvents(\n cursor: $cursor\n eventTypes: $eventTypes\n limit: $limit\n networkId: $networkId\n poolContractAddress: $poolContractAddress\n poolId: $poolId\n walletAddress: $walletAddress\n ) {\n cursor\n items {\n blockHash\n blockNumber\n data {\n ... on PrimePoolCacheData {\n eventAmount\n totalSupply\n type\n user\n userCachedAmount\n userEthRewardDebt\n userPrimeRewardDebt\n }\n ... on PrimePoolCachingPausedData {\n cachingPaused\n type\n }\n ... on PrimePoolClaimEthData {\n currency\n ethClaimed\n eventAmount\n type\n user\n userEthRewardDebt\n }\n ... on PrimePoolClaimPrimeData {\n currency\n eventAmount\n type\n user\n userPrimeRewardDebt\n }\n ... on PrimePoolEmergencyWithdrawData {\n eventAmount\n totalSupply\n type\n user\n userCachedAmount\n userEthRewardDebt\n userPrimeRewardDebt\n }\n ... on PrimePoolEndTimestampUpdatedEthData {\n currency\n ethEndTimestamp\n ethPerSecond\n ethStartTimestamp\n type\n }\n ... on PrimePoolEndTimestampUpdatedPrimeData {\n currency\n primeEndTimestamp\n primePerSecond\n primeStartTimestamp\n type\n }\n ... on PrimePoolEthRewardsAddedData {\n amount\n totalRewards\n type\n }\n ... on PrimePoolEthRewardsSetData {\n amount\n totalRewards\n type\n }\n ... on PrimePoolLogPoolAdditionData {\n tokenIds\n type\n }\n ... on PrimePoolLogPoolSetAllocPointData {\n allocPoint\n currency\n totalAllocPoint\n type\n }\n ... on PrimePoolLogSetPerSecondData {\n amount\n currency\n endTimestamp\n ethAmountPerSecond\n primeAmountPerSecond\n startTimestamp\n type\n }\n ... on PrimePoolLogUpdatePoolData {\n accPerShare\n currency\n ethAmount\n lastRewardTimestamp\n primeAmount\n supply\n totalSupply\n type\n }\n ... on PrimePoolRewardDecreaseData {\n currency\n eventAmount\n type\n updatedAmount\n }\n ... on PrimePoolRewardIncreaseData {\n currency\n eventAmount\n type\n updatedAmount\n }\n ... on PrimePoolTimeCachePeriodUpdateData {\n currency\n timedCachePeriod\n type\n }\n ... on PrimePoolWithdrawData {\n eventAmount\n totalSupply\n type\n user\n userCachedAmount\n userEthRewardDebt\n userPrimeRewardDebt\n }\n }\n eventType\n from\n fromHashKey\n id\n logIndex\n networkId\n poolContractAddress\n poolId\n poolType\n sortKey\n timestamp\n transactionHash\n transactionIndex\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 GetPrimePools($address: String!, $cursor: String, $limit: Int, $networkId: Int!, $poolIds: [String]) {\n getPrimePools(\n address: $address\n cursor: $cursor\n limit: $limit\n networkId: $networkId\n poolIds: $poolIds\n ) {\n cursor\n items {\n calcData {\n poolAccumulatedEth\n poolAccumulatedPrime\n poolEthAmount\n poolEthPerDay\n poolEthPerSecond\n poolPrimeAmount\n poolPrimePerDay\n poolPrimePerSecond\n shareAccumulatedEth\n shareAccumulatedPrime\n shareEthPerDay\n shareEthPerSecond\n sharePrimePerDay\n sharePrimePerSecond\n }\n chainData {\n cachingPaused\n ethAllocPoint\n ethClaimed\n ethEndTimestamp\n ethLastRewardTimestamp\n ethReward\n ethStartTimestamp\n ethTimedCachePeriod\n ethTotalAllocPoint\n primeAllocPoint\n primeEndTimestamp\n primeLastRewardTimestamp\n primeStartTimestamp\n primeTotalAllocPoint\n }\n createdAt\n discoveryBlockNumber\n discoveryTransactionHash\n id\n networkId\n nftContractAddress\n poolContractAddress\n poolId\n poolType\n tokenIds\n totalSupply\n }\n }\n}"): (typeof documents)["query GetPrimePools($address: String!, $cursor: String, $limit: Int, $networkId: Int!, $poolIds: [String]) {\n getPrimePools(\n address: $address\n cursor: $cursor\n limit: $limit\n networkId: $networkId\n poolIds: $poolIds\n ) {\n cursor\n items {\n calcData {\n poolAccumulatedEth\n poolAccumulatedPrime\n poolEthAmount\n poolEthPerDay\n poolEthPerSecond\n poolPrimeAmount\n poolPrimePerDay\n poolPrimePerSecond\n shareAccumulatedEth\n shareAccumulatedPrime\n shareEthPerDay\n shareEthPerSecond\n sharePrimePerDay\n sharePrimePerSecond\n }\n chainData {\n cachingPaused\n ethAllocPoint\n ethClaimed\n ethEndTimestamp\n ethLastRewardTimestamp\n ethReward\n ethStartTimestamp\n ethTimedCachePeriod\n ethTotalAllocPoint\n primeAllocPoint\n primeEndTimestamp\n primeLastRewardTimestamp\n primeStartTimestamp\n primeTotalAllocPoint\n }\n createdAt\n discoveryBlockNumber\n discoveryTransactionHash\n id\n networkId\n nftContractAddress\n poolContractAddress\n poolId\n poolType\n tokenIds\n totalSupply\n }\n }\n}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -439,11 +309,11 @@ 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 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 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 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 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 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 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 cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\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 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 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 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 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. */ -export function graphql(source: "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 }\n}"): (typeof documents)["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 }\n}"]; +export function graphql(source: "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 documents)["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}"]; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -455,27 +325,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 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 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 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 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 }\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 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 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 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 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 }\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 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 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 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 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 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 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 }\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 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 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 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 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 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 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 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 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 }\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 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 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 NftHolders($input: NftHoldersInput!) {\n nftHolders(input: $input) {\n count\n cursor\n items {\n balance\n collectionId\n walletAddress\n }\n status\n }\n}"): (typeof documents)["query NftHolders($input: NftHoldersInput!) {\n nftHolders(input: $input) {\n count\n cursor\n items {\n balance\n collectionId\n walletAddress\n }\n status\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 cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\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 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 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 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 }\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 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 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 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 }\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 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 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 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 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 volume1\n volume4\n volume5m\n volume12\n volume24\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 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 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 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 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 volume1\n volume4\n volume5m\n volume12\n volume24\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 cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\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 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 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 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 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 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 }\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 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 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 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 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 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 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 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 }\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 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 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 PrimeHolders($cursor: String) {\n primeHolders(cursor: $cursor) {\n count\n cursor\n items {\n address\n balance\n balanceUsd\n firstHeldTimestamp\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 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 tokenAddress\n tokenId\n tokenPriceUsd\n walletId\n }\n }\n}"): (typeof documents)["query PrimeHolders($cursor: String) {\n primeHolders(cursor: $cursor) {\n count\n cursor\n items {\n address\n balance\n balanceUsd\n firstHeldTimestamp\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 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 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. - */ -export function graphql(source: "query SearchNfts($filterWashTrading: Boolean, $include: [NftSearchable!], $limit: Int, $networkFilter: [Int!], $search: String, $window: String) {\n searchNfts(\n filterWashTrading: $filterWashTrading\n include: $include\n limit: $limit\n networkFilter: $networkFilter\n search: $search\n window: $window\n ) {\n hasMore\n items {\n address\n average\n ceiling\n floor\n id\n imageUrl\n name\n networkId\n symbol\n tradeCount\n tradeCountChange\n volume\n volumeChange\n window\n }\n }\n}"): (typeof documents)["query SearchNfts($filterWashTrading: Boolean, $include: [NftSearchable!], $limit: Int, $networkFilter: [Int!], $search: String, $window: String) {\n searchNfts(\n filterWashTrading: $filterWashTrading\n include: $include\n limit: $limit\n networkFilter: $networkFilter\n search: $search\n window: $window\n ) {\n hasMore\n items {\n address\n average\n ceiling\n floor\n id\n imageUrl\n name\n networkId\n symbol\n tradeCount\n tradeCountChange\n volume\n volumeChange\n window\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 cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\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 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 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 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 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 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 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 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 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 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 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. */ @@ -511,15 +369,7 @@ 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: "query WalletNftCollectionAssets($input: WalletNftCollectionAssetsInput!) {\n walletNftCollectionAssets(input: $input) {\n collectionId\n cursor\n items {\n quantity\n tokenId\n }\n walletAddress\n }\n}"): (typeof documents)["query WalletNftCollectionAssets($input: WalletNftCollectionAssetsInput!) {\n walletNftCollectionAssets(input: $input) {\n collectionId\n cursor\n items {\n quantity\n tokenId\n }\n walletAddress\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 WalletNftCollections($input: WalletNftCollectionsInput!) {\n walletNftCollections(input: $input) {\n cursor\n items {\n collectionId\n quantity\n walletAddress\n }\n }\n}"): (typeof documents)["query WalletNftCollections($input: WalletNftCollectionsInput!) {\n walletNftCollections(input: $input) {\n cursor\n items {\n collectionId\n quantity\n walletAddress\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 OnBalanceUpdated($walletAddress: String!) {\n onBalanceUpdated(walletAddress: $walletAddress) {\n address\n balance\n balanceUsd\n firstHeldTimestamp\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 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 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 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 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 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 cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\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 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 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 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 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. */ @@ -543,7 +393,7 @@ export function graphql(source: "subscription OnEventsCreatedByMaker($input: OnE /** * 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 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 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 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 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 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 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 cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\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 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 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 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 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. */ @@ -575,7 +425,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 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 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 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 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 volume1\n volume4\n volume5m\n volume12\n volume24\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 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 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 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 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 volume1\n volume4\n volume5m\n volume12\n volume24\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 cmcId\n createBlockNumber\n createTransactionHash\n createdAt\n creatorAddress\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 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 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 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 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 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 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 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 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 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 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. */ diff --git a/src/sdk/generated/graphql.ts b/src/sdk/generated/graphql.ts index 74c9e11..f7c025b 100644 --- a/src/sdk/generated/graphql.ts +++ b/src/sdk/generated/graphql.ts @@ -168,6 +168,8 @@ export type Balance = { balanceUsd?: Maybe; /** The time that this address first held a token. */ firstHeldTimestamp?: Maybe; + /** The liquidity of the token in USD. */ + liquidityUsd?: Maybe; /** The wallet network. */ networkId: Scalars['Int']['output']; /** The balance held by the wallet, adjusted by the number of decimals in the token. */ @@ -664,18 +666,85 @@ export type CreateTokenPairEventWebhooksInput = { webhooks: Array; }; +/** Input for creating a token price event webhook. */ +export type CreateTokenPriceEventWebhookArgs = { + /** The recurrence of the webhook. Can be `INDEFINITE` or `ONCE`. */ + alertRecurrence: AlertRecurrence; + /** An optional bucket ID (max 64 characters). Can be used to query for subgroups of webhooks (useful if you have a large number of webhooks). */ + bucketId?: InputMaybe; + /** An optional bucket sort key (max 64 characters). Can be used to query for subgroups of webhooks (useful if you have a large number of webhooks). */ + bucketSortkey?: InputMaybe; + /** The url to which the webhook message should be sent. */ + callbackUrl: Scalars['String']['input']; + /** The conditions which must be met in order for the webhook to send a message. */ + conditions: TokenPriceEventWebhookConditionInput; + /** If enabled, new webhooks won't be created if a webhook with the same parameters already exists. If callbackUrl, conditions, publishingType, and alertRecurrence all match, then we return the existing webhook. */ + deduplicate?: InputMaybe; + /** The name of the webhook (max 128 characters). */ + name: Scalars['String']['input']; + /** The type of publishing for the webhook. If not set, it defaults to `SINGLE`. */ + publishingType?: InputMaybe; + /** The settings for retrying failed webhook messages. */ + retrySettings?: InputMaybe; + /** A string value to hash along with `deduplicationId` using SHA-256. Included in the webhook message for added security. */ + securityToken: Scalars['String']['input']; +}; + +/** Input for creating token price event webhooks. */ +export type CreateTokenPriceEventWebhooksInput = { + /** A list of token price event webhooks to create. */ + webhooks: Array; +}; + +/** Input for creating a token transfer event webhook. */ +export type CreateTokenTransferEventWebhookArgs = { + /** The recurrence of the webhook. Can be `INDEFINITE` or `ONCE`. */ + alertRecurrence: AlertRecurrence; + /** An optional bucket ID (max 64 characters). Can be used to query for subgroups of webhooks (useful if you have a large number of webhooks). */ + bucketId?: InputMaybe; + /** An optional bucket sort key (max 64 characters). Can be used to query for subgroups of webhooks (useful if you have a large number of webhooks). */ + bucketSortkey?: InputMaybe; + /** The url to which the webhook message should be sent. */ + callbackUrl: Scalars['String']['input']; + /** The conditions which must be met in order for the webhook to send a message. */ + conditions: TokenTransferEventWebhookConditionInput; + /** If enabled, new webhooks won't be created if a webhook with the same parameters already exists. If callbackUrl, conditions, publishingType, and alertRecurrence all match, then we return the existing webhook. */ + deduplicate?: InputMaybe; + /** The name of the webhook (max 128 characters). */ + name: Scalars['String']['input']; + /** The type of publishing for the webhook. If not set, it defaults to `SINGLE`. */ + publishingType?: InputMaybe; + /** The settings for retrying failed webhook messages. */ + retrySettings?: InputMaybe; + /** A string value to hash along with `deduplicationId` using SHA-256. Included in the webhook message for added security. */ + securityToken: Scalars['String']['input']; +}; + +/** Input for creating token transfer event webhooks. */ +export type CreateTokenTransferEventWebhooksInput = { + /** A list of token transfer event webhooks to create. */ + webhooks: Array; +}; + /** Input for creating webhooks. */ export type CreateWebhooksInput = { /** Input for creating market cap webhooks. */ marketCapWebhooksInput?: InputMaybe; /** Input for creating NFT event webhooks. */ nftEventWebhooksInput?: InputMaybe; - /** Input for creating price webhooks. */ + /** + * Input for creating price webhooks. + * @deprecated Use tokenPriceEventWebhooksInput instead. + */ priceWebhooksInput?: InputMaybe; /** Input for creating raw transaction webhooks. */ rawTransactionWebhooksInput?: InputMaybe; /** Input for creating token pair event webhooks. */ tokenPairEventWebhooksInput?: InputMaybe; + /** Input for creating token price event webhooks. */ + tokenPriceEventWebhooksInput?: InputMaybe; + /** Input for creating token transfer event webhooks. */ + tokenTransferEventWebhooksInput?: InputMaybe; }; /** Result returned by `createWebhooks`. */ @@ -691,6 +760,10 @@ export type CreateWebhooksOutput = { rawTransactionWebhooks: Array>; /** The list of token pair event webhooks that were created. */ tokenPairEventWebhooks: Array>; + /** The list of token price event webhooks that were created. */ + tokenPriceEventWebhooks: Array>; + /** The list of token transfer event webhooks that were created. */ + tokenTransferEventWebhooks: Array>; }; /** Price data for a bar at a specific resolution. */ @@ -1036,7 +1109,7 @@ export type EnhancedToken = { * @deprecated Use the TokenInfo type */ explorerData?: Maybe; - /** Whether or not the token is freezable */ + /** Returns freeze authority address if token is freezable. If null, verify against isFreezableValid. */ freezable?: Maybe; /** The ID of the token (`address:networkId`). */ id: Scalars['String']['output']; @@ -1065,7 +1138,7 @@ export type EnhancedToken = { isScam?: Maybe; /** The launchpad data for the token, if applicable. */ launchpad?: Maybe; - /** Whether or not the token is mintable */ + /** Returns mint authority address if token is mintable. If null, verify against isMintableValid. */ mintable?: Maybe; /** The token name. For example, `ApeCoin`. */ name?: Maybe; @@ -1221,6 +1294,7 @@ export enum EventType { Burn = 'Burn', Collect = 'Collect', CollectProtocol = 'CollectProtocol', + LiquidityLock = 'LiquidityLock', Mint = 'Mint', PoolBalanceChanged = 'PoolBalanceChanged', Swap = 'Swap', @@ -2050,6 +2124,8 @@ export enum LaunchpadTokenProtocol { FourMeme = 'FourMeme', /** Protocol name for Heaven. */ HeavenAmm = 'HeavenAMM', + /** Protocol name for Kumbaya. */ + Kumbaya = 'Kumbaya', /** Protocol name for MeteoraDBC. */ MeteoraDbc = 'MeteoraDBC', /** Protocol name for Moonit (formerly Moonshot). */ @@ -2066,7 +2142,9 @@ export enum LaunchpadTokenProtocol { Rainbow = 'Rainbow', /** Protocol name for LaunchLab and Bonk. */ RaydiumLaunchpad = 'RaydiumLaunchpad', - /** Protocol name for TokenMill V2. */ + /** Protocol name for TokenMill V2 (EVM). */ + TokenMillEvm = 'TokenMillEVM', + /** Protocol name for TokenMill V2 (SVM). */ TokenMillV2 = 'TokenMillV2', /** Protocol name for Vertigo. */ Vertigo = 'Vertigo', @@ -2141,6 +2219,8 @@ export type LiquidityLockConnection = { cursor?: Maybe; /** A list of liquidity locks. */ items: Array; + /** Liquidity data for each unique pair in the locks. */ + pairLiquidityData: Array; }; /** Protocols that can lock liquidity. */ @@ -2148,6 +2228,7 @@ export enum LiquidityLockProtocol { BasecampV1 = 'BASECAMP_V1', Bitbond = 'BITBOND', Burn = 'BURN', + MeteoraDammV2 = 'METEORA_DAMM_V2', UncxV2 = 'UNCX_V2', UncxV3 = 'UNCX_V3' } @@ -5200,9 +5281,9 @@ export type OnEventsCreatedByMakerInput = { export type OnLaunchpadTokenEventBatchInput = { /** The type of event. */ eventType?: InputMaybe; - /** The name of the launchpad. One of the following: Pump.fun, Pump Mayhem, Bonk, BONAD.fun, Nad.fun, Baseapp, Baseapp Creator, Zora, Zora Creator, Four.meme, Four.meme Fair, Believe, Moonshot, Jupiter Studio, boop, Heaven, TokenMill V2, Virtuals, Clanker, Clanker V4, ArenaTrade, Moonit, LaunchLab, MeteoraDBC, Vertigo, Cooking.City, time.fun, BAGS, Circus, Dealr, OhFuckFun, PrintFun, Trend, shout.fun, xApple, Sendshot, DubDub, cults, OpenGameProtocol, Printr. */ + /** The name of the launchpad. One of the following: Pump.fun, Pump Mayhem, Bonk, BONAD.fun, Nad.Fun, Baseapp, Baseapp Creator, Zora, Zora Creator, Four.meme, Four.meme Fair, Believe, Moonshot, Jupiter Studio, boop, Heaven, TokenMill V2, Virtuals, Clanker, Clanker V4, ArenaTrade, Moonit, LaunchLab, MeteoraDBC, Zora Solana, Cooking.City, time.fun, BAGS, Circus, Dealr, OhFuckFun, PrintFun, Trend, shout.fun, xApple, Sendshot, DubDub, cults, OpenGameProtocol, AMERICA.fun, Kumbaya, Printr. */ launchpadName?: InputMaybe; - /** A list of launchpad names. Any of the following: Pump.fun, Pump Mayhem, Bonk, BONAD.fun, Nad.fun, Baseapp, Baseapp Creator, Zora, Zora Creator, Four.meme, Four.meme Fair, Believe, Moonshot, Jupiter Studio, boop, Heaven, TokenMill V2, Virtuals, Clanker, Clanker V4, ArenaTrade, Moonit, LaunchLab, MeteoraDBC, Vertigo, Cooking.City, time.fun, BAGS, Circus, Dealr, OhFuckFun, PrintFun, Trend, shout.fun, xApple, Sendshot, DubDub, cults, OpenGameProtocol, Printr. */ + /** A list of launchpad names. Any of the following: Pump.fun, Pump Mayhem, Bonk, BONAD.fun, Nad.Fun, Baseapp, Baseapp Creator, Zora, Zora Creator, Four.meme, Four.meme Fair, Believe, Moonshot, Jupiter Studio, boop, Heaven, TokenMill V2, Virtuals, Clanker, Clanker V4, ArenaTrade, Moonit, LaunchLab, MeteoraDBC, Zora Solana, Cooking.City, time.fun, BAGS, Circus, Dealr, OhFuckFun, PrintFun, Trend, shout.fun, xApple, Sendshot, DubDub, cults, OpenGameProtocol, AMERICA.fun, Kumbaya, Printr. */ launchpadNames?: InputMaybe>; /** The network ID that the token is deployed on. */ networkId?: InputMaybe; @@ -5218,9 +5299,9 @@ export type OnLaunchpadTokenEventInput = { address?: InputMaybe; /** The type of event. */ eventType?: InputMaybe; - /** The name of the launchpad. One of the following: Pump.fun, Pump Mayhem, Bonk, BONAD.fun, Nad.fun, Baseapp, Baseapp Creator, Zora, Zora Creator, Four.meme, Four.meme Fair, Believe, Moonshot, Jupiter Studio, boop, Heaven, TokenMill V2, Virtuals, Clanker, Clanker V4, ArenaTrade, Moonit, LaunchLab, MeteoraDBC, Vertigo, Cooking.City, time.fun, BAGS, Circus, Dealr, OhFuckFun, PrintFun, Trend, shout.fun, xApple, Sendshot, DubDub, cults, OpenGameProtocol, Printr. */ + /** The name of the launchpad. One of the following: Pump.fun, Pump Mayhem, Bonk, BONAD.fun, Nad.Fun, Baseapp, Baseapp Creator, Zora, Zora Creator, Four.meme, Four.meme Fair, Believe, Moonshot, Jupiter Studio, boop, Heaven, TokenMill V2, Virtuals, Clanker, Clanker V4, ArenaTrade, Moonit, LaunchLab, MeteoraDBC, Zora Solana, Cooking.City, time.fun, BAGS, Circus, Dealr, OhFuckFun, PrintFun, Trend, shout.fun, xApple, Sendshot, DubDub, cults, OpenGameProtocol, AMERICA.fun, Kumbaya, Printr. */ launchpadName?: InputMaybe; - /** A list of launchpad names. Any of the following: Pump.fun, Pump Mayhem, Bonk, BONAD.fun, Nad.fun, Baseapp, Baseapp Creator, Zora, Zora Creator, Four.meme, Four.meme Fair, Believe, Moonshot, Jupiter Studio, boop, Heaven, TokenMill V2, Virtuals, Clanker, Clanker V4, ArenaTrade, Moonit, LaunchLab, MeteoraDBC, Vertigo, Cooking.City, time.fun, BAGS, Circus, Dealr, OhFuckFun, PrintFun, Trend, shout.fun, xApple, Sendshot, DubDub, cults, OpenGameProtocol, Printr. */ + /** A list of launchpad names. Any of the following: Pump.fun, Pump Mayhem, Bonk, BONAD.fun, Nad.Fun, Baseapp, Baseapp Creator, Zora, Zora Creator, Four.meme, Four.meme Fair, Believe, Moonshot, Jupiter Studio, boop, Heaven, TokenMill V2, Virtuals, Clanker, Clanker V4, ArenaTrade, Moonit, LaunchLab, MeteoraDBC, Zora Solana, Cooking.City, time.fun, BAGS, Circus, Dealr, OhFuckFun, PrintFun, Trend, shout.fun, xApple, Sendshot, DubDub, cults, OpenGameProtocol, AMERICA.fun, Kumbaya, Printr. */ launchpadNames?: InputMaybe>; /** The network ID that the token is deployed on. */ networkId?: InputMaybe; @@ -5320,6 +5401,19 @@ export type OneOfNumberConditionInput = { oneOf: Array; }; +/** Token transfer direction list condition. */ +export type OneOfTokenTransferDirectionCondition = { + __typename?: 'OneOfTokenTransferDirectionCondition'; + /** The list of transfer directions. */ + oneOf: Array; +}; + +/** Input for token transfer direction list condition. */ +export type OneOfTokenTransferDirectionConditionInput = { + /** The list of transfer directions to listen for. */ + oneOf: Array; +}; + /** Metadata for a token pair. */ export type Pair = { __typename?: 'Pair'; @@ -5686,6 +5780,19 @@ export type PairFilters = { walletAgeStd?: InputMaybe; }; +/** Liquidity data for a specific pair. */ +export type PairLiquidityData = { + __typename?: 'PairLiquidityData'; + /** The network ID the pair is deployed on. */ + networkId: Scalars['Int']['output']; + /** The address of the pair. */ + pairAddress: Scalars['String']['output']; + /** The ID of the pair (`address:networkId`). */ + pairId: Scalars['String']['output']; + /** The total liquidity in the pair. */ + totalLiquidity: Scalars['String']['output']; +}; + export type PairMetadata = { __typename?: 'PairMetadata'; /** The unix timestamp for the creation of the pair. */ @@ -5784,6 +5891,8 @@ export type PairMetadata = { volume12?: Maybe; /** The trade volume in USD in the past 24 hours. */ volume24?: Maybe; + /** Wallet pattern data for the quote token, if available. Only populated for launchpad tokens. */ + walletActivity?: Maybe; }; /** Metadata for a token in a pair. */ @@ -6247,17 +6356,6 @@ export type PriceEventWebhookConditionInput = { volumeUsd?: InputMaybe; }; -/** Response returned by `primeHolders`. */ -export type PrimeHolders = { - __typename?: 'PrimeHolders'; - /** The number of holders returned. */ - count: Scalars['Int']['output']; - /** The cursor to use for pagination. */ - cursor?: Maybe; - /** A list of holders of PRIME. Each request returns 50 results. */ - items: Array; -}; - /** An Echelon Prime Pool. */ export type PrimePool = { __typename?: 'PrimePool'; @@ -6740,7 +6838,7 @@ export type PrimePoolWithdrawData = { userPrimeRewardDebt: Scalars['String']['output']; }; -export type ProtocolData = ArenaTradeData | UniswapV4Data; +export type ProtocolData = ArenaTradeData | PumpData | UniswapV4Data; /** The type of publishing for the webhook. If not set, it defaults to `SINGLE`. */ export enum PublishingType { @@ -6748,6 +6846,13 @@ export enum PublishingType { Single = 'SINGLE' } +export type PumpData = { + __typename?: 'PumpData'; + /** Creator from create instruction data */ + creator?: Maybe; + type: Scalars['String']['output']; +}; + export type Query = { __typename?: 'Query'; /** Get the active short-lived api token for this api key by the short-lived token */ @@ -6769,13 +6874,25 @@ export type Query = { * @deprecated Use filterWallets instead */ filterNetworkWallets: NetworkWalletFilterConnection; - /** Returns a list of NFT collection based on a variety of filters. */ + /** + * Returns a list of NFT collection based on a variety of filters. + * @deprecated NFT data coverage will be removed on March 31, 2026 + */ filterNftCollections?: Maybe; - /** Returns a list of Parallel assets based on a variety of filters. */ + /** + * Returns a list of Parallel assets based on a variety of filters. + * @deprecated NFT data coverage will be removed on March 31, 2026 + */ filterNftParallelAssets?: Maybe; - /** Returns a list of NFT collections based on a variety of filters. */ + /** + * Returns a list of NFT collections based on a variety of filters. + * @deprecated NFT data coverage will be removed on March 31, 2026 + */ filterNftPoolCollections?: Maybe; - /** Returns a list of NFT pools based on a variety of filters. */ + /** + * Returns a list of NFT pools based on a variety of filters. + * @deprecated NFT data coverage will be removed on March 31, 2026 + */ filterNftPools?: Maybe; /** Returns a list of pairs based on a variety of filters. */ filterPairs?: Maybe; @@ -6789,7 +6906,10 @@ export type Query = { getBars?: Maybe; /** Returns community gathered notes. */ getCommunityNotes: CommunityNotesResponse; - /** Returns bucketed stats for a given NFT collection. */ + /** + * Returns bucketed stats for a given NFT collection. + * @deprecated NFT data coverage will be removed on March 31, 2026 + */ getDetailedNftStats?: Maybe; /** Returns bucketed stats for a given token within a pair. */ getDetailedPairStats?: Maybe; @@ -6822,35 +6942,80 @@ export type Query = { getNetworkStatus?: Maybe>; /** Returns a list of all networks supported on Codex. */ getNetworks: Array; - /** Returns a list of NFT assets in a given collection. */ + /** + * Returns a list of NFT assets in a given collection. + * @deprecated NFT data coverage will be removed on March 31, 2026 + */ getNftAssets?: Maybe; - /** Returns stats for an NFT collection across different time frames. */ + /** + * Returns stats for an NFT collection across different time frames. + * @deprecated NFT data coverage will be removed on March 31, 2026 + */ getNftCollectionMetadata?: Maybe; - /** Returns a list of NFT collection metadata. */ + /** + * Returns a list of NFT collection metadata. + * @deprecated NFT data coverage will be removed on March 31, 2026 + */ getNftContracts?: Maybe>>; - /** Returns transactions for an NFT collection across any marketplace(s). */ + /** + * Returns transactions for an NFT collection across any marketplace(s). + * @deprecated NFT data coverage will be removed on March 31, 2026 + */ getNftEvents?: Maybe; - /** Returns an NFT pool. */ + /** + * Returns an NFT pool. + * @deprecated NFT data coverage will be removed on March 31, 2026 + */ getNftPool?: Maybe; - /** Returns an NFT pool collection with pool stats for a given AMM NFT marketplace. */ + /** + * Returns an NFT pool collection with pool stats for a given AMM NFT marketplace. + * @deprecated NFT data coverage will be removed on March 31, 2026 + */ getNftPoolCollection?: Maybe; - /** Returns an NFT collection with pool stats for a given AMM NFT marketplace. */ + /** + * Returns an NFT collection with pool stats for a given AMM NFT marketplace. + * @deprecated NFT data coverage will be removed on March 31, 2026 + */ getNftPoolCollectionsByExchange?: Maybe; - /** Returns transactions for an NFT collection across all NFT pools or within a given pool. */ + /** + * Returns transactions for an NFT collection across all NFT pools or within a given pool. + * @deprecated NFT data coverage will be removed on March 31, 2026 + */ getNftPoolEvents?: Maybe; - /** Returns aggregated NFT pool/collection stats for a given time frame. */ + /** + * Returns aggregated NFT pool/collection stats for a given time frame. + * @deprecated NFT data coverage will be removed on March 31, 2026 + */ getNftPoolStats?: Maybe; - /** Returns NFT pools for a given collection and AMM NFT marketplace. */ + /** + * Returns NFT pools for a given collection and AMM NFT marketplace. + * @deprecated NFT data coverage will be removed on March 31, 2026 + */ getNftPoolsByCollectionAndExchange?: Maybe; - /** Returns a list of NFT pools for a given owner. */ + /** + * Returns a list of NFT pools for a given owner. + * @deprecated NFT data coverage will be removed on March 31, 2026 + */ getNftPoolsByOwner?: Maybe; - /** Returns changes made to Parallel card metadata over time. */ + /** + * Returns changes made to Parallel card metadata over time. + * @deprecated NFT data coverage will be removed on March 31, 2026 + */ getParallelCardChanges?: Maybe; - /** Returns a list of Prime pool cached assets. */ + /** + * Returns a list of Prime pool cached assets. + * @deprecated NFT data coverage will be removed on March 31, 2026 + */ getPrimePoolAssets?: Maybe; - /** Returns a list of Prime pool events. */ + /** + * Returns a list of Prime pool events. + * @deprecated NFT data coverage will be removed on March 31, 2026 + */ getPrimePoolEvents?: Maybe; - /** Returns a list of Prime pools. */ + /** + * Returns a list of Prime pools. + * @deprecated NFT data coverage will be removed on March 31, 2026 + */ getPrimePools?: Maybe; /** Returns charting metadata for a given pair. Used for implementing a Trading View datafeed. */ getSymbol?: Maybe; @@ -6881,13 +7046,17 @@ export type Query = { * @deprecated This query is no longer supported and will not return up to date data. Use `filterTokens` instead. */ listTopTokens?: Maybe>; - /** Returns list of wallets that hold a given collection, ordered by holdings descending. Also has the unique count of holders for that collection. */ + /** + * Returns list of wallets that hold a given collection, ordered by holdings descending. Also has the unique count of holders for that collection. + * @deprecated NFT data coverage will be removed on March 31, 2026 + */ nftHolders: NftHoldersResponse; /** Returns metadata for a pair of tokens. */ pairMetadata: PairMetadata; - /** Returns a list of holders of the PRIME token on ethereum. */ - primeHolders: PrimeHolders; - /** Returns a list of NFT collections matching a given query string. */ + /** + * Returns a list of NFT collections matching a given query string. + * @deprecated NFT data coverage will be removed on March 31, 2026 + */ searchNfts?: Maybe; /** Returns a single token by its address & network id. */ token: EnhancedToken; @@ -6905,9 +7074,15 @@ export type Query = { walletAggregateBackfillState: WalletAggregateBackfillStateResponse; /** Returns a chart of a wallet's activity. */ walletChart?: Maybe; - /** Returns list of NFT assets held by a given wallet for a single collection. */ + /** + * Returns list of NFT assets held by a given wallet for a single collection. + * @deprecated NFT data coverage will be removed on March 31, 2026 + */ walletNftCollectionAssets: WalletNftCollectionAssetsResponse; - /** Returns list of collections and quantity of NFTs held by a given wallet. */ + /** + * Returns list of collections and quantity of NFTs held by a given wallet. + * @deprecated NFT data coverage will be removed on March 31, 2026 + */ walletNftCollections: WalletNftCollectionsResponse; }; @@ -7365,11 +7540,6 @@ export type QueryPairMetadataArgs = { }; -export type QueryPrimeHoldersArgs = { - cursor?: InputMaybe; -}; - - export type QuerySearchNftsArgs = { filterWashTrading?: InputMaybe; include?: InputMaybe>; @@ -7757,11 +7927,20 @@ export type Subscription = { onLaunchpadTokenEvent: LaunchpadTokenEventOutput; /** Live-streamed launchpad token events batched (more efficient). */ onLaunchpadTokenEventBatch: Array; - /** Live-streamed transactions for an NFT asset. */ + /** + * Live-streamed transactions for an NFT asset. + * @deprecated NFT data coverage will be removed on March 31, 2026 + */ onNftAssetsCreated?: Maybe; - /** Live-streamed transactions for an NFT collection. */ + /** + * Live-streamed transactions for an NFT collection. + * @deprecated NFT data coverage will be removed on March 31, 2026 + */ onNftEventsCreated?: Maybe; - /** Live streamed NFT pool events for a given pool address or collection address. */ + /** + * Live streamed NFT pool events for a given pool address or collection address. + * @deprecated NFT data coverage will be removed on March 31, 2026 + */ onNftPoolEventsCreated?: Maybe; /** Live-streamed stat updates for a given token within a pair. */ onPairMetadataUpdated?: Maybe; @@ -8426,8 +8605,13 @@ export type TokenFilters = { circulatingMarketCap?: InputMaybe; /** The unix timestamp for the creation of the token's first pair. */ createdAt?: InputMaybe; - /** The address of the creator of the token. */ + /** + * The address of the creator of the token. + * @deprecated Use creatorAddresses string array instead + */ creatorAddress?: InputMaybe; + /** The addresses of the token creators (supports multiple addresses). Max 25 addresses. You cannot provide both creatorAddress and creatorAddresses. */ + creatorAddresses?: InputMaybe>; /** Filter by percentage of tokens held by the dev */ devHeldPercentage?: InputMaybe; /** The list of exchange contract addresses to filter by. */ @@ -8436,7 +8620,7 @@ export type TokenFilters = { exchangeId?: InputMaybe>>; /** @deprecated FDV isn't supported - use marketCap instead */ fdv?: InputMaybe; - /** The token in freezable */ + /** The token is freezable. */ freezable?: InputMaybe; /** The highest price in USD in the past hour. */ high1?: InputMaybe; @@ -8470,9 +8654,9 @@ export type TokenFilters = { launchpadGraduationPercent?: InputMaybe; /** Indicates if the launchpad has migrated. */ launchpadMigrated?: InputMaybe; - /** The timestamp when the launchpad was migrated */ + /** The timestamp when the launchpad was migrated. */ launchpadMigratedAt?: InputMaybe; - /** A list of launchpad names. Any of the following: Pump.fun, Pump Mayhem, Bonk, BONAD.fun, Nad.fun, Baseapp, Baseapp Creator, Zora, Zora Creator, Four.meme, Four.meme Fair, Believe, Moonshot, Jupiter Studio, boop, Heaven, TokenMill V2, Virtuals, Clanker, Clanker V4, ArenaTrade, Moonit, LaunchLab, MeteoraDBC, Vertigo, Cooking.City, time.fun, BAGS, Circus, Dealr, OhFuckFun, PrintFun, Trend, shout.fun, xApple, Sendshot, DubDub, cults, OpenGameProtocol, Printr. */ + /** A list of launchpad names. Any of the following: Pump.fun, Pump Mayhem, Bonk, BONAD.fun, Nad.Fun, Baseapp, Baseapp Creator, Zora, Zora Creator, Four.meme, Four.meme Fair, Believe, Moonshot, Jupiter Studio, boop, Heaven, TokenMill V2, Virtuals, Clanker, Clanker V4, ArenaTrade, Moonit, LaunchLab, MeteoraDBC, Zora Solana, Cooking.City, time.fun, BAGS, Circus, Dealr, OhFuckFun, PrintFun, Trend, shout.fun, xApple, Sendshot, DubDub, cults, OpenGameProtocol, AMERICA.fun, Kumbaya, Printr. */ launchpadName?: InputMaybe>; /** A list of launchpad protocols. */ launchpadProtocol?: InputMaybe>; @@ -8490,7 +8674,7 @@ export type TokenFilters = { low24?: InputMaybe; /** The market cap of circulating supply. */ marketCap?: InputMaybe; - /** The token in mintable */ + /** The token is mintable. */ mintable?: InputMaybe; /** The list of network IDs to filter by. Applied in conjunction with `exchangeId` filter using an OR condition. When used together, the query returns results that match either the specified exchanges or the specified network. */ network?: InputMaybe>>; @@ -8522,9 +8706,9 @@ export type TokenFilters = { sniperCount?: InputMaybe; /** Filter by percentage of tokens held by snipers */ sniperHeldPercentage?: InputMaybe; - /** The percentage of wallets that are less than 1d old that have traded in the last 24h */ + /** The percentage of wallets that are less than 1d old that have traded in the last 24h. */ swapPct1dOldWallet?: InputMaybe; - /** The percentage of wallets that are less than 7d old that have traded in the last 24h */ + /** The percentage of wallets that are less than 7d old that have traded in the last 24h. */ swapPct7dOldWallet?: InputMaybe; /** The unix timestamp for the creation of the token. */ tokenCreatedAt?: InputMaybe; @@ -8590,9 +8774,9 @@ export type TokenFilters = { volumeChange12?: InputMaybe; /** The percent volume change in the past 24 hours. Decimal format. */ volumeChange24?: InputMaybe; - /** The average age of the wallets that traded in the last 24h */ + /** The average age of the wallets that traded in the last 24h. */ walletAgeAvg?: InputMaybe; - /** The standard deviation of age of the wallets that traded in the last 24h */ + /** The standard deviation of age of the wallets that traded in the last 24h. */ walletAgeStd?: InputMaybe; }; @@ -8781,6 +8965,27 @@ export enum TokenPairStatisticsType { Unfiltered = 'UNFILTERED' } +/** Webhook conditions for a token price event. */ +export type TokenPriceEventWebhookCondition = { + __typename?: 'TokenPriceEventWebhookCondition'; + /** The token contract address the webhook is listening for. */ + address: StringEqualsCondition; + /** The network ID the webhook is listening on. */ + networkId: IntEqualsCondition; + /** The price condition that must be met in order for the webhook to send. */ + priceUsd: ComparisonOperator; +}; + +/** Input conditions for a token price event webhook. */ +export type TokenPriceEventWebhookConditionInput = { + /** The contract address of the token to listen for. */ + address: StringEqualsConditionInput; + /** The network ID to listen on. */ + networkId: IntEqualsConditionInput; + /** The price conditions to listen for. */ + priceUsd: ComparisonOperatorInput; +}; + /** Input type of `TokenRanking`. */ export type TokenRanking = { /** The attribute to rank tokens by. */ @@ -8975,6 +9180,58 @@ export type TokenTopTradersInput = { tradingPeriod: TradingPeriod; }; +/** The direction of a token transfer. */ +export enum TokenTransferDirection { + /** Tokens sent from the address. */ + From = 'FROM', + /** Tokens received to the address. */ + To = 'TO' +} + +/** Webhook conditions for a token transfer event. */ +export type TokenTransferEventWebhookCondition = { + __typename?: 'TokenTransferEventWebhookCondition'; + /** The wallet address the webhook is listening for transfers from or to. */ + address?: Maybe; + /** The directions of the transfer the webhook is listening for. */ + direction?: Maybe; + /** The list of network IDs the webhook is listening on. */ + networkId?: Maybe; + /** The token contract address the webhook is listening for. */ + tokenAddress?: Maybe; +}; + +/** Input conditions for a token transfer event webhook. */ +export type TokenTransferEventWebhookConditionInput = { + /** The wallet address to listen for transfers from or to. */ + address?: InputMaybe; + /** The direction of the transfer (TO, FROM). Defaults to [TO, FROM] if not specified. */ + direction?: InputMaybe; + /** The list of network IDs to listen on. */ + networkId?: InputMaybe; + /** The contract address of the token to listen for. */ + tokenAddress?: InputMaybe; +}; + +/** Wallet pattern data showing suspicious or notable wallet activity for a token. */ +export type TokenWalletActivity = { + __typename?: 'TokenWalletActivity'; + /** The number of bundler wallets that hold this token. */ + bundlerCount: Scalars['Int']['output']; + /** The percentage of token supply held by bundler wallets. */ + bundlerHeldPercentage: Scalars['Float']['output']; + /** The percentage of token supply held by developer/creator wallet. */ + devHeldPercentage: Scalars['Float']['output']; + /** The number of insider wallets that hold this token. */ + insiderCount: Scalars['Int']['output']; + /** The percentage of token supply held by insider wallets. */ + insiderHeldPercentage: Scalars['Float']['output']; + /** The number of sniper wallets that hold this token. */ + sniperCount: Scalars['Int']['output']; + /** The percentage of token supply held by sniper wallets. */ + sniperHeldPercentage: Scalars['Float']['output']; +}; + /** A connection of wallets matching a filter on a specific token. */ export type TokenWalletFilterConnection = { __typename?: 'TokenWalletFilterConnection'; @@ -10232,7 +10489,7 @@ export type Webhook = { }; /** Webhook conditions that must be met for each webhook type. */ -export type WebhookCondition = MarketCapEventWebhookCondition | NftEventWebhookCondition | PriceEventWebhookCondition | RawTransactionWebhookCondition | TokenPairEventWebhookCondition; +export type WebhookCondition = MarketCapEventWebhookCondition | NftEventWebhookCondition | PriceEventWebhookCondition | RawTransactionWebhookCondition | TokenPairEventWebhookCondition | TokenPriceEventWebhookCondition | TokenTransferEventWebhookCondition; /** NFT marketplace names. */ export enum WebhookNftEventFillSource { @@ -10266,7 +10523,9 @@ export enum WebhookType { NftEvent = 'NFT_EVENT', PriceEvent = 'PRICE_EVENT', RawTransaction = 'RAW_TRANSACTION', - TokenPairEvent = 'TOKEN_PAIR_EVENT' + TokenPairEvent = 'TOKEN_PAIR_EVENT', + TokenPriceEvent = 'TOKEN_PRICE_EVENT', + TokenTransferEvent = 'TOKEN_TRANSFER_EVENT' } /** Price stats for a pair over a time frame. */ @@ -10470,6 +10729,7 @@ export enum Join__Graph { Decodings = 'DECODINGS', Meta = 'META', Nfts = 'NFTS', + Predictions = 'PREDICTIONS', Tokens = 'TOKENS', Users = 'USERS' } @@ -10540,7 +10800,7 @@ export type CreateWebhooksMutationVariables = Exact<{ }>; -export type CreateWebhooksMutation = { __typename?: 'Mutation', createWebhooks: { __typename?: 'CreateWebhooksOutput', nftEventWebhooks: Array<{ __typename?: 'Webhook', alertRecurrence: AlertRecurrence, bucketId?: string | null, bucketSortkey?: string | null, callbackUrl: string, created: number, groupId?: string | null, id: string, name: string, publishingType?: PublishingType | null, status: string, webhookType: WebhookType, conditions: { __typename?: 'MarketCapEventWebhookCondition' } | { __typename?: 'NftEventWebhookCondition', ignoreTransfers?: boolean | null, contractAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, eventType?: { __typename?: 'NftEventTypeCondition', eq: WebhookNftEventType } | null, exchangeAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, fillSource?: { __typename?: 'NftEventFillSourceCondition', oneOf: Array } | null, individualBaseTokenPrice?: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null } | null, maker?: { __typename?: 'StringEqualsCondition', eq: string } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, nftTokenAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, tokenId?: { __typename?: 'StringEqualsCondition', eq: string } | null } | { __typename?: 'PriceEventWebhookCondition', priceNetworkId: { __typename?: 'IntEqualsCondition', eq: number }, priceUsd: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null }, priceTokenAddress: { __typename?: 'StringEqualsCondition', eq: string } } | { __typename?: 'RawTransactionWebhookCondition', ignoreNftEvents?: boolean | null, ignoreTokenPairEvents?: boolean | null, from?: { __typename?: 'StringEqualsCondition', eq: string } | null, input?: { __typename?: 'StringContainsCondition', contains?: Array | null, notContains?: Array | null } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, to?: { __typename?: 'StringEqualsCondition', eq: string } | null, toOrFrom?: { __typename?: 'StringEqualsCondition', eq: string } | null } | { __typename?: 'TokenPairEventWebhookCondition', eventType?: { __typename?: 'TokenPairEventTypeCondition', oneOf: Array } | null, exchangeAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, maker?: { __typename?: 'StringEqualsCondition', eq: string } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, pairAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, swapValue?: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null } | null, tokenAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null }, retrySettings?: { __typename?: 'RetrySettings', maxRetries?: number | null, maxRetryDelay?: number | null, maxTimeElapsed?: number | null, minRetryDelay?: number | null } | null } | null>, priceWebhooks: Array<{ __typename?: 'Webhook', alertRecurrence: AlertRecurrence, bucketId?: string | null, bucketSortkey?: string | null, callbackUrl: string, created: number, groupId?: string | null, id: string, name: string, publishingType?: PublishingType | null, status: string, webhookType: WebhookType, conditions: { __typename?: 'MarketCapEventWebhookCondition' } | { __typename?: 'NftEventWebhookCondition', ignoreTransfers?: boolean | null, contractAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, eventType?: { __typename?: 'NftEventTypeCondition', eq: WebhookNftEventType } | null, exchangeAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, fillSource?: { __typename?: 'NftEventFillSourceCondition', oneOf: Array } | null, individualBaseTokenPrice?: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null } | null, maker?: { __typename?: 'StringEqualsCondition', eq: string } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, nftTokenAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, tokenId?: { __typename?: 'StringEqualsCondition', eq: string } | null } | { __typename?: 'PriceEventWebhookCondition', priceNetworkId: { __typename?: 'IntEqualsCondition', eq: number }, priceUsd: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null }, priceTokenAddress: { __typename?: 'StringEqualsCondition', eq: string } } | { __typename?: 'RawTransactionWebhookCondition', ignoreNftEvents?: boolean | null, ignoreTokenPairEvents?: boolean | null, from?: { __typename?: 'StringEqualsCondition', eq: string } | null, input?: { __typename?: 'StringContainsCondition', contains?: Array | null, notContains?: Array | null } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, to?: { __typename?: 'StringEqualsCondition', eq: string } | null, toOrFrom?: { __typename?: 'StringEqualsCondition', eq: string } | null } | { __typename?: 'TokenPairEventWebhookCondition', eventType?: { __typename?: 'TokenPairEventTypeCondition', oneOf: Array } | null, exchangeAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, maker?: { __typename?: 'StringEqualsCondition', eq: string } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, pairAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, swapValue?: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null } | null, tokenAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null }, retrySettings?: { __typename?: 'RetrySettings', maxRetries?: number | null, maxRetryDelay?: number | null, maxTimeElapsed?: number | null, minRetryDelay?: number | null } | null } | null>, rawTransactionWebhooks: Array<{ __typename?: 'Webhook', alertRecurrence: AlertRecurrence, bucketId?: string | null, bucketSortkey?: string | null, callbackUrl: string, created: number, groupId?: string | null, id: string, name: string, publishingType?: PublishingType | null, status: string, webhookType: WebhookType, conditions: { __typename?: 'MarketCapEventWebhookCondition' } | { __typename?: 'NftEventWebhookCondition', ignoreTransfers?: boolean | null, contractAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, eventType?: { __typename?: 'NftEventTypeCondition', eq: WebhookNftEventType } | null, exchangeAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, fillSource?: { __typename?: 'NftEventFillSourceCondition', oneOf: Array } | null, individualBaseTokenPrice?: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null } | null, maker?: { __typename?: 'StringEqualsCondition', eq: string } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, tokenAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, tokenId?: { __typename?: 'StringEqualsCondition', eq: string } | null } | { __typename?: 'PriceEventWebhookCondition', priceEventNetworkId: { __typename?: 'IntEqualsCondition', eq: number }, priceUsd: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null }, priceEventTokenAddress: { __typename?: 'StringEqualsCondition', eq: string } } | { __typename?: 'RawTransactionWebhookCondition', ignoreNftEvents?: boolean | null, ignoreTokenPairEvents?: boolean | null, from?: { __typename?: 'StringEqualsCondition', eq: string } | null, input?: { __typename?: 'StringContainsCondition', contains?: Array | null, notContains?: Array | null } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, to?: { __typename?: 'StringEqualsCondition', eq: string } | null, toOrFrom?: { __typename?: 'StringEqualsCondition', eq: string } | null } | { __typename?: 'TokenPairEventWebhookCondition', eventType?: { __typename?: 'TokenPairEventTypeCondition', oneOf: Array } | null, exchangeAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, maker?: { __typename?: 'StringEqualsCondition', eq: string } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, pairAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, swapValue?: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null } | null, tokenAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null }, retrySettings?: { __typename?: 'RetrySettings', maxRetries?: number | null, maxRetryDelay?: number | null, maxTimeElapsed?: number | null, minRetryDelay?: number | null } | null } | null>, tokenPairEventWebhooks: Array<{ __typename?: 'Webhook', alertRecurrence: AlertRecurrence, bucketId?: string | null, bucketSortkey?: string | null, callbackUrl: string, created: number, groupId?: string | null, id: string, name: string, publishingType?: PublishingType | null, status: string, webhookType: WebhookType, conditions: { __typename?: 'MarketCapEventWebhookCondition' } | { __typename?: 'NftEventWebhookCondition', ignoreTransfers?: boolean | null, contractAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, eventType?: { __typename?: 'NftEventTypeCondition', eq: WebhookNftEventType } | null, exchangeAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, fillSource?: { __typename?: 'NftEventFillSourceCondition', oneOf: Array } | null, individualBaseTokenPrice?: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null } | null, maker?: { __typename?: 'StringEqualsCondition', eq: string } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, tokenAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, tokenId?: { __typename?: 'StringEqualsCondition', eq: string } | null } | { __typename?: 'PriceEventWebhookCondition', priceEventNetworkId: { __typename?: 'IntEqualsCondition', eq: number }, priceUsd: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null }, priceEventTokenAddress: { __typename?: 'StringEqualsCondition', eq: string } } | { __typename?: 'RawTransactionWebhookCondition', ignoreNftEvents?: boolean | null, ignoreTokenPairEvents?: boolean | null, from?: { __typename?: 'StringEqualsCondition', eq: string } | null, input?: { __typename?: 'StringContainsCondition', contains?: Array | null, notContains?: Array | null } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, to?: { __typename?: 'StringEqualsCondition', eq: string } | null, toOrFrom?: { __typename?: 'StringEqualsCondition', eq: string } | null } | { __typename?: 'TokenPairEventWebhookCondition', eventType?: { __typename?: 'TokenPairEventTypeCondition', oneOf: Array } | null, exchangeAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, maker?: { __typename?: 'StringEqualsCondition', eq: string } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, pairAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, swapValue?: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null } | null, tokenAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null }, retrySettings?: { __typename?: 'RetrySettings', maxRetries?: number | null, maxRetryDelay?: number | null, maxTimeElapsed?: number | null, minRetryDelay?: number | null } | null } | null> } }; +export type CreateWebhooksMutation = { __typename?: 'Mutation', createWebhooks: { __typename?: 'CreateWebhooksOutput', nftEventWebhooks: Array<{ __typename?: 'Webhook', alertRecurrence: AlertRecurrence, bucketId?: string | null, bucketSortkey?: string | null, callbackUrl: string, created: number, groupId?: string | null, id: string, name: string, publishingType?: PublishingType | null, status: string, webhookType: WebhookType, conditions: { __typename?: 'MarketCapEventWebhookCondition' } | { __typename?: 'NftEventWebhookCondition', ignoreTransfers?: boolean | null, contractAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, eventType?: { __typename?: 'NftEventTypeCondition', eq: WebhookNftEventType } | null, exchangeAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, fillSource?: { __typename?: 'NftEventFillSourceCondition', oneOf: Array } | null, individualBaseTokenPrice?: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null } | null, maker?: { __typename?: 'StringEqualsCondition', eq: string } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, nftTokenAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, tokenId?: { __typename?: 'StringEqualsCondition', eq: string } | null } | { __typename?: 'PriceEventWebhookCondition', priceNetworkId: { __typename?: 'IntEqualsCondition', eq: number }, priceUsd: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null }, priceTokenAddress: { __typename?: 'StringEqualsCondition', eq: string } } | { __typename?: 'RawTransactionWebhookCondition', ignoreNftEvents?: boolean | null, ignoreTokenPairEvents?: boolean | null, from?: { __typename?: 'StringEqualsCondition', eq: string } | null, input?: { __typename?: 'StringContainsCondition', contains?: Array | null, notContains?: Array | null } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, to?: { __typename?: 'StringEqualsCondition', eq: string } | null, toOrFrom?: { __typename?: 'StringEqualsCondition', eq: string } | null } | { __typename?: 'TokenPairEventWebhookCondition', eventType?: { __typename?: 'TokenPairEventTypeCondition', oneOf: Array } | null, exchangeAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, maker?: { __typename?: 'StringEqualsCondition', eq: string } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, pairAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, swapValue?: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null } | null, tokenAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null } | { __typename?: 'TokenPriceEventWebhookCondition' } | { __typename?: 'TokenTransferEventWebhookCondition' }, retrySettings?: { __typename?: 'RetrySettings', maxRetries?: number | null, maxRetryDelay?: number | null, maxTimeElapsed?: number | null, minRetryDelay?: number | null } | null } | null>, priceWebhooks: Array<{ __typename?: 'Webhook', alertRecurrence: AlertRecurrence, bucketId?: string | null, bucketSortkey?: string | null, callbackUrl: string, created: number, groupId?: string | null, id: string, name: string, publishingType?: PublishingType | null, status: string, webhookType: WebhookType, conditions: { __typename?: 'MarketCapEventWebhookCondition' } | { __typename?: 'NftEventWebhookCondition', ignoreTransfers?: boolean | null, contractAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, eventType?: { __typename?: 'NftEventTypeCondition', eq: WebhookNftEventType } | null, exchangeAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, fillSource?: { __typename?: 'NftEventFillSourceCondition', oneOf: Array } | null, individualBaseTokenPrice?: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null } | null, maker?: { __typename?: 'StringEqualsCondition', eq: string } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, nftTokenAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, tokenId?: { __typename?: 'StringEqualsCondition', eq: string } | null } | { __typename?: 'PriceEventWebhookCondition', priceNetworkId: { __typename?: 'IntEqualsCondition', eq: number }, priceUsd: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null }, priceTokenAddress: { __typename?: 'StringEqualsCondition', eq: string } } | { __typename?: 'RawTransactionWebhookCondition', ignoreNftEvents?: boolean | null, ignoreTokenPairEvents?: boolean | null, from?: { __typename?: 'StringEqualsCondition', eq: string } | null, input?: { __typename?: 'StringContainsCondition', contains?: Array | null, notContains?: Array | null } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, to?: { __typename?: 'StringEqualsCondition', eq: string } | null, toOrFrom?: { __typename?: 'StringEqualsCondition', eq: string } | null } | { __typename?: 'TokenPairEventWebhookCondition', eventType?: { __typename?: 'TokenPairEventTypeCondition', oneOf: Array } | null, exchangeAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, maker?: { __typename?: 'StringEqualsCondition', eq: string } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, pairAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, swapValue?: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null } | null, tokenAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null } | { __typename?: 'TokenPriceEventWebhookCondition' } | { __typename?: 'TokenTransferEventWebhookCondition' }, retrySettings?: { __typename?: 'RetrySettings', maxRetries?: number | null, maxRetryDelay?: number | null, maxTimeElapsed?: number | null, minRetryDelay?: number | null } | null } | null>, rawTransactionWebhooks: Array<{ __typename?: 'Webhook', alertRecurrence: AlertRecurrence, bucketId?: string | null, bucketSortkey?: string | null, callbackUrl: string, created: number, groupId?: string | null, id: string, name: string, publishingType?: PublishingType | null, status: string, webhookType: WebhookType, conditions: { __typename?: 'MarketCapEventWebhookCondition' } | { __typename?: 'NftEventWebhookCondition', ignoreTransfers?: boolean | null, contractAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, eventType?: { __typename?: 'NftEventTypeCondition', eq: WebhookNftEventType } | null, exchangeAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, fillSource?: { __typename?: 'NftEventFillSourceCondition', oneOf: Array } | null, individualBaseTokenPrice?: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null } | null, maker?: { __typename?: 'StringEqualsCondition', eq: string } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, tokenAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, tokenId?: { __typename?: 'StringEqualsCondition', eq: string } | null } | { __typename?: 'PriceEventWebhookCondition', priceEventNetworkId: { __typename?: 'IntEqualsCondition', eq: number }, priceUsd: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null }, priceEventTokenAddress: { __typename?: 'StringEqualsCondition', eq: string } } | { __typename?: 'RawTransactionWebhookCondition', ignoreNftEvents?: boolean | null, ignoreTokenPairEvents?: boolean | null, from?: { __typename?: 'StringEqualsCondition', eq: string } | null, input?: { __typename?: 'StringContainsCondition', contains?: Array | null, notContains?: Array | null } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, to?: { __typename?: 'StringEqualsCondition', eq: string } | null, toOrFrom?: { __typename?: 'StringEqualsCondition', eq: string } | null } | { __typename?: 'TokenPairEventWebhookCondition', eventType?: { __typename?: 'TokenPairEventTypeCondition', oneOf: Array } | null, exchangeAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, maker?: { __typename?: 'StringEqualsCondition', eq: string } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, pairAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, swapValue?: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null } | null, tokenAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null } | { __typename?: 'TokenPriceEventWebhookCondition' } | { __typename?: 'TokenTransferEventWebhookCondition' }, retrySettings?: { __typename?: 'RetrySettings', maxRetries?: number | null, maxRetryDelay?: number | null, maxTimeElapsed?: number | null, minRetryDelay?: number | null } | null } | null>, tokenPairEventWebhooks: Array<{ __typename?: 'Webhook', alertRecurrence: AlertRecurrence, bucketId?: string | null, bucketSortkey?: string | null, callbackUrl: string, created: number, groupId?: string | null, id: string, name: string, publishingType?: PublishingType | null, status: string, webhookType: WebhookType, conditions: { __typename?: 'MarketCapEventWebhookCondition' } | { __typename?: 'NftEventWebhookCondition', ignoreTransfers?: boolean | null, contractAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, eventType?: { __typename?: 'NftEventTypeCondition', eq: WebhookNftEventType } | null, exchangeAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, fillSource?: { __typename?: 'NftEventFillSourceCondition', oneOf: Array } | null, individualBaseTokenPrice?: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null } | null, maker?: { __typename?: 'StringEqualsCondition', eq: string } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, tokenAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, tokenId?: { __typename?: 'StringEqualsCondition', eq: string } | null } | { __typename?: 'PriceEventWebhookCondition', priceEventNetworkId: { __typename?: 'IntEqualsCondition', eq: number }, priceUsd: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null }, priceEventTokenAddress: { __typename?: 'StringEqualsCondition', eq: string } } | { __typename?: 'RawTransactionWebhookCondition', ignoreNftEvents?: boolean | null, ignoreTokenPairEvents?: boolean | null, from?: { __typename?: 'StringEqualsCondition', eq: string } | null, input?: { __typename?: 'StringContainsCondition', contains?: Array | null, notContains?: Array | null } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, to?: { __typename?: 'StringEqualsCondition', eq: string } | null, toOrFrom?: { __typename?: 'StringEqualsCondition', eq: string } | null } | { __typename?: 'TokenPairEventWebhookCondition', eventType?: { __typename?: 'TokenPairEventTypeCondition', oneOf: Array } | null, exchangeAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, maker?: { __typename?: 'StringEqualsCondition', eq: string } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, pairAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, swapValue?: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null } | null, tokenAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null } | { __typename?: 'TokenPriceEventWebhookCondition' } | { __typename?: 'TokenTransferEventWebhookCondition' }, retrySettings?: { __typename?: 'RetrySettings', maxRetries?: number | null, maxRetryDelay?: number | null, maxTimeElapsed?: number | null, minRetryDelay?: number | null } | null } | null> } }; export type DeleteApiTokenMutationVariables = Exact<{ id: Scalars['String']['input']; @@ -10561,7 +10821,7 @@ export type RefreshBalancesMutationVariables = Exact<{ }>; -export type RefreshBalancesMutation = { __typename?: 'Mutation', refreshBalances: Array<{ __typename?: 'Balance', address: string, balance: string, balanceUsd?: string | null, firstHeldTimestamp?: number | 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, symbol?: 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, 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, 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, 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, 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, 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 ApiTokenQueryVariables = Exact<{ token: Scalars['String']['input']; @@ -10580,7 +10840,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, 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, symbol?: 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, 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, 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, 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, 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, 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 BlocksQueryVariables = Exact<{ input: BlocksInput; @@ -10614,52 +10874,6 @@ export type FilterExchangesQueryVariables = Exact<{ export type FilterExchangesQuery = { __typename?: 'Query', filterExchanges?: { __typename?: 'ExchangeFilterConnection', count?: number | null, offset?: number | null, results?: Array<{ __typename?: 'ExchangeFilterResult', dailyActiveUsers?: number | null, monthlyActiveUsers?: number | null, txnCount1?: string | null, txnCount4?: string | null, txnCount12?: string | null, txnCount24?: string | null, volumeNBT1?: string | null, volumeNBT4?: string | null, volumeNBT12?: string | null, volumeNBT24?: string | null, volumeUSD1?: string | null, volumeUSD4?: string | null, volumeUSD12?: string | null, volumeUSD24?: string | null, exchange?: { __typename?: 'FilterExchange', address: string, exchangeVersion?: string | null, iconUrl?: string | null, id: string, name?: string | null, networkId: number, tradeUrl?: string | null } | null } | null> | null } | null }; -export type FilterNftCollectionsQueryVariables = Exact<{ - collections?: InputMaybe> | InputMaybe>; - filters?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - phrase?: InputMaybe; - rankings?: InputMaybe> | InputMaybe>; -}>; - - -export type FilterNftCollectionsQuery = { __typename?: 'Query', filterNftCollections?: { __typename?: 'NftCollectionFilterConnection', count?: number | null, offset?: number | null, results?: Array<{ __typename?: 'NftCollectionFilterResult', address?: string | null, ercType?: string | null, grouping?: string | null, id?: string | null, imageUrl?: string | null, lastEventTimestamp?: number | null, name?: string | null, networkId?: number | null, symbol?: string | null, timestamp?: number | null, totalSupply?: string | null, stats1h?: { __typename?: 'NftStatsWindowWithChange', endTime?: number | null, startTime?: number | null, networkBaseToken?: { __typename?: 'NftCollectionCurrencyStats', average?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, close?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, highestSale?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, lowestSale?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, open?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, volume?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, volumeByFillsource?: Array<{ __typename?: 'NftFillsourceStatsStringMetrics', change?: number | null, current?: string | null, fillsource?: string | null, previous?: string | null } | null> | null, volumePercentByFillsource?: Array<{ __typename?: 'NftFillsourceStatsNumberMetrics', change?: number | null, current?: number | null, fillsource?: string | null, previous?: number | null } | null> | null } | null, nonCurrency?: { __typename?: 'NftCollectionNonCurrencyStats', mints?: { __typename?: 'NftStatsNumberMetrics', change?: number | null, current?: number | null, previous?: number | null } | null, sales?: { __typename?: 'NftStatsNumberMetrics', change?: number | null, current?: number | null, previous?: number | null } | null, tokensSold?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, transfers?: { __typename?: 'NftStatsNumberMetrics', change?: number | null, current?: number | null, previous?: number | null } | null, uniqueBuyers?: { __typename?: 'NftStatsNumberMetrics', change?: number | null, current?: number | null, previous?: number | null } | null, uniqueMinters?: { __typename?: 'NftStatsNumberMetrics', change?: number | null, current?: number | null, previous?: number | null } | null, uniqueSalesWallets?: { __typename?: 'NftStatsNumberMetrics', change?: number | null, current?: number | null, previous?: number | null } | null, uniqueSellers?: { __typename?: 'NftStatsNumberMetrics', change?: number | null, current?: number | null, previous?: number | null } | null } | null, usd?: { __typename?: 'NftCollectionCurrencyStats', average?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, close?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, highestSale?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, lowestSale?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, open?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, volume?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, volumeByFillsource?: Array<{ __typename?: 'NftFillsourceStatsStringMetrics', change?: number | null, current?: string | null, fillsource?: string | null, previous?: string | null } | null> | null, volumePercentByFillsource?: Array<{ __typename?: 'NftFillsourceStatsNumberMetrics', change?: number | null, current?: number | null, fillsource?: string | null, previous?: number | null } | null> | null } | null } | null, stats4h?: { __typename?: 'NftStatsWindowWithChange', endTime?: number | null, startTime?: number | null, networkBaseToken?: { __typename?: 'NftCollectionCurrencyStats', average?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, close?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, highestSale?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, lowestSale?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, open?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, volume?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, volumeByFillsource?: Array<{ __typename?: 'NftFillsourceStatsStringMetrics', change?: number | null, current?: string | null, fillsource?: string | null, previous?: string | null } | null> | null, volumePercentByFillsource?: Array<{ __typename?: 'NftFillsourceStatsNumberMetrics', change?: number | null, current?: number | null, fillsource?: string | null, previous?: number | null } | null> | null } | null, nonCurrency?: { __typename?: 'NftCollectionNonCurrencyStats', mints?: { __typename?: 'NftStatsNumberMetrics', change?: number | null, current?: number | null, previous?: number | null } | null, sales?: { __typename?: 'NftStatsNumberMetrics', change?: number | null, current?: number | null, previous?: number | null } | null, tokensSold?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, transfers?: { __typename?: 'NftStatsNumberMetrics', change?: number | null, current?: number | null, previous?: number | null } | null, uniqueBuyers?: { __typename?: 'NftStatsNumberMetrics', change?: number | null, current?: number | null, previous?: number | null } | null, uniqueMinters?: { __typename?: 'NftStatsNumberMetrics', change?: number | null, current?: number | null, previous?: number | null } | null, uniqueSalesWallets?: { __typename?: 'NftStatsNumberMetrics', change?: number | null, current?: number | null, previous?: number | null } | null, uniqueSellers?: { __typename?: 'NftStatsNumberMetrics', change?: number | null, current?: number | null, previous?: number | null } | null } | null, usd?: { __typename?: 'NftCollectionCurrencyStats', average?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, close?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, highestSale?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, lowestSale?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, open?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, volume?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, volumeByFillsource?: Array<{ __typename?: 'NftFillsourceStatsStringMetrics', change?: number | null, current?: string | null, fillsource?: string | null, previous?: string | null } | null> | null, volumePercentByFillsource?: Array<{ __typename?: 'NftFillsourceStatsNumberMetrics', change?: number | null, current?: number | null, fillsource?: string | null, previous?: number | null } | null> | null } | null } | null, stats12h?: { __typename?: 'NftStatsWindowWithChange', endTime?: number | null, startTime?: number | null, networkBaseToken?: { __typename?: 'NftCollectionCurrencyStats', average?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, close?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, highestSale?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, lowestSale?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, open?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, volume?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, volumeByFillsource?: Array<{ __typename?: 'NftFillsourceStatsStringMetrics', change?: number | null, current?: string | null, fillsource?: string | null, previous?: string | null } | null> | null, volumePercentByFillsource?: Array<{ __typename?: 'NftFillsourceStatsNumberMetrics', change?: number | null, current?: number | null, fillsource?: string | null, previous?: number | null } | null> | null } | null, nonCurrency?: { __typename?: 'NftCollectionNonCurrencyStats', mints?: { __typename?: 'NftStatsNumberMetrics', change?: number | null, current?: number | null, previous?: number | null } | null, sales?: { __typename?: 'NftStatsNumberMetrics', change?: number | null, current?: number | null, previous?: number | null } | null, tokensSold?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, transfers?: { __typename?: 'NftStatsNumberMetrics', change?: number | null, current?: number | null, previous?: number | null } | null, uniqueBuyers?: { __typename?: 'NftStatsNumberMetrics', change?: number | null, current?: number | null, previous?: number | null } | null, uniqueMinters?: { __typename?: 'NftStatsNumberMetrics', change?: number | null, current?: number | null, previous?: number | null } | null, uniqueSalesWallets?: { __typename?: 'NftStatsNumberMetrics', change?: number | null, current?: number | null, previous?: number | null } | null, uniqueSellers?: { __typename?: 'NftStatsNumberMetrics', change?: number | null, current?: number | null, previous?: number | null } | null } | null, usd?: { __typename?: 'NftCollectionCurrencyStats', average?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, close?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, highestSale?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, lowestSale?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, open?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, volume?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, volumeByFillsource?: Array<{ __typename?: 'NftFillsourceStatsStringMetrics', change?: number | null, current?: string | null, fillsource?: string | null, previous?: string | null } | null> | null, volumePercentByFillsource?: Array<{ __typename?: 'NftFillsourceStatsNumberMetrics', change?: number | null, current?: number | null, fillsource?: string | null, previous?: number | null } | null> | null } | null } | null, stats24h?: { __typename?: 'NftStatsWindowWithChange', endTime?: number | null, startTime?: number | null, networkBaseToken?: { __typename?: 'NftCollectionCurrencyStats', average?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, close?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, highestSale?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, lowestSale?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, open?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, volume?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, volumeByFillsource?: Array<{ __typename?: 'NftFillsourceStatsStringMetrics', change?: number | null, current?: string | null, fillsource?: string | null, previous?: string | null } | null> | null, volumePercentByFillsource?: Array<{ __typename?: 'NftFillsourceStatsNumberMetrics', change?: number | null, current?: number | null, fillsource?: string | null, previous?: number | null } | null> | null } | null, nonCurrency?: { __typename?: 'NftCollectionNonCurrencyStats', mints?: { __typename?: 'NftStatsNumberMetrics', change?: number | null, current?: number | null, previous?: number | null } | null, sales?: { __typename?: 'NftStatsNumberMetrics', change?: number | null, current?: number | null, previous?: number | null } | null, tokensSold?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, transfers?: { __typename?: 'NftStatsNumberMetrics', change?: number | null, current?: number | null, previous?: number | null } | null, uniqueBuyers?: { __typename?: 'NftStatsNumberMetrics', change?: number | null, current?: number | null, previous?: number | null } | null, uniqueMinters?: { __typename?: 'NftStatsNumberMetrics', change?: number | null, current?: number | null, previous?: number | null } | null, uniqueSalesWallets?: { __typename?: 'NftStatsNumberMetrics', change?: number | null, current?: number | null, previous?: number | null } | null, uniqueSellers?: { __typename?: 'NftStatsNumberMetrics', change?: number | null, current?: number | null, previous?: number | null } | null } | null, usd?: { __typename?: 'NftCollectionCurrencyStats', average?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, close?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, highestSale?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, lowestSale?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, open?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, volume?: { __typename?: 'NftStatsStringMetrics', change?: number | null, current?: string | null, previous?: string | null } | null, volumeByFillsource?: Array<{ __typename?: 'NftFillsourceStatsStringMetrics', change?: number | null, current?: string | null, fillsource?: string | null, previous?: string | null } | null> | null, volumePercentByFillsource?: Array<{ __typename?: 'NftFillsourceStatsNumberMetrics', change?: number | null, current?: number | null, fillsource?: string | null, previous?: number | null } | null> | null } | null } | null } | null> | null } | null }; - -export type FilterNftParallelAssetsQueryVariables = Exact<{ - filters?: InputMaybe; - limit?: InputMaybe; - match?: InputMaybe; - offset?: InputMaybe; - phrase?: InputMaybe; - rankings?: InputMaybe> | InputMaybe>; -}>; - - -export type FilterNftParallelAssetsQuery = { __typename?: 'Query', filterNftParallelAssets?: { __typename?: 'ParallelAssetFilterConnection', count?: number | null, offset?: number | null, results?: Array<{ __typename?: 'ParallelAssetFilterResult', address: string, description?: string | null, id: string, lastPriceNetworkBaseToken?: string | null, lastPriceUsd?: string | null, name?: string | null, networkId: number, originalImage?: string | null, parallelId: number, timestamp?: number | null, tokenId: string, uri?: string | null, gameData?: { __typename?: 'ParallelAssetGameData', attack?: string | null, cardType?: string | null, cost?: string | null, functionText?: string | null, health?: string | null, parallel?: string | null, passiveAbility?: string | null, rarity?: string | null, subtype?: string | null } | null, media?: { __typename?: 'NftAssetMedia', image: string, processed?: boolean | null, thumbLg: string, thumbSm: string } | null, metadata?: { __typename?: 'ParallelAssetMetadata', artist?: string | null, class?: string | null, expansion?: string | null, flavourText?: string | null, parallelId?: string | null, paraset?: string | null, supply?: string | null } | null } | null> | null } | null }; - -export type FilterNftPoolCollectionsQueryVariables = Exact<{ - filters?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - phrase?: InputMaybe; - rankings?: InputMaybe> | InputMaybe>; -}>; - - -export type FilterNftPoolCollectionsQuery = { __typename?: 'Query', filterNftPoolCollections?: { __typename?: 'NftPoolCollectionFilterConnection', count?: number | null, page?: number | null, results?: Array<{ __typename?: 'NftPoolCollectionFilterResult', balanceNBT?: string | null, balanceUSD?: string | null, collectionAddress?: string | null, ercType?: string | null, exchangeAddress?: string | null, expenseNBT24?: string | null, expenseNBTAll?: string | null, expenseUSD24?: string | null, expenseUSDAll?: string | null, floorNBT?: string | null, floorUSD?: string | null, highPriceNBT24?: string | null, highPriceNBTAll?: string | null, highPriceUSD24?: string | null, highPriceUSDAll?: string | null, id: string, imageUrl?: string | null, lowPriceNBT24?: string | null, lowPriceNBTAll?: string | null, lowPriceUSD24?: string | null, lowPriceUSDAll?: string | null, name?: string | null, networkId?: number | null, nftBalanceV2?: string | null, nftVolume24V2?: string | null, nftVolumeAllV2?: string | null, nftsBought24V2?: string | null, nftsBoughtAllV2?: string | null, nftsSold24V2?: string | null, nftsSoldAllV2?: string | null, offerNBT?: string | null, offerUSD?: string | null, poolFeesNBT24?: string | null, poolFeesNBTAll?: string | null, poolFeesUSD24?: string | null, poolFeesUSDAll?: string | null, protocolFeesNBT24?: string | null, protocolFeesNBTAll?: string | null, protocolFeesUSD24?: string | null, protocolFeesUSDAll?: string | null, revenueNBT24?: string | null, revenueNBTAll?: string | null, revenueUSD24?: string | null, revenueUSDAll?: string | null, symbol?: string | null, timestamp?: number | null, totalSupplyV2?: string | null, volumeNBT24?: string | null, volumeNBTAll?: string | null, volumeUSD24?: string | null, volumeUSDAll?: string | null } | null> | null } | null }; - -export type FilterNftPoolsQueryVariables = Exact<{ - filters?: InputMaybe; - limit?: InputMaybe; - offset?: InputMaybe; - phrase?: InputMaybe; - rankings?: InputMaybe> | InputMaybe>; -}>; - - -export type FilterNftPoolsQuery = { __typename?: 'Query', filterNftPools?: { __typename?: 'NftPoolFilterConnection', count?: number | null, page?: number | null, results?: Array<{ __typename?: 'NftPoolFilterResult', acceptedNftTokenIds?: Array | null, assetRecipientAddress?: string | null, balanceNBT?: string | null, balanceT?: string | null, balanceUSD?: string | null, bondingCurveAddress: string, collectionAddress: string, collectionName: string, collectionSymbol: string, delta: string, exchangeAddress: string, expenseNBT24?: string | null, expenseNBTAll?: string | null, expenseT24?: string | null, expenseTAll?: string | null, expenseUSD24?: string | null, expenseUSDAll?: string | null, feeAmount: string, id: string, networkId: number, nftBalanceV2?: string | null, nftVolume24V2?: string | null, nftVolumeAllV2?: string | null, nftsBought24V2?: string | null, nftsBoughtAllV2?: string | null, nftsSold24V2?: string | null, nftsSoldAllV2?: string | null, offerNBT?: string | null, offerT?: string | null, offerUSD?: string | null, ownerAddress: string, poolAddress: string, poolFeesNBT24?: string | null, poolFeesNBTAll?: string | null, poolFeesT24?: string | null, poolFeesTAll?: string | null, poolFeesUSD24?: string | null, poolFeesUSDAll?: string | null, poolNftType?: PoolNftType | null, poolType: NftPoolType, poolVariant: GraphQlNftPoolVariant, propertyChecker?: string | null, protocolFeesNBT24?: string | null, protocolFeesNBTAll?: string | null, protocolFeesT24?: string | null, protocolFeesTAll?: string | null, protocolFeesUSD24?: string | null, protocolFeesUSDAll?: string | null, revenueNBT24?: string | null, revenueNBTAll?: string | null, revenueT24?: string | null, revenueTAll?: string | null, revenueUSD24?: string | null, revenueUSDAll?: string | null, sellNBT?: string | null, sellT?: string | null, sellUSD?: string | null, spotNBT?: string | null, spotT?: string | null, timestamp: number, tokenAddress: string, version?: NftPoolContractVersion | null, volumeNBT24?: string | null, volumeNBTAll?: string | null, volumeT24?: string | null, volumeTAll?: string | null, volumeUSD24?: string | null, volumeUSDAll?: string | null, nftAssets?: Array<{ __typename?: 'NftAsset', address: string, description?: string | null, id: string, name?: string | null, networkId: number, originalImage?: string | null, quantity?: string | null, tokenId: string, uri?: string | null, attributes?: Array<{ __typename?: 'NftAssetAttribute', class?: string | null, css?: string | null, displayType: NftAssetAttributeDisplayType, maxValue?: string | null, name: string, value: string, valueType: NftAssetAttributeType }> | null, media?: { __typename?: 'NftAssetMedia', image: string, processed?: boolean | null, thumbLg: string, thumbSm: string } | null, rawAssetData?: { __typename?: 'RawNftAssetData', animationUrl?: string | null, externalUrl?: string | null, imageData?: string | null, imageUrl?: string | null } | null } | null> | null, royalties?: Array<{ __typename?: 'NftPoolRoyalty', percent?: string | null, recipient?: string | null } | null> | null } | null> | null } | null }; - export type FilterPairsQueryVariables = Exact<{ filters?: InputMaybe; limit?: InputMaybe; @@ -10672,7 +10886,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, 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?: '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, 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, 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, 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, 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, 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, symbol?: 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, 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, 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, symbol?: 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, 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, 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, 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, symbol?: 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, 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, 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, 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, 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, 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, symbol?: 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, 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, 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, symbol?: 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, 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, 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 FilterTokenWalletsQueryVariables = Exact<{ input: FilterTokenWalletsInput; @@ -10693,7 +10907,7 @@ export type FilterTokensQueryVariables = Exact<{ }>; -export type FilterTokensQuery = { __typename?: 'Query', filterTokens?: { __typename?: 'TokenFilterConnection', count?: number | null, page?: number | null, results?: 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, 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, 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?: '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, 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, 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, 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, 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, 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?: '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, 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, 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, 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, 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, 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, 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, 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', 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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 FilterWalletsQueryVariables = Exact<{ input: FilterWalletsInput; @@ -10717,7 +10931,7 @@ export type GetBarsQueryVariables = Exact<{ }>; -export type GetBarsQuery = { __typename?: 'Query', getBars?: { __typename?: 'BarsResponse', buyVolume: Array, buyers: Array, buys: Array, c: Array, h: Array, l: Array, liquidity: Array, o: Array, s: string, sellVolume: Array, sellers: Array, sells: Array, t: Array, 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?: '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, 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, 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, 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, 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 GetBarsQuery = { __typename?: 'Query', getBars?: { __typename?: 'BarsResponse', buyVolume: Array, buyers: Array, buys: Array, c: Array, h: Array, l: Array, liquidity: Array, o: Array, s: string, sellVolume: Array, sellers: Array, sells: Array, t: Array, 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, symbol?: 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, 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, 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, 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, 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 GetCommunityNotesQueryVariables = Exact<{ input?: InputMaybe; @@ -10726,18 +10940,6 @@ export type GetCommunityNotesQueryVariables = Exact<{ 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, symbol?: 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, 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, 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 GetDetailedNftStatsQueryVariables = Exact<{ - bucketCount?: InputMaybe; - collectionAddress: Scalars['String']['input']; - durations?: InputMaybe> | InputMaybe>; - grouping?: InputMaybe; - networkId: Scalars['Int']['input']; - timestamp?: InputMaybe; -}>; - - -export type GetDetailedNftStatsQuery = { __typename?: 'Query', getDetailedNftStats?: { __typename?: 'DetailedNftStats', collectionAddress: string, grouping?: string | null, networkId: number, stats_day1?: { __typename?: 'WindowedDetailedNftStats', duration: DetailedNftStatsDuration, end: number, start: number, statsNetworkBaseToken: { __typename?: 'WindowedDetailedNftCurrencyStats', average?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highestSale?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowestSale?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, statsNonCurrency: { __typename?: 'WindowedDetailedNftNonCurrencyStats', mints?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sales?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, tokensSold?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, transfers?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, uniqueBuyers?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, uniqueMinters?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, uniqueSalesWallets?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, uniqueSellers?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedNftCurrencyStats', average?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highestSale?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowestSale?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedNftStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_day30?: { __typename?: 'WindowedDetailedNftStats', duration: DetailedNftStatsDuration, end: number, start: number, statsNetworkBaseToken: { __typename?: 'WindowedDetailedNftCurrencyStats', average?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highestSale?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowestSale?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, statsNonCurrency: { __typename?: 'WindowedDetailedNftNonCurrencyStats', mints?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sales?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, tokensSold?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, transfers?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, uniqueBuyers?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, uniqueMinters?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, uniqueSalesWallets?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, uniqueSellers?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedNftCurrencyStats', average?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highestSale?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowestSale?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedNftStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_hour1?: { __typename?: 'WindowedDetailedNftStats', duration: DetailedNftStatsDuration, end: number, start: number, statsNetworkBaseToken: { __typename?: 'WindowedDetailedNftCurrencyStats', average?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highestSale?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowestSale?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, statsNonCurrency: { __typename?: 'WindowedDetailedNftNonCurrencyStats', mints?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sales?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, tokensSold?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, transfers?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, uniqueBuyers?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, uniqueMinters?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, uniqueSalesWallets?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, uniqueSellers?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedNftCurrencyStats', average?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highestSale?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowestSale?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedNftStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_hour4?: { __typename?: 'WindowedDetailedNftStats', duration: DetailedNftStatsDuration, end: number, start: number, statsNetworkBaseToken: { __typename?: 'WindowedDetailedNftCurrencyStats', average?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highestSale?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowestSale?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, statsNonCurrency: { __typename?: 'WindowedDetailedNftNonCurrencyStats', mints?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sales?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, tokensSold?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, transfers?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, uniqueBuyers?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, uniqueMinters?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, uniqueSalesWallets?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, uniqueSellers?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedNftCurrencyStats', average?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highestSale?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowestSale?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedNftStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_hour12?: { __typename?: 'WindowedDetailedNftStats', duration: DetailedNftStatsDuration, end: number, start: number, statsNetworkBaseToken: { __typename?: 'WindowedDetailedNftCurrencyStats', average?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highestSale?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowestSale?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, statsNonCurrency: { __typename?: 'WindowedDetailedNftNonCurrencyStats', mints?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sales?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, tokensSold?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, transfers?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, uniqueBuyers?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, uniqueMinters?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, uniqueSalesWallets?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, uniqueSellers?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedNftCurrencyStats', average?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highestSale?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowestSale?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedNftStatsBucketTimestamp', end: number, start: number } | null> } | null, stats_week1?: { __typename?: 'WindowedDetailedNftStats', duration: DetailedNftStatsDuration, end: number, start: number, statsNetworkBaseToken: { __typename?: 'WindowedDetailedNftCurrencyStats', average?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highestSale?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowestSale?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, statsNonCurrency: { __typename?: 'WindowedDetailedNftNonCurrencyStats', mints?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, sales?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, tokensSold?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, transfers?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, uniqueBuyers?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, uniqueMinters?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, uniqueSalesWallets?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null, uniqueSellers?: { __typename?: 'DetailedNftStatsNumberMetrics', buckets: Array, change?: number | null, currentValue?: number | null, previousValue?: number | null } | null }, statsUsd: { __typename?: 'WindowedDetailedNftCurrencyStats', average?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, close?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, highestSale?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, lowestSale?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, open?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null, volume?: { __typename?: 'DetailedNftStatsStringMetrics', buckets: Array, change?: number | null, currentValue?: string | null, previousValue?: string | null } | null }, timestamps: Array<{ __typename?: 'DetailedNftStatsBucketTimestamp', end: number, start: number } | null> } | null } | null }; - export type GetDetailedPairStatsQueryVariables = Exact<{ bucketCount?: InputMaybe; durations?: InputMaybe> | InputMaybe>; @@ -10749,14 +10951,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?: '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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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?: '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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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 GetEventLabelsQueryVariables = Exact<{ cursor?: InputMaybe; @@ -10802,170 +11004,6 @@ export type GetNetworksQueryVariables = Exact<{ [key: string]: never; }>; export type GetNetworksQuery = { __typename?: 'Query', getNetworks: Array<{ __typename?: 'Network', id: number, name: string, networkShortName?: string | null }> }; -export type GetNftAssetsQueryVariables = Exact<{ - address: Scalars['String']['input']; - cursor?: InputMaybe; - fetchMissingAssets?: InputMaybe; - limit?: InputMaybe; - networkId: Scalars['Int']['input']; - tokenIds?: InputMaybe> | InputMaybe>; -}>; - - -export type GetNftAssetsQuery = { __typename?: 'Query', getNftAssets?: { __typename?: 'NftAssetsConnection', cursor?: string | null, itemErrors?: Array<{ __typename?: 'NftAssetError', address: string, id: string, message: string, networkId: number, status: NftAssetErrorStatus, tokenId: string } | null> | null, items?: Array<{ __typename?: 'NftAsset', address: string, description?: string | null, id: string, name?: string | null, networkId: number, originalImage?: string | null, quantity?: string | null, tokenId: string, uri?: string | null, attributes?: Array<{ __typename?: 'NftAssetAttribute', class?: string | null, css?: string | null, displayType: NftAssetAttributeDisplayType, maxValue?: string | null, name: string, value: string, valueType: NftAssetAttributeType }> | null, media?: { __typename?: 'NftAssetMedia', image: string, processed?: boolean | null, thumbLg: string, thumbSm: string } | null, rawAssetData?: { __typename?: 'RawNftAssetData', animationUrl?: string | null, externalUrl?: string | null, imageData?: string | null, imageUrl?: string | null } | null } | null> | null } | null }; - -export type GetNftCollectionMetadataQueryVariables = Exact<{ - address?: InputMaybe; - collectionId?: InputMaybe; - networkId?: InputMaybe; -}>; - - -export type GetNftCollectionMetadataQuery = { __typename?: 'Query', getNftCollectionMetadata?: { __typename?: 'NftCollectionMetadataResponse', id: string, contract: { __typename?: 'NftContract', address: string, description?: string | null, ercType: string, id: string, image?: string | null, name?: string | null, networkId: number, symbol?: string | null, totalSupply?: string | null }, media?: { __typename?: 'NftAssetMedia', image: string, processed?: boolean | null, thumbLg: string, thumbSm: string } | null, stats?: Array<{ __typename?: 'NftCollectionWindowStats', tradeCount: string, tradeCountChange: number, window: string, networkBaseTokenPriceStats: { __typename?: 'NftCollectionPriceStats', average: string, averageChange?: number | null, ceiling: string, ceilingChange?: number | null, floor: string, floorChange?: number | null, volume: string, volumeChange?: number | null, volumeByFillsource?: Array<{ __typename?: 'NftCollectionFillsourceStringStat', amount: string, change?: number | null, fillsource: string } | null> | null, volumePercentByFillsource?: Array<{ __typename?: 'NftCollectionFillsourceNumberStat', amount: number, change?: number | null, fillsource: string } | null> | null }, usdPriceStats: { __typename?: 'NftCollectionPriceStats', average: string, averageChange?: number | null, ceiling: string, ceilingChange?: number | null, floor: string, floorChange?: number | null, volume: string, volumeChange?: number | null, volumeByFillsource?: Array<{ __typename?: 'NftCollectionFillsourceStringStat', amount: string, change?: number | null, fillsource: string } | null> | null, volumePercentByFillsource?: Array<{ __typename?: 'NftCollectionFillsourceNumberStat', amount: number, change?: number | null, fillsource: string } | null> | null } } | null> | null } | null }; - -export type GetNftContractsQueryVariables = Exact<{ - contracts?: InputMaybe> | InputMaybe>; -}>; - - -export type GetNftContractsQuery = { __typename?: 'Query', getNftContracts?: Array<{ __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 } | null> | null }; - -export type GetNftEventsQueryVariables = Exact<{ - address?: InputMaybe; - cursor?: InputMaybe; - exchangeAddress?: InputMaybe; - includeTransfers?: InputMaybe; - limit?: InputMaybe; - networkId: Scalars['Int']['input']; - poolAddress?: InputMaybe; - timestamp?: InputMaybe; - tokenId?: InputMaybe; -}>; - - -export type GetNftEventsQuery = { __typename?: 'Query', getNftEvents?: { __typename?: 'NftEventsConnection', cursor?: string | null, items?: Array<{ __typename?: 'NftEvent', aggregatorAddress?: string | null, blockNumber: number, contractAddress: string, eventType: string, exchangeAddress: string, fillSource?: string | null, id: string, individualPriceNetworkBaseToken?: string | null, individualPriceUsd?: string | null, individualTradePrice?: string | null, logIndex: number, maker: string, networkId: number, numberOfTokens?: string | null, orderDirection?: NftEventOrderDirection | null, paymentTokenAddress: string, poolAddress?: string | null, priceError?: string | null, sortKey: string, taker: string, timestamp: number, tokenId: string, totalPriceNetworkBaseToken?: string | null, totalPriceUsd?: string | null, totalTradePrice?: string | null, transactionHash: string, transactionIndex: number, tradeOffer?: Array<{ __typename?: 'NftEventNftTradeItem', address: string, amount: string, recipient?: string | null, tokenId: string, type: NftEventTradeItemType } | { __typename?: 'NftEventTokenTradeItem', address: string, amount: string, individualPriceNetworkBaseToken?: string | null, individualPriceUsd?: string | null, individualTradePrice?: string | null, isPrice: boolean, priceError?: string | null, recipient?: string | null, totalPriceNetworkBaseToken?: string | null, totalPriceUsd?: string | null, totalTradePrice?: string | null, type: NftEventTradeItemType }> | null, tradeReceived?: Array<{ __typename?: 'NftEventNftTradeItem', address: string, amount: string, recipient?: string | null, tokenId: string, type: NftEventTradeItemType } | { __typename?: 'NftEventTokenTradeItem', address: string, amount: string, individualPriceNetworkBaseToken?: string | null, individualPriceUsd?: string | null, individualTradePrice?: string | null, isPrice: boolean, priceError?: string | null, recipient?: string | null, totalPriceNetworkBaseToken?: string | null, totalPriceUsd?: string | null, totalTradePrice?: string | null, type: NftEventTradeItemType }> | null } | null> | null } | null }; - -export type GetNftPoolQueryVariables = Exact<{ - address: Scalars['String']['input']; - networkId: Scalars['Int']['input']; -}>; - - -export type GetNftPoolQuery = { __typename?: 'Query', getNftPool?: { __typename?: 'NftPoolResponse', acceptedNftTokenIds?: Array | null, assetRecipientAddress: string, balanceNBT: string, balanceT: string, bondingCurveAddress: string, bondingCurveType: BondingCurveType, collectionAddress: string, collectionName: string, collectionSymbol?: string | null, delta: string, exchangeAddress: string, fee: string, floorNBT?: string | null, floorT?: string | null, networkId: number, nftBalanceV2: string, nftVolumeAllTimeV2: string, offerNBT?: string | null, offerT?: string | null, owner: string, poolAddress: string, poolFeesAllTimeNBT?: string | null, poolFeesAllTimeT?: string | null, poolId: string, poolNftType?: PoolNftType | null, poolType: NftPoolType, poolVariant: GraphQlNftPoolVariant, propertyChecker?: string | null, spotPriceNBT: string, spotPriceT: string, tokenAddress: string, version?: NftPoolContractVersion | null, volumeAllTimeNBT: string, volumeAllTimeT: string, nftAssets?: Array<{ __typename?: 'NftAsset', address: string, description?: string | null, id: string, name?: string | null, networkId: number, originalImage?: string | null, quantity?: string | null, tokenId: string, uri?: string | null, attributes?: Array<{ __typename?: 'NftAssetAttribute', class?: string | null, css?: string | null, displayType: NftAssetAttributeDisplayType, maxValue?: string | null, name: string, value: string, valueType: NftAssetAttributeType }> | null, media?: { __typename?: 'NftAssetMedia', image: string, processed?: boolean | null, thumbLg: string, thumbSm: string } | null, rawAssetData?: { __typename?: 'RawNftAssetData', animationUrl?: string | null, externalUrl?: string | null, imageData?: string | null, imageUrl?: string | null } | null } | null> | null, royalties?: Array<{ __typename?: 'NftPoolRoyalty', percent?: string | null, recipient?: string | null } | null> | null } | null }; - -export type GetNftPoolCollectionQueryVariables = Exact<{ - collectionAddress: Scalars['String']['input']; - exchangeAddress: Scalars['String']['input']; - networkId: Scalars['Int']['input']; -}>; - - -export type GetNftPoolCollectionQuery = { __typename?: 'Query', getNftPoolCollection?: { __typename?: 'NftPoolCollectionResponse', balanceNBT: string, collectionAddress: string, collectionId: string, collectionSymbol: string, exchangeAddress: string, exchangeId: string, floorNBT?: string | null, image?: string | null, name?: string | null, networkId: number, nftBalanceV2: string, nftVolumeAllTimeV2?: string | null, offerNBT?: string | null, poolFeesNBTAll?: string | null, poolFeesUSDAll?: string | null, protocolFeesNBTAll?: string | null, protocolFeesUSDAll?: string | null, royaltiesNBTAllEstimate?: string | null, royaltiesUSDAllEstimate?: string | null, volumeAllTimeNBT?: string | null, volumeAllTimeUSD?: string | null } | null }; - -export type GetNftPoolCollectionsByExchangeQueryVariables = Exact<{ - cursor?: InputMaybe; - exchangeAddress: Scalars['String']['input']; - limit?: InputMaybe; - networkId: Scalars['Int']['input']; -}>; - - -export type GetNftPoolCollectionsByExchangeQuery = { __typename?: 'Query', getNftPoolCollectionsByExchange?: { __typename?: 'GetNftPoolCollectionsResponse', cursor?: string | null, items?: Array<{ __typename?: 'NftPoolCollectionResponse', balanceNBT: string, collectionAddress: string, collectionId: string, collectionSymbol: string, exchangeAddress: string, exchangeId: string, floorNBT?: string | null, image?: string | null, name?: string | null, networkId: number, nftBalanceV2: string, nftVolumeAllTimeV2?: string | null, offerNBT?: string | null, poolFeesNBTAll?: string | null, poolFeesUSDAll?: string | null, protocolFeesNBTAll?: string | null, protocolFeesUSDAll?: string | null, royaltiesNBTAllEstimate?: string | null, royaltiesUSDAllEstimate?: string | null, volumeAllTimeNBT?: string | null, volumeAllTimeUSD?: string | null } | null> | null } | null }; - -export type GetNftPoolEventsQueryVariables = Exact<{ - collectionAddress?: InputMaybe; - cursor?: InputMaybe; - eventTypes?: InputMaybe | NftPoolEventType>; - exchangeAddress?: InputMaybe; - limit?: InputMaybe; - networkId: Scalars['Int']['input']; - poolAddress?: InputMaybe; - timestamp?: InputMaybe; -}>; - - -export type GetNftPoolEventsQuery = { __typename?: 'Query', getNftPoolEvents?: { __typename?: 'NftPoolEventsResponse', cursor?: string | null, items?: Array<{ __typename?: 'NftPoolEvent', blockHash: string, blockNumber: number, collectionAddress: string, collectionId: string, eventType: NftPoolEventType, exchangeAddress: string, id: string, logIndex: number, maker: string, networkId: number, poolAddress: string, poolType: NftPoolType, timestamp: number, tokenAddress: string, transactionHash: string, transactionIndex: number, data: { __typename?: 'NewPoolEventData', assetRecipientAddress: string, bondingCurveAddress: string, bondingCurveType: BondingCurveType, buyPriceT: string, collectionAddress: string, createdAt: number, delta: string, feeAmountT: string, nbtRatio: string, networkId: number, nftTokenBalance: string, ownerAddress: string, poolAddress: string, sellPriceT: string, startPriceT: string, tokenAddress: string, tokenBalanceT: string, type: NftPoolEventType, usdRatio: string } | { __typename?: 'NewPoolEventDataV2', assetRecipientAddress: string, bondingCurveAddress: string, bondingCurveType: BondingCurveType, buyPriceT: string, collectionAddress: string, createdAt: number, delta: string, feeAmountT: string, nbtRatio: string, networkId: number, nftTokenIds: Array, nftTokenQuantities: Array, ownerAddress: string, poolAddress: string, poolNftType: PoolNftType, propertyChecker?: string | null, sellPriceT: string, startPriceT: string, tokenAddress: string, tokenBalanceT: string, type: NftPoolEventType, usdRatio: string, nftAssets?: Array<{ __typename?: 'NftAsset', address: string, description?: string | null, id: string, name?: string | null, networkId: number, originalImage?: string | null, quantity?: string | null, tokenId: string, uri?: string | null, attributes?: Array<{ __typename?: 'NftAssetAttribute', class?: string | null, css?: string | null, displayType: NftAssetAttributeDisplayType, maxValue?: string | null, name: string, value: string, valueType: NftAssetAttributeType }> | null, media?: { __typename?: 'NftAssetMedia', image: string, processed?: boolean | null, thumbLg: string, thumbSm: string } | null, rawAssetData?: { __typename?: 'RawNftAssetData', animationUrl?: string | null, externalUrl?: string | null, imageData?: string | null, imageUrl?: string | null } | null } | null> | null, royalties?: Array<{ __typename?: 'NftPoolRoyalty', percent?: string | null, recipient?: string | null } | null> | null } | { __typename?: 'NftPoolAssetRecipientUpdateEventData', newAssetRecipient: string, type: NftPoolEventType } | { __typename?: 'NftPoolDeltaUpdateEventData', newDelta: string, type: NftPoolEventType } | { __typename?: 'NftPoolFeeUpdateEventData', nbtRatio: string, newFeeT: string, type: NftPoolEventType, usdRatio: string } | { __typename?: 'NftPoolNftDepositEventData', nftTokenBalance: string, nftTokenIds: Array, tokenBalanceT: string, type: NftPoolEventType } | { __typename?: 'NftPoolNftDepositEventDataV2', nftTokenAmounts: Array, nftTokenIds: Array, tokenBalanceT: string, type: NftPoolEventType, nftAssets?: Array<{ __typename?: 'NftAsset', address: string, description?: string | null, id: string, name?: string | null, networkId: number, originalImage?: string | null, quantity?: string | null, tokenId: string, uri?: string | null, attributes?: Array<{ __typename?: 'NftAssetAttribute', class?: string | null, css?: string | null, displayType: NftAssetAttributeDisplayType, maxValue?: string | null, name: string, value: string, valueType: NftAssetAttributeType }> | null, media?: { __typename?: 'NftAssetMedia', image: string, processed?: boolean | null, thumbLg: string, thumbSm: string } | null, rawAssetData?: { __typename?: 'RawNftAssetData', animationUrl?: string | null, externalUrl?: string | null, imageData?: string | null, imageUrl?: string | null } | null } | null> | null } | { __typename?: 'NftPoolNftWithdrawalEventData', nftTokenBalance: string, nftTokenIds: Array, tokenBalanceT: string, type: NftPoolEventType } | { __typename?: 'NftPoolNftWithdrawalEventDataV2', nftTokenAmounts: Array, nftTokenIds: Array, tokenBalanceT: string, type: NftPoolEventType, nftAssets?: Array<{ __typename?: 'NftAsset', address: string, description?: string | null, id: string, name?: string | null, networkId: number, originalImage?: string | null, quantity?: string | null, tokenId: string, uri?: string | null, attributes?: Array<{ __typename?: 'NftAssetAttribute', class?: string | null, css?: string | null, displayType: NftAssetAttributeDisplayType, maxValue?: string | null, name: string, value: string, valueType: NftAssetAttributeType }> | null, media?: { __typename?: 'NftAssetMedia', image: string, processed?: boolean | null, thumbLg: string, thumbSm: string } | null, rawAssetData?: { __typename?: 'RawNftAssetData', animationUrl?: string | null, externalUrl?: string | null, imageData?: string | null, imageUrl?: string | null } | null } | null> | null } | { __typename?: 'NftPoolOwnershipTransferredEventDataV2', newOwner: string, type: NftPoolEventType } | { __typename?: 'NftPoolSpotPriceUpdateEventData', nbtRatio: string, newBuyPriceT: string, newSellPriceT: string, newSpotPriceT: string, type: NftPoolEventType, usdRatio: string } | { __typename?: 'NftPoolSpotPriceUpdateEventDataV2', nbtRatio: string, newBuyPriceT: string, newSellPriceT: string, newSpotPriceT: string, type: NftPoolEventType, usdRatio: string } | { __typename?: 'NftPoolTokenDepositEventData', amountT: string, nbtRatio: string, nftTokenBalance: string, tokenBalanceT: string, type: NftPoolEventType, usdRatio: string } | { __typename?: 'NftPoolTokenDepositEventDataV2', amountT: string, nbtRatio: string, tokenBalanceT: string, type: NftPoolEventType, usdRatio: string } | { __typename?: 'NftPoolTokenWithdrawalEventData', amountT: string, nbtRatio: string, nftTokenBalance: string, tokenBalanceT: string, type: NftPoolEventType, usdRatio: string } | { __typename?: 'NftPoolTokenWithdrawalEventDataV2', amountT: string, nbtRatio: string, tokenBalanceT: string, type: NftPoolEventType, usdRatio: string } | { __typename?: 'SwapNftInPoolEventData', amountT: string, nbtRatio: string, newBuyPriceT: string, newDelta: string, newSellPriceT: string, newSpotPriceT: string, nftTokenBalance: string, poolFeeT: string, protocolFeeT: string, tokenBalanceT: string, tokenId: string, type: NftPoolEventType, usdRatio: string, nftsTransfered?: Array<{ __typename?: 'NftPoolEventNftTransfer', amountT: string, nftTokenId: string } | null> | null } | { __typename?: 'SwapNftInPoolEventDataV2', amountT: string, nbtRatio: string, newBuyPriceT: string, newDelta: string, newSellPriceT: string, newSpotPriceT: string, poolFeeT: string, protocolFeeT: string, tokenBalanceT: string, tokenId: string, type: NftPoolEventType, usdRatio: string, nftAssets?: Array<{ __typename?: 'NftAsset', address: string, description?: string | null, id: string, name?: string | null, networkId: number, originalImage?: string | null, quantity?: string | null, tokenId: string, uri?: string | null, attributes?: Array<{ __typename?: 'NftAssetAttribute', class?: string | null, css?: string | null, displayType: NftAssetAttributeDisplayType, maxValue?: string | null, name: string, value: string, valueType: NftAssetAttributeType }> | null, media?: { __typename?: 'NftAssetMedia', image: string, processed?: boolean | null, thumbLg: string, thumbSm: string } | null, rawAssetData?: { __typename?: 'RawNftAssetData', animationUrl?: string | null, externalUrl?: string | null, imageData?: string | null, imageUrl?: string | null } | null } | null> | null, nftsTransfered?: Array<{ __typename?: 'NftPoolEventNftTransferV2', amountT: string, nftQuantity: string, nftTokenId: string } | null> | null } | { __typename?: 'SwapNftOutPoolEventData', amountT: string, nbtRatio: string, newBuyPriceT: string, newDelta: string, newSellPriceT: string, newSpotPriceT: string, nftTokenBalance: string, poolFeeT: string, protocolFeeT: string, tokenBalanceT: string, tokenId: string, type: NftPoolEventType, usdRatio: string, nftsTransfered?: Array<{ __typename?: 'NftPoolEventNftTransfer', amountT: string, nftTokenId: string } | null> | null } | { __typename?: 'SwapNftOutPoolEventDataV2', amountT: string, nbtRatio: string, newBuyPriceT: string, newDelta: string, newSellPriceT: string, newSpotPriceT: string, poolFeeT: string, protocolFeeT: string, tokenBalanceT: string, tokenId: string, type: NftPoolEventType, usdRatio: string, nftAssets?: Array<{ __typename?: 'NftAsset', address: string, description?: string | null, id: string, name?: string | null, networkId: number, originalImage?: string | null, quantity?: string | null, tokenId: string, uri?: string | null, attributes?: Array<{ __typename?: 'NftAssetAttribute', class?: string | null, css?: string | null, displayType: NftAssetAttributeDisplayType, maxValue?: string | null, name: string, value: string, valueType: NftAssetAttributeType }> | null, media?: { __typename?: 'NftAssetMedia', image: string, processed?: boolean | null, thumbLg: string, thumbSm: string } | null, rawAssetData?: { __typename?: 'RawNftAssetData', animationUrl?: string | null, externalUrl?: string | null, imageData?: string | null, imageUrl?: string | null } | null } | null> | null, nftsTransfered?: Array<{ __typename?: 'NftPoolEventNftTransferV2', amountT: string, nftQuantity: string, nftTokenId: string } | null> | null } } | null> | null } | null }; - -export type GetNftPoolStatsQueryVariables = Exact<{ - collectionAddress: Scalars['String']['input']; - endTime: Scalars['Int']['input']; - exchangeAddress: Scalars['String']['input']; - networkId: Scalars['Int']['input']; - poolAddress?: InputMaybe; - startTime: Scalars['Int']['input']; -}>; - - -export type GetNftPoolStatsQuery = { __typename?: 'Query', getNftPoolStats?: { __typename?: 'NftPoolStatsResponse', closeBalanceNBT?: string | null, closeNftBalanceV2?: string | null, collectionAddress: string, endTime: number, exchangeAddress: string, expenseNBT?: string | null, highFloorNBT?: string | null, highOfferNBT?: string | null, lowFloorNBT?: string | null, lowOfferNBT?: string | null, networkId: number, nftVolumeV2?: string | null, nftsBoughtV2?: string | null, nftsSoldV2?: string | null, openBalanceNBT?: string | null, openNftBalanceV2?: string | null, poolAddress?: string | null, poolFeesNBT?: string | null, protocolFeesNBT?: string | null, revenueNBT?: string | null, startTime: number, volumeNBT?: string | null } | null }; - -export type GetNftPoolsByCollectionAndExchangeQueryVariables = Exact<{ - collectionAddress: Scalars['String']['input']; - cursor?: InputMaybe; - exchangeAddress: Scalars['String']['input']; - limit?: InputMaybe; - networkId: Scalars['Int']['input']; -}>; - - -export type GetNftPoolsByCollectionAndExchangeQuery = { __typename?: 'Query', getNftPoolsByCollectionAndExchange?: { __typename?: 'GetNftPoolsResponse', cursor?: string | null, items: Array<{ __typename?: 'NftPoolResponse', acceptedNftTokenIds?: Array | null, assetRecipientAddress: string, balanceNBT: string, balanceT: string, bondingCurveAddress: string, bondingCurveType: BondingCurveType, collectionAddress: string, collectionName: string, collectionSymbol?: string | null, delta: string, exchangeAddress: string, fee: string, floorNBT?: string | null, floorT?: string | null, networkId: number, nftBalanceV2: string, nftVolumeAllTimeV2: string, offerNBT?: string | null, offerT?: string | null, owner: string, poolAddress: string, poolFeesAllTimeNBT?: string | null, poolFeesAllTimeT?: string | null, poolId: string, poolNftType?: PoolNftType | null, poolType: NftPoolType, poolVariant: GraphQlNftPoolVariant, propertyChecker?: string | null, spotPriceNBT: string, spotPriceT: string, tokenAddress: string, version?: NftPoolContractVersion | null, volumeAllTimeNBT: string, volumeAllTimeT: string, nftAssets?: Array<{ __typename?: 'NftAsset', address: string, description?: string | null, id: string, name?: string | null, networkId: number, originalImage?: string | null, quantity?: string | null, tokenId: string, uri?: string | null, attributes?: Array<{ __typename?: 'NftAssetAttribute', class?: string | null, css?: string | null, displayType: NftAssetAttributeDisplayType, maxValue?: string | null, name: string, value: string, valueType: NftAssetAttributeType }> | null, media?: { __typename?: 'NftAssetMedia', image: string, processed?: boolean | null, thumbLg: string, thumbSm: string } | null, rawAssetData?: { __typename?: 'RawNftAssetData', animationUrl?: string | null, externalUrl?: string | null, imageData?: string | null, imageUrl?: string | null } | null } | null> | null, royalties?: Array<{ __typename?: 'NftPoolRoyalty', percent?: string | null, recipient?: string | null } | null> | null } | null> } | null }; - -export type GetNftPoolsByOwnerQueryVariables = Exact<{ - cursor?: InputMaybe; - exchangeAddress?: InputMaybe; - limit?: InputMaybe; - networkId: Scalars['Int']['input']; - ownerAddress: Scalars['String']['input']; -}>; - - -export type GetNftPoolsByOwnerQuery = { __typename?: 'Query', getNftPoolsByOwner?: { __typename?: 'GetNftPoolsResponse', cursor?: string | null, items: Array<{ __typename?: 'NftPoolResponse', acceptedNftTokenIds?: Array | null, assetRecipientAddress: string, balanceNBT: string, balanceT: string, bondingCurveAddress: string, bondingCurveType: BondingCurveType, collectionAddress: string, collectionName: string, collectionSymbol?: string | null, delta: string, exchangeAddress: string, fee: string, floorNBT?: string | null, floorT?: string | null, networkId: number, nftBalanceV2: string, nftVolumeAllTimeV2: string, offerNBT?: string | null, offerT?: string | null, owner: string, poolAddress: string, poolFeesAllTimeNBT?: string | null, poolFeesAllTimeT?: string | null, poolId: string, poolNftType?: PoolNftType | null, poolType: NftPoolType, poolVariant: GraphQlNftPoolVariant, propertyChecker?: string | null, spotPriceNBT: string, spotPriceT: string, tokenAddress: string, version?: NftPoolContractVersion | null, volumeAllTimeNBT: string, volumeAllTimeT: string, nftAssets?: Array<{ __typename?: 'NftAsset', address: string, description?: string | null, id: string, name?: string | null, networkId: number, originalImage?: string | null, quantity?: string | null, tokenId: string, uri?: string | null, attributes?: Array<{ __typename?: 'NftAssetAttribute', class?: string | null, css?: string | null, displayType: NftAssetAttributeDisplayType, maxValue?: string | null, name: string, value: string, valueType: NftAssetAttributeType }> | null, media?: { __typename?: 'NftAssetMedia', image: string, processed?: boolean | null, thumbLg: string, thumbSm: string } | null, rawAssetData?: { __typename?: 'RawNftAssetData', animationUrl?: string | null, externalUrl?: string | null, imageData?: string | null, imageUrl?: string | null } | null } | null> | null, royalties?: Array<{ __typename?: 'NftPoolRoyalty', percent?: string | null, recipient?: string | null } | null> | null } | null> } | null }; - -export type GetParallelCardChangesQueryVariables = Exact<{ - cursor?: InputMaybe; - limit?: InputMaybe; - timestamp?: InputMaybe; - tokenId?: InputMaybe; -}>; - - -export type GetParallelCardChangesQuery = { __typename?: 'Query', getParallelCardChanges?: { __typename?: 'ParallelCardChangesConnection', cursor?: string | null, items?: Array<{ __typename?: 'ParallelCardChange', timestamp: number, tokenId: string, diff: { __typename?: 'ParallelCardChangeDiff', new: { __typename?: 'ParallelCardChangeFields', artist?: string | null, attack?: string | null, cardType?: string | null, class?: string | null, cost?: string | null, expansion?: string | null, flavourText?: string | null, functionText?: string | null, health?: string | null, parallel?: string | null, parallelId?: string | null, paraset?: string | null, passiveAbility?: string | null, rarity?: string | null, subtype?: string | null, supply?: string | null }, old: { __typename?: 'ParallelCardChangeFields', artist?: string | null, attack?: string | null, cardType?: string | null, class?: string | null, cost?: string | null, expansion?: string | null, flavourText?: string | null, functionText?: string | null, health?: string | null, parallel?: string | null, parallelId?: string | null, paraset?: string | null, passiveAbility?: string | null, rarity?: string | null, subtype?: string | null, supply?: string | null } } } | null> | null } | null }; - -export type GetPrimePoolAssetsQueryVariables = Exact<{ - cursor?: InputMaybe; - limit?: InputMaybe; - networkId: Scalars['Int']['input']; - poolContractAddress?: InputMaybe; - poolId?: InputMaybe; - walletAddress?: InputMaybe; -}>; - - -export type GetPrimePoolAssetsQuery = { __typename?: 'Query', getPrimePoolAssets?: { __typename?: 'PrimePoolAssetConnection', cursor?: string | null, items?: Array<{ __typename?: 'PrimePoolAsset', amount: string, ethRewardDebt?: string | null, from: string, fromHashKey: string, fromSortKey: string, id: string, networkId: number, poolContractAddress: string, poolId: string, primeRewardDebt?: string | null, sortKey: string } | null> | null } | null }; - -export type GetPrimePoolEventsQueryVariables = Exact<{ - cursor?: InputMaybe; - eventTypes?: InputMaybe> | InputMaybe>; - limit?: InputMaybe; - networkId: Scalars['Int']['input']; - poolContractAddress?: InputMaybe; - poolId?: InputMaybe; - walletAddress?: InputMaybe; -}>; - - -export type GetPrimePoolEventsQuery = { __typename?: 'Query', getPrimePoolEvents?: { __typename?: 'PrimePoolEventConnection', cursor?: string | null, items?: Array<{ __typename?: 'PrimePoolEvent', blockHash: string, blockNumber: number, eventType: PrimePoolEventType, from: string, fromHashKey: string, id: string, logIndex: number, networkId: number, poolContractAddress: string, poolId: string, poolType: PrimePoolType, sortKey: string, timestamp: number, transactionHash: string, transactionIndex: number, data: { __typename?: 'PrimePoolCacheData', eventAmount: string, totalSupply: string, type: PrimePoolEventType, user: string, userCachedAmount: string, userEthRewardDebt: string, userPrimeRewardDebt: string } | { __typename?: 'PrimePoolCachingPausedData', cachingPaused: boolean, type: PrimePoolEventType } | { __typename?: 'PrimePoolClaimEthData', currency: PrimePoolCurrency, ethClaimed?: string | null, eventAmount: string, type: PrimePoolEventType, user: string, userEthRewardDebt: string } | { __typename?: 'PrimePoolClaimPrimeData', currency: PrimePoolCurrency, eventAmount: string, type: PrimePoolEventType, user: string, userPrimeRewardDebt: string } | { __typename?: 'PrimePoolEmergencyWithdrawData', eventAmount: string, totalSupply: string, type: PrimePoolEventType, user: string, userCachedAmount: string, userEthRewardDebt: string, userPrimeRewardDebt: string } | { __typename?: 'PrimePoolEndTimestampUpdatedEthData', currency: PrimePoolCurrency, ethEndTimestamp: number, ethPerSecond: string, ethStartTimestamp: number, type: PrimePoolEventType } | { __typename?: 'PrimePoolEndTimestampUpdatedPrimeData', currency: PrimePoolCurrency, primeEndTimestamp: number, primePerSecond: string, primeStartTimestamp: number, type: PrimePoolEventType } | { __typename?: 'PrimePoolEthRewardsAddedData', amount: string, totalRewards: string, type: PrimePoolEventType } | { __typename?: 'PrimePoolEthRewardsSetData', amount: string, totalRewards: string, type: PrimePoolEventType } | { __typename?: 'PrimePoolLogPoolAdditionData', tokenIds: Array, type: PrimePoolEventType } | { __typename?: 'PrimePoolLogPoolSetAllocPointData', allocPoint: string, currency: PrimePoolCurrency, totalAllocPoint: string, type: PrimePoolEventType } | { __typename?: 'PrimePoolLogSetPerSecondData', amount: string, currency: PrimePoolCurrency, endTimestamp: number, ethAmountPerSecond?: string | null, primeAmountPerSecond?: string | null, startTimestamp: number, type: PrimePoolEventType } | { __typename?: 'PrimePoolLogUpdatePoolData', accPerShare: string, currency: PrimePoolCurrency, ethAmount?: string | null, lastRewardTimestamp: number, primeAmount?: string | null, supply: string, totalSupply: string, type: PrimePoolEventType } | { __typename?: 'PrimePoolRewardDecreaseData', currency: PrimePoolCurrency, eventAmount: string, type: PrimePoolEventType, updatedAmount: string } | { __typename?: 'PrimePoolRewardIncreaseData', currency: PrimePoolCurrency, eventAmount: string, type: PrimePoolEventType, updatedAmount: string } | { __typename?: 'PrimePoolTimeCachePeriodUpdateData', currency: PrimePoolCurrency, timedCachePeriod: string, type: PrimePoolEventType } | { __typename?: 'PrimePoolWithdrawData', eventAmount: string, totalSupply: string, type: PrimePoolEventType, user: string, userCachedAmount: string, userEthRewardDebt: string, userPrimeRewardDebt: string } } | null> | null } | null }; - -export type GetPrimePoolsQueryVariables = Exact<{ - address: Scalars['String']['input']; - cursor?: InputMaybe; - limit?: InputMaybe; - networkId: Scalars['Int']['input']; - poolIds?: InputMaybe> | InputMaybe>; -}>; - - -export type GetPrimePoolsQuery = { __typename?: 'Query', getPrimePools?: { __typename?: 'PrimePoolConnection', cursor?: string | null, items?: Array<{ __typename?: 'PrimePool', createdAt?: number | null, discoveryBlockNumber?: number | null, discoveryTransactionHash?: string | null, id?: string | null, networkId?: number | null, nftContractAddress?: string | null, poolContractAddress?: string | null, poolId?: string | null, poolType?: string | null, tokenIds?: Array | null, totalSupply?: string | null, calcData?: { __typename?: 'PrimePoolCalcData', poolAccumulatedEth?: string | null, poolAccumulatedPrime?: string | null, poolEthAmount?: string | null, poolEthPerDay?: string | null, poolEthPerSecond?: string | null, poolPrimeAmount?: string | null, poolPrimePerDay?: string | null, poolPrimePerSecond?: string | null, shareAccumulatedEth?: string | null, shareAccumulatedPrime?: string | null, shareEthPerDay?: string | null, shareEthPerSecond?: string | null, sharePrimePerDay?: string | null, sharePrimePerSecond?: string | null } | null, chainData?: { __typename?: 'PrimePoolChainData', cachingPaused?: boolean | null, ethAllocPoint?: string | null, ethClaimed?: string | null, ethEndTimestamp?: number | null, ethLastRewardTimestamp?: number | null, ethReward?: string | null, ethStartTimestamp?: number | null, ethTimedCachePeriod?: string | null, ethTotalAllocPoint?: string | null, primeAllocPoint?: string | null, primeEndTimestamp?: number | null, primeLastRewardTimestamp?: number | null, primeStartTimestamp?: string | null, primeTotalAllocPoint?: string | null } | null } | null> | null } | null }; - export type GetSymbolQueryVariables = Exact<{ currencyCode?: InputMaybe; symbol: Scalars['String']['input']; @@ -11025,14 +11063,14 @@ export type GetWebhooksQueryVariables = Exact<{ }>; -export type GetWebhooksQuery = { __typename?: 'Query', getWebhooks?: { __typename?: 'GetWebhooksResponse', cursor?: string | null, items?: Array<{ __typename?: 'Webhook', alertRecurrence: AlertRecurrence, bucketId?: string | null, bucketSortkey?: string | null, callbackUrl: string, created: number, groupId?: string | null, id: string, name: string, publishingType?: PublishingType | null, status: string, webhookType: WebhookType, conditions: { __typename?: 'MarketCapEventWebhookCondition' } | { __typename?: 'NftEventWebhookCondition', ignoreTransfers?: boolean | null, contractAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, eventType?: { __typename?: 'NftEventTypeCondition', eq: WebhookNftEventType } | null, exchangeAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, fillSource?: { __typename?: 'NftEventFillSourceCondition', oneOf: Array } | null, individualBaseTokenPrice?: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null } | null, maker?: { __typename?: 'StringEqualsCondition', eq: string } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, tokenAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, tokenId?: { __typename?: 'StringEqualsCondition', eq: string } | null } | { __typename?: 'PriceEventWebhookCondition', priceNetworkId: { __typename?: 'IntEqualsCondition', eq: number }, priceUsd: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null }, priceTokenAddress: { __typename?: 'StringEqualsCondition', eq: string } } | { __typename?: 'RawTransactionWebhookCondition', ignoreNftEvents?: boolean | null, ignoreTokenPairEvents?: boolean | null, from?: { __typename?: 'StringEqualsCondition', eq: string } | null, input?: { __typename?: 'StringContainsCondition', contains?: Array | null, notContains?: Array | null } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, to?: { __typename?: 'StringEqualsCondition', eq: string } | null, toOrFrom?: { __typename?: 'StringEqualsCondition', eq: string } | null } | { __typename?: 'TokenPairEventWebhookCondition', eventType?: { __typename?: 'TokenPairEventTypeCondition', oneOf: Array } | null, exchangeAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, maker?: { __typename?: 'StringEqualsCondition', eq: string } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, pairAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, swapValue?: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null } | null, tokenAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null }, retrySettings?: { __typename?: 'RetrySettings', maxRetries?: number | null, maxRetryDelay?: number | null, maxTimeElapsed?: number | null, minRetryDelay?: number | null } | null } | null> | null } | null }; +export type GetWebhooksQuery = { __typename?: 'Query', getWebhooks?: { __typename?: 'GetWebhooksResponse', cursor?: string | null, items?: Array<{ __typename?: 'Webhook', alertRecurrence: AlertRecurrence, bucketId?: string | null, bucketSortkey?: string | null, callbackUrl: string, created: number, groupId?: string | null, id: string, name: string, publishingType?: PublishingType | null, status: string, webhookType: WebhookType, conditions: { __typename?: 'MarketCapEventWebhookCondition' } | { __typename?: 'NftEventWebhookCondition', ignoreTransfers?: boolean | null, contractAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, eventType?: { __typename?: 'NftEventTypeCondition', eq: WebhookNftEventType } | null, exchangeAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, fillSource?: { __typename?: 'NftEventFillSourceCondition', oneOf: Array } | null, individualBaseTokenPrice?: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null } | null, maker?: { __typename?: 'StringEqualsCondition', eq: string } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, tokenAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, tokenId?: { __typename?: 'StringEqualsCondition', eq: string } | null } | { __typename?: 'PriceEventWebhookCondition', priceNetworkId: { __typename?: 'IntEqualsCondition', eq: number }, priceUsd: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null }, priceTokenAddress: { __typename?: 'StringEqualsCondition', eq: string } } | { __typename?: 'RawTransactionWebhookCondition', ignoreNftEvents?: boolean | null, ignoreTokenPairEvents?: boolean | null, from?: { __typename?: 'StringEqualsCondition', eq: string } | null, input?: { __typename?: 'StringContainsCondition', contains?: Array | null, notContains?: Array | null } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, to?: { __typename?: 'StringEqualsCondition', eq: string } | null, toOrFrom?: { __typename?: 'StringEqualsCondition', eq: string } | null } | { __typename?: 'TokenPairEventWebhookCondition', eventType?: { __typename?: 'TokenPairEventTypeCondition', oneOf: Array } | null, exchangeAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, maker?: { __typename?: 'StringEqualsCondition', eq: string } | null, networkId?: { __typename?: 'OneOfNumberCondition', oneOf: Array } | null, pairAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null, swapValue?: { __typename?: 'ComparisonOperator', eq?: string | null, gt?: string | null, gte?: string | null, lt?: string | null, lte?: string | null } | null, tokenAddress?: { __typename?: 'StringEqualsCondition', eq: string } | null } | { __typename?: 'TokenPriceEventWebhookCondition' } | { __typename?: 'TokenTransferEventWebhookCondition' }, retrySettings?: { __typename?: 'RetrySettings', maxRetries?: number | null, maxRetryDelay?: number | null, maxTimeElapsed?: number | null, minRetryDelay?: number | null } | null } | null> | null } | null }; export type HoldersQueryVariables = Exact<{ input: HoldersInput; }>; -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, 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, symbol?: 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, 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, 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, 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, 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, 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 LiquidityLocksQueryVariables = Exact<{ cursor?: InputMaybe; @@ -11042,7 +11080,7 @@ export type LiquidityLocksQueryVariables = Exact<{ }>; -export type LiquidityLocksQuery = { __typename?: 'Query', liquidityLocks?: { __typename?: 'LiquidityLockConnection', cursor?: string | null, items: Array<{ __typename?: 'LiquidityLock', createdAt: number, initialAmountToken0: string, initialAmountToken1: string, liquidityAmount: string, liquidityProtocolV2: string, lockProtocol: LiquidityLockProtocol, lockerAddress: string, networkId: number, ownerAddress: string, pairAddress: string, unlockAt?: number | null, liquidityNftData?: { __typename?: 'LiquidityNftData', nftPositionManagerAddress: string, nftTokenId: string } | null }> } | null }; +export type LiquidityLocksQuery = { __typename?: 'Query', liquidityLocks?: { __typename?: 'LiquidityLockConnection', cursor?: string | null, items: Array<{ __typename?: 'LiquidityLock', createdAt: number, initialAmountToken0: string, initialAmountToken1: string, liquidityAmount: string, liquidityProtocolV2: string, lockProtocol: LiquidityLockProtocol, lockerAddress: string, networkId: number, ownerAddress: string, pairAddress: string, unlockAt?: number | null, liquidityNftData?: { __typename?: 'LiquidityNftData', nftPositionManagerAddress: string, nftTokenId: string } | null }>, pairLiquidityData: Array<{ __typename?: 'PairLiquidityData', networkId: number, pairAddress: string, pairId: string, totalLiquidity: string }> } | null }; export type LiquidityMetadataQueryVariables = Exact<{ networkId: Scalars['Int']['input']; @@ -11067,7 +11105,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?: '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, 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, 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, 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, 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 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, symbol?: 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, 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, 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, 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, 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 ListPairsWithMetadataForTokenQueryVariables = Exact<{ limit?: InputMaybe; @@ -11076,14 +11114,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, symbol?: 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, 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, 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?: '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, 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, 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, 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, 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 }, 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, 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, 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 NftHoldersQueryVariables = Exact<{ - input: NftHoldersInput; -}>; - - -export type NftHoldersQuery = { __typename?: 'Query', nftHolders: { __typename?: 'NftHoldersResponse', count: number, cursor?: string | null, status: HoldersStatus, items: Array<{ __typename?: 'NftBalance', balance: string, collectionId: string, walletAddress: string }> } }; +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, symbol?: 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, 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, 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, symbol?: 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, 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, 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, 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, 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 }, 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, 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, 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 PairMetadataQueryVariables = Exact<{ pairId: Scalars['String']['input']; @@ -11092,26 +11123,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, 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, symbol?: 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, 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, 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, symbol?: 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, 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, 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 } } }; - -export type PrimeHoldersQueryVariables = Exact<{ - cursor?: InputMaybe; -}>; - - -export type PrimeHoldersQuery = { __typename?: 'Query', primeHolders: { __typename?: 'PrimeHolders', count: number, cursor?: string | null, items: Array<{ __typename?: 'Balance', address: string, balance: string, balanceUsd?: string | null, firstHeldTimestamp?: number | 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, symbol?: 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, 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, 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 SearchNftsQueryVariables = Exact<{ - filterWashTrading?: InputMaybe; - include?: InputMaybe | NftSearchable>; - limit?: InputMaybe; - networkFilter?: InputMaybe | Scalars['Int']['input']>; - search?: InputMaybe; - window?: InputMaybe; -}>; - - -export type SearchNftsQuery = { __typename?: 'Query', searchNfts?: { __typename?: 'NftSearchResponse', hasMore: number, items?: Array<{ __typename?: 'NftSearchResponseCollection', address: string, average: string, ceiling: string, floor: string, id: string, imageUrl?: string | null, name?: string | null, networkId: number, symbol?: string | null, tradeCount: string, tradeCountChange: number, volume: string, volumeChange: number, window: string } | null> | null } | 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, 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, symbol?: 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, 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, 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, symbol?: 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, 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, 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 TokenQueryVariables = Exact<{ input: TokenInput; @@ -11171,26 +11183,12 @@ export type WalletChartQueryVariables = Exact<{ export type WalletChartQuery = { __typename?: 'Query', walletChart?: { __typename?: 'WalletChartResponse', backfillState?: WalletAggregateBackfillState | null, networkId?: number | null, resolution: string, walletAddress: string, data: Array<{ __typename?: 'WalletChartData', realizedProfitUsd: string, resolution: string, swaps: number, timestamp: number, volumeUsd: string, volumeUsdAll: string }>, range: { __typename?: 'WalletChartRange', end: number, start: number } } | null }; -export type WalletNftCollectionAssetsQueryVariables = Exact<{ - input: WalletNftCollectionAssetsInput; -}>; - - -export type WalletNftCollectionAssetsQuery = { __typename?: 'Query', walletNftCollectionAssets: { __typename?: 'WalletNftCollectionAssetsResponse', collectionId: string, cursor?: string | null, walletAddress: string, items: Array<{ __typename?: 'WalletNftCollectionAsset', quantity: string, tokenId: string } | null> } }; - -export type WalletNftCollectionsQueryVariables = Exact<{ - input: WalletNftCollectionsInput; -}>; - - -export type WalletNftCollectionsQuery = { __typename?: 'Query', walletNftCollections: { __typename?: 'WalletNftCollectionsResponse', cursor?: string | null, items: Array<{ __typename?: 'WalletNftCollection', collectionId: string, quantity: string, walletAddress: string }> } }; - export type OnBalanceUpdatedSubscriptionVariables = Exact<{ walletAddress: Scalars['String']['input']; }>; -export type OnBalanceUpdatedSubscription = { __typename?: 'Subscription', onBalanceUpdated: { __typename?: 'Balance', address: string, balance: string, balanceUsd?: string | null, firstHeldTimestamp?: number | 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, symbol?: 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, 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, 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, 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, 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, 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 OnBarsUpdatedSubscriptionVariables = Exact<{ pairId?: InputMaybe; @@ -11237,7 +11235,7 @@ export type OnHoldersUpdatedSubscriptionVariables = Exact<{ }>; -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, 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, symbol?: 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, 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, 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, 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, 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, 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 OnLatestPairUpdatedSubscriptionVariables = Exact<{ id?: InputMaybe; @@ -11304,7 +11302,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, 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, symbol?: 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, 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, 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, symbol?: 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, 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, 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 } } | 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, 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, symbol?: 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, 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, 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, symbol?: 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, 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, 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 OnPriceUpdatedSubscriptionVariables = Exact<{ address?: InputMaybe; @@ -11375,64 +11373,41 @@ 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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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 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":"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":"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 FilterNftCollectionsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FilterNftCollections"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"collections"}},"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":"NftCollectionFilters"}}},{"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":"NftCollectionRanking"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"filterNftCollections"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"collections"},"value":{"kind":"Variable","name":{"kind":"Name","value":"collections"}}},{"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":"address"}},{"kind":"Field","name":{"kind":"Name","value":"ercType"}},{"kind":"Field","name":{"kind":"Name","value":"grouping"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"lastEventTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"stats1h"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"endTime"}},{"kind":"Field","name":{"kind":"Name","value":"networkBaseToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"average"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volumeByFillsource"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"fillsource"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volumePercentByFillsource"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"fillsource"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"nonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"mints"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sales"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokensSold"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transfers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueMinters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSalesWallets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"startTime"}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"average"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volumeByFillsource"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"fillsource"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volumePercentByFillsource"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"fillsource"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats4h"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"endTime"}},{"kind":"Field","name":{"kind":"Name","value":"networkBaseToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"average"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volumeByFillsource"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"fillsource"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volumePercentByFillsource"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"fillsource"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"nonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"mints"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sales"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokensSold"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transfers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueMinters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSalesWallets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"startTime"}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"average"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volumeByFillsource"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"fillsource"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volumePercentByFillsource"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"fillsource"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats12h"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"endTime"}},{"kind":"Field","name":{"kind":"Name","value":"networkBaseToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"average"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volumeByFillsource"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"fillsource"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volumePercentByFillsource"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"fillsource"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"nonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"mints"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sales"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokensSold"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transfers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueMinters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSalesWallets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"startTime"}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"average"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volumeByFillsource"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"fillsource"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volumePercentByFillsource"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"fillsource"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"stats24h"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"endTime"}},{"kind":"Field","name":{"kind":"Name","value":"networkBaseToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"average"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volumeByFillsource"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"fillsource"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volumePercentByFillsource"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"fillsource"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"nonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"mints"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sales"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokensSold"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transfers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueMinters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSalesWallets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"startTime"}},{"kind":"Field","name":{"kind":"Name","value":"usd"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"average"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"close"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"highestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"open"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volume"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volumeByFillsource"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"fillsource"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volumePercentByFillsource"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"current"}},{"kind":"Field","name":{"kind":"Name","value":"fillsource"}},{"kind":"Field","name":{"kind":"Name","value":"previous"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}}]}}]}}]}}]} as unknown as DocumentNode; -export const FilterNftParallelAssetsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FilterNftParallelAssets"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filters"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ParallelAssetFilters"}}},{"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":"match"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ParallelAssetMatchers"}}},{"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":"ParallelAssetRanking"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"filterNftParallelAssets"},"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":"match"},"value":{"kind":"Variable","name":{"kind":"Name","value":"match"}}},{"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":"address"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"gameData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"attack"}},{"kind":"Field","name":{"kind":"Name","value":"cardType"}},{"kind":"Field","name":{"kind":"Name","value":"cost"}},{"kind":"Field","name":{"kind":"Name","value":"functionText"}},{"kind":"Field","name":{"kind":"Name","value":"health"}},{"kind":"Field","name":{"kind":"Name","value":"parallel"}},{"kind":"Field","name":{"kind":"Name","value":"passiveAbility"}},{"kind":"Field","name":{"kind":"Name","value":"rarity"}},{"kind":"Field","name":{"kind":"Name","value":"subtype"}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"lastPriceNetworkBaseToken"}},{"kind":"Field","name":{"kind":"Name","value":"lastPriceUsd"}},{"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":"metadata"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"artist"}},{"kind":"Field","name":{"kind":"Name","value":"class"}},{"kind":"Field","name":{"kind":"Name","value":"expansion"}},{"kind":"Field","name":{"kind":"Name","value":"flavourText"}},{"kind":"Field","name":{"kind":"Name","value":"parallelId"}},{"kind":"Field","name":{"kind":"Name","value":"paraset"}},{"kind":"Field","name":{"kind":"Name","value":"supply"}}]}},{"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":"parallelId"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}},{"kind":"Field","name":{"kind":"Name","value":"uri"}}]}}]}}]}}]} as unknown as DocumentNode; -export const FilterNftPoolCollectionsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FilterNftPoolCollections"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filters"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NftPoolCollectionFilters"}}},{"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":"NftPoolCollectionRanking"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"filterNftPoolCollections"},"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":"page"}},{"kind":"Field","name":{"kind":"Name","value":"results"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"balanceNBT"}},{"kind":"Field","name":{"kind":"Name","value":"balanceUSD"}},{"kind":"Field","name":{"kind":"Name","value":"collectionAddress"}},{"kind":"Field","name":{"kind":"Name","value":"ercType"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"}},{"kind":"Field","name":{"kind":"Name","value":"expenseNBT24"}},{"kind":"Field","name":{"kind":"Name","value":"expenseNBTAll"}},{"kind":"Field","name":{"kind":"Name","value":"expenseUSD24"}},{"kind":"Field","name":{"kind":"Name","value":"expenseUSDAll"}},{"kind":"Field","name":{"kind":"Name","value":"floorNBT"}},{"kind":"Field","name":{"kind":"Name","value":"floorUSD"}},{"kind":"Field","name":{"kind":"Name","value":"highPriceNBT24"}},{"kind":"Field","name":{"kind":"Name","value":"highPriceNBTAll"}},{"kind":"Field","name":{"kind":"Name","value":"highPriceUSD24"}},{"kind":"Field","name":{"kind":"Name","value":"highPriceUSDAll"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"kind":"Field","name":{"kind":"Name","value":"lowPriceNBT24"}},{"kind":"Field","name":{"kind":"Name","value":"lowPriceNBTAll"}},{"kind":"Field","name":{"kind":"Name","value":"lowPriceUSD24"}},{"kind":"Field","name":{"kind":"Name","value":"lowPriceUSDAll"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"nftBalanceV2"}},{"kind":"Field","name":{"kind":"Name","value":"nftVolume24V2"}},{"kind":"Field","name":{"kind":"Name","value":"nftVolumeAllV2"}},{"kind":"Field","name":{"kind":"Name","value":"nftsBought24V2"}},{"kind":"Field","name":{"kind":"Name","value":"nftsBoughtAllV2"}},{"kind":"Field","name":{"kind":"Name","value":"nftsSold24V2"}},{"kind":"Field","name":{"kind":"Name","value":"nftsSoldAllV2"}},{"kind":"Field","name":{"kind":"Name","value":"offerNBT"}},{"kind":"Field","name":{"kind":"Name","value":"offerUSD"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeesNBT24"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeesNBTAll"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeesUSD24"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeesUSDAll"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeesNBT24"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeesNBTAll"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeesUSD24"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeesUSDAll"}},{"kind":"Field","name":{"kind":"Name","value":"revenueNBT24"}},{"kind":"Field","name":{"kind":"Name","value":"revenueNBTAll"}},{"kind":"Field","name":{"kind":"Name","value":"revenueUSD24"}},{"kind":"Field","name":{"kind":"Name","value":"revenueUSDAll"}},{"kind":"Field","name":{"kind":"Name","value":"symbol"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupplyV2"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNBT24"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNBTAll"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUSD24"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUSDAll"}}]}}]}}]}}]} as unknown as DocumentNode; -export const FilterNftPoolsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FilterNftPools"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filters"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"NftPoolFilters"}}},{"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":"NftPoolRanking"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"filterNftPools"},"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":"page"}},{"kind":"Field","name":{"kind":"Name","value":"results"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"acceptedNftTokenIds"}},{"kind":"Field","name":{"kind":"Name","value":"assetRecipientAddress"}},{"kind":"Field","name":{"kind":"Name","value":"balanceNBT"}},{"kind":"Field","name":{"kind":"Name","value":"balanceT"}},{"kind":"Field","name":{"kind":"Name","value":"balanceUSD"}},{"kind":"Field","name":{"kind":"Name","value":"bondingCurveAddress"}},{"kind":"Field","name":{"kind":"Name","value":"collectionAddress"}},{"kind":"Field","name":{"kind":"Name","value":"collectionName"}},{"kind":"Field","name":{"kind":"Name","value":"collectionSymbol"}},{"kind":"Field","name":{"kind":"Name","value":"delta"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"}},{"kind":"Field","name":{"kind":"Name","value":"expenseNBT24"}},{"kind":"Field","name":{"kind":"Name","value":"expenseNBTAll"}},{"kind":"Field","name":{"kind":"Name","value":"expenseT24"}},{"kind":"Field","name":{"kind":"Name","value":"expenseTAll"}},{"kind":"Field","name":{"kind":"Name","value":"expenseUSD24"}},{"kind":"Field","name":{"kind":"Name","value":"expenseUSDAll"}},{"kind":"Field","name":{"kind":"Name","value":"feeAmount"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"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":"nftBalanceV2"}},{"kind":"Field","name":{"kind":"Name","value":"nftVolume24V2"}},{"kind":"Field","name":{"kind":"Name","value":"nftVolumeAllV2"}},{"kind":"Field","name":{"kind":"Name","value":"nftsBought24V2"}},{"kind":"Field","name":{"kind":"Name","value":"nftsBoughtAllV2"}},{"kind":"Field","name":{"kind":"Name","value":"nftsSold24V2"}},{"kind":"Field","name":{"kind":"Name","value":"nftsSoldAllV2"}},{"kind":"Field","name":{"kind":"Name","value":"offerNBT"}},{"kind":"Field","name":{"kind":"Name","value":"offerT"}},{"kind":"Field","name":{"kind":"Name","value":"offerUSD"}},{"kind":"Field","name":{"kind":"Name","value":"ownerAddress"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeesNBT24"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeesNBTAll"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeesT24"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeesTAll"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeesUSD24"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeesUSDAll"}},{"kind":"Field","name":{"kind":"Name","value":"poolNftType"}},{"kind":"Field","name":{"kind":"Name","value":"poolType"}},{"kind":"Field","name":{"kind":"Name","value":"poolVariant"}},{"kind":"Field","name":{"kind":"Name","value":"propertyChecker"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeesNBT24"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeesNBTAll"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeesT24"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeesTAll"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeesUSD24"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeesUSDAll"}},{"kind":"Field","name":{"kind":"Name","value":"revenueNBT24"}},{"kind":"Field","name":{"kind":"Name","value":"revenueNBTAll"}},{"kind":"Field","name":{"kind":"Name","value":"revenueT24"}},{"kind":"Field","name":{"kind":"Name","value":"revenueTAll"}},{"kind":"Field","name":{"kind":"Name","value":"revenueUSD24"}},{"kind":"Field","name":{"kind":"Name","value":"revenueUSDAll"}},{"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":"sellNBT"}},{"kind":"Field","name":{"kind":"Name","value":"sellT"}},{"kind":"Field","name":{"kind":"Name","value":"sellUSD"}},{"kind":"Field","name":{"kind":"Name","value":"spotNBT"}},{"kind":"Field","name":{"kind":"Name","value":"spotT"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"version"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNBT24"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNBTAll"}},{"kind":"Field","name":{"kind":"Name","value":"volumeT24"}},{"kind":"Field","name":{"kind":"Name","value":"volumeTAll"}},{"kind":"Field","name":{"kind":"Name","value":"volumeUSD24"}},{"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":"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":"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":"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":"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":"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":"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":"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":"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":"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 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":"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":"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":"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":"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":"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":"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":"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":"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 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"}}}}],"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"}}}],"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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"}}}}],"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"}}}],"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"liquidity"}},{"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":"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":"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":"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":"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":"s"}},{"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":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNativeToken"}}]}}]}}]} 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":"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":"liquidity"}},{"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":"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":"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":"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":"s"}},{"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":"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":"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":"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 GetDetailedNftStatsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetDetailedNftStats"},"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":"collectionAddress"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"durations"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DetailedNftStatsDuration"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"grouping"}},"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":"timestamp"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getDetailedNftStats"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"bucketCount"},"value":{"kind":"Variable","name":{"kind":"Name","value":"bucketCount"}}},{"kind":"Argument","name":{"kind":"Name","value":"collectionAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"collectionAddress"}}},{"kind":"Argument","name":{"kind":"Name","value":"durations"},"value":{"kind":"Variable","name":{"kind":"Name","value":"durations"}}},{"kind":"Argument","name":{"kind":"Name","value":"grouping"},"value":{"kind":"Variable","name":{"kind":"Name","value":"grouping"}}},{"kind":"Argument","name":{"kind":"Name","value":"networkId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}}},{"kind":"Argument","name":{"kind":"Name","value":"timestamp"},"value":{"kind":"Variable","name":{"kind":"Name","value":"timestamp"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"collectionAddress"}},{"kind":"Field","name":{"kind":"Name","value":"grouping"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"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":"statsNetworkBaseToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"average"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"highestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"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":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"mints"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sales"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokensSold"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transfers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueMinters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSalesWallets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"average"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"highestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"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":"statsNetworkBaseToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"average"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"highestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"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":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"mints"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sales"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokensSold"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transfers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueMinters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSalesWallets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"average"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"highestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"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":"statsNetworkBaseToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"average"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"highestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"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":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"mints"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sales"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokensSold"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transfers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueMinters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSalesWallets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"average"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"highestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"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":"statsNetworkBaseToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"average"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"highestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"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":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"mints"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sales"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokensSold"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transfers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueMinters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSalesWallets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"average"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"highestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"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":"statsNetworkBaseToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"average"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"highestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"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":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"mints"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sales"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokensSold"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transfers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueMinters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSalesWallets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"average"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"highestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"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":"statsNetworkBaseToken"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"average"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"highestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"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":"statsNonCurrency"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"mints"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"sales"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tokensSold"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"transfers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueBuyers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueMinters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSalesWallets"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"uniqueSellers"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"average"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"highestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"currentValue"}},{"kind":"Field","name":{"kind":"Name","value":"previousValue"}}]}},{"kind":"Field","name":{"kind":"Name","value":"lowestSale"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"buckets"}},{"kind":"Field","name":{"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":"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"}}]}}]}}]}}]}}]} 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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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 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":"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":"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":"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":"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":"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":"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":"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":"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 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; export const GetNetworkConfigsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetNetworkConfigs"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"networkIds"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getNetworkConfigs"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"networkIds"},"value":{"kind":"Variable","name":{"kind":"Name","value":"networkIds"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AptosNetworkConfig"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseTokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"baseTokenSymbol"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"defaultPairAddress"}},{"kind":"Field","name":{"kind":"Name","value":"defaultPairQuoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"enabled"}},{"kind":"Field","name":{"kind":"Name","value":"explorer"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"checksummed"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"mainnet"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"networkName"}},{"kind":"Field","name":{"kind":"Name","value":"networkShortName"}},{"kind":"Field","name":{"kind":"Name","value":"networkType"}},{"kind":"Field","name":{"kind":"Name","value":"newTokensEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"stableCoinAddresses"}},{"kind":"Field","name":{"kind":"Name","value":"wrappedBaseTokenSymbol"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"EvmNetworkConfig"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseTokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"baseTokenSymbol"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"defaultPairAddress"}},{"kind":"Field","name":{"kind":"Name","value":"defaultPairQuoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"enabled"}},{"kind":"Field","name":{"kind":"Name","value":"explorer"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"checksummed"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"mainnet"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"networkName"}},{"kind":"Field","name":{"kind":"Name","value":"networkShortName"}},{"kind":"Field","name":{"kind":"Name","value":"networkType"}},{"kind":"Field","name":{"kind":"Name","value":"newTokensEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"stableCoinAddresses"}},{"kind":"Field","name":{"kind":"Name","value":"wrappedBaseTokenSymbol"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SolanaNetworkConfig"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseTokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"baseTokenSymbol"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"defaultPairAddress"}},{"kind":"Field","name":{"kind":"Name","value":"defaultPairQuoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"enabled"}},{"kind":"Field","name":{"kind":"Name","value":"explorer"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"checksummed"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"mainnet"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"networkName"}},{"kind":"Field","name":{"kind":"Name","value":"networkShortName"}},{"kind":"Field","name":{"kind":"Name","value":"networkType"}},{"kind":"Field","name":{"kind":"Name","value":"newTokensEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"stableCoinAddresses"}},{"kind":"Field","name":{"kind":"Name","value":"wrappedBaseTokenSymbol"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"StarknetNetworkConfig"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseTokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"baseTokenSymbol"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"defaultPairAddress"}},{"kind":"Field","name":{"kind":"Name","value":"defaultPairQuoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"enabled"}},{"kind":"Field","name":{"kind":"Name","value":"explorer"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"checksummed"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"mainnet"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"networkName"}},{"kind":"Field","name":{"kind":"Name","value":"networkShortName"}},{"kind":"Field","name":{"kind":"Name","value":"networkType"}},{"kind":"Field","name":{"kind":"Name","value":"newTokensEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"stableCoinAddresses"}},{"kind":"Field","name":{"kind":"Name","value":"wrappedBaseTokenSymbol"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"SuiNetworkConfig"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"baseTokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"baseTokenSymbol"}},{"kind":"Field","name":{"kind":"Name","value":"color"}},{"kind":"Field","name":{"kind":"Name","value":"defaultPairAddress"}},{"kind":"Field","name":{"kind":"Name","value":"defaultPairQuoteToken"}},{"kind":"Field","name":{"kind":"Name","value":"enabled"}},{"kind":"Field","name":{"kind":"Name","value":"explorer"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"checksummed"}},{"kind":"Field","name":{"kind":"Name","value":"icon"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"mainnet"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkIconUrl"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"networkName"}},{"kind":"Field","name":{"kind":"Name","value":"networkShortName"}},{"kind":"Field","name":{"kind":"Name","value":"networkType"}},{"kind":"Field","name":{"kind":"Name","value":"newTokensEnabled"}},{"kind":"Field","name":{"kind":"Name","value":"stableCoinAddresses"}},{"kind":"Field","name":{"kind":"Name","value":"wrappedBaseTokenSymbol"}}]}}]}}]}}]} as unknown as DocumentNode; export const GetNetworkStatsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetNetworkStats"},"variableDefinitions":[{"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":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getNetworkStats"},"arguments":[{"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"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"transactions1"}},{"kind":"Field","name":{"kind":"Name","value":"transactions4"}},{"kind":"Field","name":{"kind":"Name","value":"transactions5m"}},{"kind":"Field","name":{"kind":"Name","value":"transactions12"}},{"kind":"Field","name":{"kind":"Name","value":"transactions24"}},{"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"}}]}}]}}]} as unknown as DocumentNode; 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 GetNftAssetsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetNftAssets"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"address"}},"type":{"kind":"NonNullType","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":"fetchMissingAssets"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"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":"tokenIds"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getNftAssets"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"address"},"value":{"kind":"Variable","name":{"kind":"Name","value":"address"}}},{"kind":"Argument","name":{"kind":"Name","value":"cursor"},"value":{"kind":"Variable","name":{"kind":"Name","value":"cursor"}}},{"kind":"Argument","name":{"kind":"Name","value":"fetchMissingAssets"},"value":{"kind":"Variable","name":{"kind":"Name","value":"fetchMissingAssets"}}},{"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":"tokenIds"},"value":{"kind":"Variable","name":{"kind":"Name","value":"tokenIds"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cursor"}},{"kind":"Field","name":{"kind":"Name","value":"itemErrors"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"message"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"items"},"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 GetNftCollectionMetadataDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetNftCollectionMetadata"},"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":"collectionId"}},"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":"getNftCollectionMetadata"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"address"},"value":{"kind":"Variable","name":{"kind":"Name","value":"address"}}},{"kind":"Argument","name":{"kind":"Name","value":"collectionId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"collectionId"}}},{"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":"contract"},"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":"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":"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":"stats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"networkBaseTokenPriceStats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"average"}},{"kind":"Field","name":{"kind":"Name","value":"averageChange"}},{"kind":"Field","name":{"kind":"Name","value":"ceiling"}},{"kind":"Field","name":{"kind":"Name","value":"ceilingChange"}},{"kind":"Field","name":{"kind":"Name","value":"floor"}},{"kind":"Field","name":{"kind":"Name","value":"floorChange"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeByFillsource"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"fillsource"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumePercentByFillsource"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"fillsource"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"tradeCount"}},{"kind":"Field","name":{"kind":"Name","value":"tradeCountChange"}},{"kind":"Field","name":{"kind":"Name","value":"usdPriceStats"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"average"}},{"kind":"Field","name":{"kind":"Name","value":"averageChange"}},{"kind":"Field","name":{"kind":"Name","value":"ceiling"}},{"kind":"Field","name":{"kind":"Name","value":"ceilingChange"}},{"kind":"Field","name":{"kind":"Name","value":"floor"}},{"kind":"Field","name":{"kind":"Name","value":"floorChange"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeByFillsource"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"fillsource"}}]}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"volumePercentByFillsource"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount"}},{"kind":"Field","name":{"kind":"Name","value":"change"}},{"kind":"Field","name":{"kind":"Name","value":"fillsource"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"window"}}]}}]}}]}}]} as unknown as DocumentNode; -export const GetNftContractsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetNftContracts"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"contracts"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NftContractInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getNftContracts"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"contracts"},"value":{"kind":"Variable","name":{"kind":"Name","value":"contracts"}}}],"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"}}]}}]}}]} as unknown as DocumentNode; -export const GetNftEventsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetNftEvents"},"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":"cursor"}},"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":"includeTransfers"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"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":"poolAddress"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"timestamp"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventQueryTimestampInput"}}},{"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":"getNftEvents"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"address"},"value":{"kind":"Variable","name":{"kind":"Name","value":"address"}}},{"kind":"Argument","name":{"kind":"Name","value":"cursor"},"value":{"kind":"Variable","name":{"kind":"Name","value":"cursor"}}},{"kind":"Argument","name":{"kind":"Name","value":"exchangeAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"exchangeAddress"}}},{"kind":"Argument","name":{"kind":"Name","value":"includeTransfers"},"value":{"kind":"Variable","name":{"kind":"Name","value":"includeTransfers"}}},{"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":"poolAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"poolAddress"}}},{"kind":"Argument","name":{"kind":"Name","value":"timestamp"},"value":{"kind":"Variable","name":{"kind":"Name","value":"timestamp"}}},{"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":"cursor"}},{"kind":"Field","name":{"kind":"Name","value":"items"},"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"}}]}}]}}]}}]} as unknown as DocumentNode; -export const GetNftPoolDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetNftPool"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"address"}},"type":{"kind":"NonNullType","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"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getNftPool"},"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":"acceptedNftTokenIds"}},{"kind":"Field","name":{"kind":"Name","value":"assetRecipientAddress"}},{"kind":"Field","name":{"kind":"Name","value":"balanceNBT"}},{"kind":"Field","name":{"kind":"Name","value":"balanceT"}},{"kind":"Field","name":{"kind":"Name","value":"bondingCurveAddress"}},{"kind":"Field","name":{"kind":"Name","value":"bondingCurveType"}},{"kind":"Field","name":{"kind":"Name","value":"collectionAddress"}},{"kind":"Field","name":{"kind":"Name","value":"collectionName"}},{"kind":"Field","name":{"kind":"Name","value":"collectionSymbol"}},{"kind":"Field","name":{"kind":"Name","value":"delta"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"floorNBT"}},{"kind":"Field","name":{"kind":"Name","value":"floorT"}},{"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":"nftBalanceV2"}},{"kind":"Field","name":{"kind":"Name","value":"nftVolumeAllTimeV2"}},{"kind":"Field","name":{"kind":"Name","value":"offerNBT"}},{"kind":"Field","name":{"kind":"Name","value":"offerT"}},{"kind":"Field","name":{"kind":"Name","value":"owner"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeesAllTimeNBT"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeesAllTimeT"}},{"kind":"Field","name":{"kind":"Name","value":"poolId"}},{"kind":"Field","name":{"kind":"Name","value":"poolNftType"}},{"kind":"Field","name":{"kind":"Name","value":"poolType"}},{"kind":"Field","name":{"kind":"Name","value":"poolVariant"}},{"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":"spotPriceNBT"}},{"kind":"Field","name":{"kind":"Name","value":"spotPriceT"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"version"}},{"kind":"Field","name":{"kind":"Name","value":"volumeAllTimeNBT"}},{"kind":"Field","name":{"kind":"Name","value":"volumeAllTimeT"}}]}}]}}]} as unknown as DocumentNode; -export const GetNftPoolCollectionDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetNftPoolCollection"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"collectionAddress"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"exchangeAddress"}},"type":{"kind":"NonNullType","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"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getNftPoolCollection"},"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"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"balanceNBT"}},{"kind":"Field","name":{"kind":"Name","value":"collectionAddress"}},{"kind":"Field","name":{"kind":"Name","value":"collectionId"}},{"kind":"Field","name":{"kind":"Name","value":"collectionSymbol"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeId"}},{"kind":"Field","name":{"kind":"Name","value":"floorNBT"}},{"kind":"Field","name":{"kind":"Name","value":"image"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"nftBalanceV2"}},{"kind":"Field","name":{"kind":"Name","value":"nftVolumeAllTimeV2"}},{"kind":"Field","name":{"kind":"Name","value":"offerNBT"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeesNBTAll"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeesUSDAll"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeesNBTAll"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeesUSDAll"}},{"kind":"Field","name":{"kind":"Name","value":"royaltiesNBTAllEstimate"}},{"kind":"Field","name":{"kind":"Name","value":"royaltiesUSDAllEstimate"}},{"kind":"Field","name":{"kind":"Name","value":"volumeAllTimeNBT"}},{"kind":"Field","name":{"kind":"Name","value":"volumeAllTimeUSD"}}]}}]}}]} as unknown as DocumentNode; -export const GetNftPoolCollectionsByExchangeDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetNftPoolCollectionsByExchange"},"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":"exchangeAddress"}},"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"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getNftPoolCollectionsByExchange"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"cursor"},"value":{"kind":"Variable","name":{"kind":"Name","value":"cursor"}}},{"kind":"Argument","name":{"kind":"Name","value":"exchangeAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"exchangeAddress"}}},{"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"}}}],"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":"balanceNBT"}},{"kind":"Field","name":{"kind":"Name","value":"collectionAddress"}},{"kind":"Field","name":{"kind":"Name","value":"collectionId"}},{"kind":"Field","name":{"kind":"Name","value":"collectionSymbol"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeId"}},{"kind":"Field","name":{"kind":"Name","value":"floorNBT"}},{"kind":"Field","name":{"kind":"Name","value":"image"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"nftBalanceV2"}},{"kind":"Field","name":{"kind":"Name","value":"nftVolumeAllTimeV2"}},{"kind":"Field","name":{"kind":"Name","value":"offerNBT"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeesNBTAll"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeesUSDAll"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeesNBTAll"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeesUSDAll"}},{"kind":"Field","name":{"kind":"Name","value":"royaltiesNBTAllEstimate"}},{"kind":"Field","name":{"kind":"Name","value":"royaltiesUSDAllEstimate"}},{"kind":"Field","name":{"kind":"Name","value":"volumeAllTimeNBT"}},{"kind":"Field","name":{"kind":"Name","value":"volumeAllTimeUSD"}}]}}]}}]}}]} as unknown as DocumentNode; -export const GetNftPoolEventsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetNftPoolEvents"},"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":"cursor"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"eventTypes"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NftPoolEventType"}}}}},{"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":"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":"poolAddress"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"timestamp"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"EventQueryTimestampInput"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getNftPoolEvents"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"collectionAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"collectionAddress"}}},{"kind":"Argument","name":{"kind":"Name","value":"cursor"},"value":{"kind":"Variable","name":{"kind":"Name","value":"cursor"}}},{"kind":"Argument","name":{"kind":"Name","value":"eventTypes"},"value":{"kind":"Variable","name":{"kind":"Name","value":"eventTypes"}}},{"kind":"Argument","name":{"kind":"Name","value":"exchangeAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"exchangeAddress"}}},{"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":"poolAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"poolAddress"}}},{"kind":"Argument","name":{"kind":"Name","value":"timestamp"},"value":{"kind":"Variable","name":{"kind":"Name","value":"timestamp"}}}],"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":"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"}}]}}]}}]}}]} as unknown as DocumentNode; -export const GetNftPoolStatsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetNftPoolStats"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"collectionAddress"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"endTime"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"exchangeAddress"}},"type":{"kind":"NonNullType","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":"poolAddress"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"startTime"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getNftPoolStats"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"collectionAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"collectionAddress"}}},{"kind":"Argument","name":{"kind":"Name","value":"endTime"},"value":{"kind":"Variable","name":{"kind":"Name","value":"endTime"}}},{"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"}}},{"kind":"Argument","name":{"kind":"Name","value":"startTime"},"value":{"kind":"Variable","name":{"kind":"Name","value":"startTime"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"closeBalanceNBT"}},{"kind":"Field","name":{"kind":"Name","value":"closeNftBalanceV2"}},{"kind":"Field","name":{"kind":"Name","value":"collectionAddress"}},{"kind":"Field","name":{"kind":"Name","value":"endTime"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"}},{"kind":"Field","name":{"kind":"Name","value":"expenseNBT"}},{"kind":"Field","name":{"kind":"Name","value":"highFloorNBT"}},{"kind":"Field","name":{"kind":"Name","value":"highOfferNBT"}},{"kind":"Field","name":{"kind":"Name","value":"lowFloorNBT"}},{"kind":"Field","name":{"kind":"Name","value":"lowOfferNBT"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"nftVolumeV2"}},{"kind":"Field","name":{"kind":"Name","value":"nftsBoughtV2"}},{"kind":"Field","name":{"kind":"Name","value":"nftsSoldV2"}},{"kind":"Field","name":{"kind":"Name","value":"openBalanceNBT"}},{"kind":"Field","name":{"kind":"Name","value":"openNftBalanceV2"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeesNBT"}},{"kind":"Field","name":{"kind":"Name","value":"protocolFeesNBT"}},{"kind":"Field","name":{"kind":"Name","value":"revenueNBT"}},{"kind":"Field","name":{"kind":"Name","value":"startTime"}},{"kind":"Field","name":{"kind":"Name","value":"volumeNBT"}}]}}]}}]} as unknown as DocumentNode; -export const GetNftPoolsByCollectionAndExchangeDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetNftPoolsByCollectionAndExchange"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"collectionAddress"}},"type":{"kind":"NonNullType","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":"exchangeAddress"}},"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"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getNftPoolsByCollectionAndExchange"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"collectionAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"collectionAddress"}}},{"kind":"Argument","name":{"kind":"Name","value":"cursor"},"value":{"kind":"Variable","name":{"kind":"Name","value":"cursor"}}},{"kind":"Argument","name":{"kind":"Name","value":"exchangeAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"exchangeAddress"}}},{"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"}}}],"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":"acceptedNftTokenIds"}},{"kind":"Field","name":{"kind":"Name","value":"assetRecipientAddress"}},{"kind":"Field","name":{"kind":"Name","value":"balanceNBT"}},{"kind":"Field","name":{"kind":"Name","value":"balanceT"}},{"kind":"Field","name":{"kind":"Name","value":"bondingCurveAddress"}},{"kind":"Field","name":{"kind":"Name","value":"bondingCurveType"}},{"kind":"Field","name":{"kind":"Name","value":"collectionAddress"}},{"kind":"Field","name":{"kind":"Name","value":"collectionName"}},{"kind":"Field","name":{"kind":"Name","value":"collectionSymbol"}},{"kind":"Field","name":{"kind":"Name","value":"delta"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"floorNBT"}},{"kind":"Field","name":{"kind":"Name","value":"floorT"}},{"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":"nftBalanceV2"}},{"kind":"Field","name":{"kind":"Name","value":"nftVolumeAllTimeV2"}},{"kind":"Field","name":{"kind":"Name","value":"offerNBT"}},{"kind":"Field","name":{"kind":"Name","value":"offerT"}},{"kind":"Field","name":{"kind":"Name","value":"owner"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeesAllTimeNBT"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeesAllTimeT"}},{"kind":"Field","name":{"kind":"Name","value":"poolId"}},{"kind":"Field","name":{"kind":"Name","value":"poolNftType"}},{"kind":"Field","name":{"kind":"Name","value":"poolType"}},{"kind":"Field","name":{"kind":"Name","value":"poolVariant"}},{"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":"spotPriceNBT"}},{"kind":"Field","name":{"kind":"Name","value":"spotPriceT"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"version"}},{"kind":"Field","name":{"kind":"Name","value":"volumeAllTimeNBT"}},{"kind":"Field","name":{"kind":"Name","value":"volumeAllTimeT"}}]}}]}}]}}]} as unknown as DocumentNode; -export const GetNftPoolsByOwnerDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetNftPoolsByOwner"},"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":"exchangeAddress"}},"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":"networkId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"ownerAddress"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getNftPoolsByOwner"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"cursor"},"value":{"kind":"Variable","name":{"kind":"Name","value":"cursor"}}},{"kind":"Argument","name":{"kind":"Name","value":"exchangeAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"exchangeAddress"}}},{"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":"ownerAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"ownerAddress"}}}],"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":"acceptedNftTokenIds"}},{"kind":"Field","name":{"kind":"Name","value":"assetRecipientAddress"}},{"kind":"Field","name":{"kind":"Name","value":"balanceNBT"}},{"kind":"Field","name":{"kind":"Name","value":"balanceT"}},{"kind":"Field","name":{"kind":"Name","value":"bondingCurveAddress"}},{"kind":"Field","name":{"kind":"Name","value":"bondingCurveType"}},{"kind":"Field","name":{"kind":"Name","value":"collectionAddress"}},{"kind":"Field","name":{"kind":"Name","value":"collectionName"}},{"kind":"Field","name":{"kind":"Name","value":"collectionSymbol"}},{"kind":"Field","name":{"kind":"Name","value":"delta"}},{"kind":"Field","name":{"kind":"Name","value":"exchangeAddress"}},{"kind":"Field","name":{"kind":"Name","value":"fee"}},{"kind":"Field","name":{"kind":"Name","value":"floorNBT"}},{"kind":"Field","name":{"kind":"Name","value":"floorT"}},{"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":"nftBalanceV2"}},{"kind":"Field","name":{"kind":"Name","value":"nftVolumeAllTimeV2"}},{"kind":"Field","name":{"kind":"Name","value":"offerNBT"}},{"kind":"Field","name":{"kind":"Name","value":"offerT"}},{"kind":"Field","name":{"kind":"Name","value":"owner"}},{"kind":"Field","name":{"kind":"Name","value":"poolAddress"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeesAllTimeNBT"}},{"kind":"Field","name":{"kind":"Name","value":"poolFeesAllTimeT"}},{"kind":"Field","name":{"kind":"Name","value":"poolId"}},{"kind":"Field","name":{"kind":"Name","value":"poolNftType"}},{"kind":"Field","name":{"kind":"Name","value":"poolType"}},{"kind":"Field","name":{"kind":"Name","value":"poolVariant"}},{"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":"spotPriceNBT"}},{"kind":"Field","name":{"kind":"Name","value":"spotPriceT"}},{"kind":"Field","name":{"kind":"Name","value":"tokenAddress"}},{"kind":"Field","name":{"kind":"Name","value":"version"}},{"kind":"Field","name":{"kind":"Name","value":"volumeAllTimeNBT"}},{"kind":"Field","name":{"kind":"Name","value":"volumeAllTimeT"}}]}}]}}]}}]} as unknown as DocumentNode; -export const GetParallelCardChangesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetParallelCardChanges"},"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":"timestamp"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ParallelCardChangeQueryTimestampInput"}}},{"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":"getParallelCardChanges"},"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":"timestamp"},"value":{"kind":"Variable","name":{"kind":"Name","value":"timestamp"}}},{"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":"cursor"}},{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"diff"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"new"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"artist"}},{"kind":"Field","name":{"kind":"Name","value":"attack"}},{"kind":"Field","name":{"kind":"Name","value":"cardType"}},{"kind":"Field","name":{"kind":"Name","value":"class"}},{"kind":"Field","name":{"kind":"Name","value":"cost"}},{"kind":"Field","name":{"kind":"Name","value":"expansion"}},{"kind":"Field","name":{"kind":"Name","value":"flavourText"}},{"kind":"Field","name":{"kind":"Name","value":"functionText"}},{"kind":"Field","name":{"kind":"Name","value":"health"}},{"kind":"Field","name":{"kind":"Name","value":"parallel"}},{"kind":"Field","name":{"kind":"Name","value":"parallelId"}},{"kind":"Field","name":{"kind":"Name","value":"paraset"}},{"kind":"Field","name":{"kind":"Name","value":"passiveAbility"}},{"kind":"Field","name":{"kind":"Name","value":"rarity"}},{"kind":"Field","name":{"kind":"Name","value":"subtype"}},{"kind":"Field","name":{"kind":"Name","value":"supply"}}]}},{"kind":"Field","name":{"kind":"Name","value":"old"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"artist"}},{"kind":"Field","name":{"kind":"Name","value":"attack"}},{"kind":"Field","name":{"kind":"Name","value":"cardType"}},{"kind":"Field","name":{"kind":"Name","value":"class"}},{"kind":"Field","name":{"kind":"Name","value":"cost"}},{"kind":"Field","name":{"kind":"Name","value":"expansion"}},{"kind":"Field","name":{"kind":"Name","value":"flavourText"}},{"kind":"Field","name":{"kind":"Name","value":"functionText"}},{"kind":"Field","name":{"kind":"Name","value":"health"}},{"kind":"Field","name":{"kind":"Name","value":"parallel"}},{"kind":"Field","name":{"kind":"Name","value":"parallelId"}},{"kind":"Field","name":{"kind":"Name","value":"paraset"}},{"kind":"Field","name":{"kind":"Name","value":"passiveAbility"}},{"kind":"Field","name":{"kind":"Name","value":"rarity"}},{"kind":"Field","name":{"kind":"Name","value":"subtype"}},{"kind":"Field","name":{"kind":"Name","value":"supply"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}}]}}]}}]}}]} as unknown as DocumentNode; -export const GetPrimePoolAssetsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetPrimePoolAssets"},"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":"networkId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"poolContractAddress"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"poolId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"walletAddress"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getPrimePoolAssets"},"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":"networkId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}}},{"kind":"Argument","name":{"kind":"Name","value":"poolContractAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"poolContractAddress"}}},{"kind":"Argument","name":{"kind":"Name","value":"poolId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"poolId"}}},{"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":"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":"ethRewardDebt"}},{"kind":"Field","name":{"kind":"Name","value":"from"}},{"kind":"Field","name":{"kind":"Name","value":"fromHashKey"}},{"kind":"Field","name":{"kind":"Name","value":"fromSortKey"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"poolContractAddress"}},{"kind":"Field","name":{"kind":"Name","value":"poolId"}},{"kind":"Field","name":{"kind":"Name","value":"primeRewardDebt"}},{"kind":"Field","name":{"kind":"Name","value":"sortKey"}}]}}]}}]}}]} as unknown as DocumentNode; -export const GetPrimePoolEventsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetPrimePoolEvents"},"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":"eventTypes"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"PrimePoolEventType"}}}},{"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":"poolContractAddress"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"poolId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"walletAddress"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getPrimePoolEvents"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"cursor"},"value":{"kind":"Variable","name":{"kind":"Name","value":"cursor"}}},{"kind":"Argument","name":{"kind":"Name","value":"eventTypes"},"value":{"kind":"Variable","name":{"kind":"Name","value":"eventTypes"}}},{"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":"poolContractAddress"},"value":{"kind":"Variable","name":{"kind":"Name","value":"poolContractAddress"}}},{"kind":"Argument","name":{"kind":"Name","value":"poolId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"poolId"}}},{"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":"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":"PrimePoolCacheData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eventAmount"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"user"}},{"kind":"Field","name":{"kind":"Name","value":"userCachedAmount"}},{"kind":"Field","name":{"kind":"Name","value":"userEthRewardDebt"}},{"kind":"Field","name":{"kind":"Name","value":"userPrimeRewardDebt"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PrimePoolCachingPausedData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cachingPaused"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PrimePoolClaimEthData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"ethClaimed"}},{"kind":"Field","name":{"kind":"Name","value":"eventAmount"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"user"}},{"kind":"Field","name":{"kind":"Name","value":"userEthRewardDebt"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PrimePoolClaimPrimeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"eventAmount"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"user"}},{"kind":"Field","name":{"kind":"Name","value":"userPrimeRewardDebt"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PrimePoolEmergencyWithdrawData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eventAmount"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"user"}},{"kind":"Field","name":{"kind":"Name","value":"userCachedAmount"}},{"kind":"Field","name":{"kind":"Name","value":"userEthRewardDebt"}},{"kind":"Field","name":{"kind":"Name","value":"userPrimeRewardDebt"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PrimePoolEndTimestampUpdatedEthData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"ethEndTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"ethPerSecond"}},{"kind":"Field","name":{"kind":"Name","value":"ethStartTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PrimePoolEndTimestampUpdatedPrimeData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"primeEndTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"primePerSecond"}},{"kind":"Field","name":{"kind":"Name","value":"primeStartTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PrimePoolEthRewardsAddedData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount"}},{"kind":"Field","name":{"kind":"Name","value":"totalRewards"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PrimePoolEthRewardsSetData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount"}},{"kind":"Field","name":{"kind":"Name","value":"totalRewards"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PrimePoolLogPoolAdditionData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"tokenIds"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PrimePoolLogPoolSetAllocPointData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allocPoint"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"totalAllocPoint"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PrimePoolLogSetPerSecondData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"amount"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"endTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"ethAmountPerSecond"}},{"kind":"Field","name":{"kind":"Name","value":"primeAmountPerSecond"}},{"kind":"Field","name":{"kind":"Name","value":"startTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PrimePoolLogUpdatePoolData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"accPerShare"}},{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"ethAmount"}},{"kind":"Field","name":{"kind":"Name","value":"lastRewardTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"primeAmount"}},{"kind":"Field","name":{"kind":"Name","value":"supply"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PrimePoolRewardDecreaseData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"eventAmount"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAmount"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PrimePoolRewardIncreaseData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"eventAmount"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"updatedAmount"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PrimePoolTimeCachePeriodUpdateData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"currency"}},{"kind":"Field","name":{"kind":"Name","value":"timedCachePeriod"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"InlineFragment","typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"PrimePoolWithdrawData"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eventAmount"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}},{"kind":"Field","name":{"kind":"Name","value":"type"}},{"kind":"Field","name":{"kind":"Name","value":"user"}},{"kind":"Field","name":{"kind":"Name","value":"userCachedAmount"}},{"kind":"Field","name":{"kind":"Name","value":"userEthRewardDebt"}},{"kind":"Field","name":{"kind":"Name","value":"userPrimeRewardDebt"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"eventType"}},{"kind":"Field","name":{"kind":"Name","value":"from"}},{"kind":"Field","name":{"kind":"Name","value":"fromHashKey"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"logIndex"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"poolContractAddress"}},{"kind":"Field","name":{"kind":"Name","value":"poolId"}},{"kind":"Field","name":{"kind":"Name","value":"poolType"}},{"kind":"Field","name":{"kind":"Name","value":"sortKey"}},{"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 GetPrimePoolsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetPrimePools"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"address"}},"type":{"kind":"NonNullType","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":"networkId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"poolIds"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"getPrimePools"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"address"},"value":{"kind":"Variable","name":{"kind":"Name","value":"address"}}},{"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":"networkId"},"value":{"kind":"Variable","name":{"kind":"Name","value":"networkId"}}},{"kind":"Argument","name":{"kind":"Name","value":"poolIds"},"value":{"kind":"Variable","name":{"kind":"Name","value":"poolIds"}}}],"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":"calcData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"poolAccumulatedEth"}},{"kind":"Field","name":{"kind":"Name","value":"poolAccumulatedPrime"}},{"kind":"Field","name":{"kind":"Name","value":"poolEthAmount"}},{"kind":"Field","name":{"kind":"Name","value":"poolEthPerDay"}},{"kind":"Field","name":{"kind":"Name","value":"poolEthPerSecond"}},{"kind":"Field","name":{"kind":"Name","value":"poolPrimeAmount"}},{"kind":"Field","name":{"kind":"Name","value":"poolPrimePerDay"}},{"kind":"Field","name":{"kind":"Name","value":"poolPrimePerSecond"}},{"kind":"Field","name":{"kind":"Name","value":"shareAccumulatedEth"}},{"kind":"Field","name":{"kind":"Name","value":"shareAccumulatedPrime"}},{"kind":"Field","name":{"kind":"Name","value":"shareEthPerDay"}},{"kind":"Field","name":{"kind":"Name","value":"shareEthPerSecond"}},{"kind":"Field","name":{"kind":"Name","value":"sharePrimePerDay"}},{"kind":"Field","name":{"kind":"Name","value":"sharePrimePerSecond"}}]}},{"kind":"Field","name":{"kind":"Name","value":"chainData"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cachingPaused"}},{"kind":"Field","name":{"kind":"Name","value":"ethAllocPoint"}},{"kind":"Field","name":{"kind":"Name","value":"ethClaimed"}},{"kind":"Field","name":{"kind":"Name","value":"ethEndTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"ethLastRewardTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"ethReward"}},{"kind":"Field","name":{"kind":"Name","value":"ethStartTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"ethTimedCachePeriod"}},{"kind":"Field","name":{"kind":"Name","value":"ethTotalAllocPoint"}},{"kind":"Field","name":{"kind":"Name","value":"primeAllocPoint"}},{"kind":"Field","name":{"kind":"Name","value":"primeEndTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"primeLastRewardTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"primeStartTimestamp"}},{"kind":"Field","name":{"kind":"Name","value":"primeTotalAllocPoint"}}]}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"discoveryBlockNumber"}},{"kind":"Field","name":{"kind":"Name","value":"discoveryTransactionHash"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"networkId"}},{"kind":"Field","name":{"kind":"Name","value":"nftContractAddress"}},{"kind":"Field","name":{"kind":"Name","value":"poolContractAddress"}},{"kind":"Field","name":{"kind":"Name","value":"poolId"}},{"kind":"Field","name":{"kind":"Name","value":"poolType"}},{"kind":"Field","name":{"kind":"Name","value":"tokenIds"}},{"kind":"Field","name":{"kind":"Name","value":"totalSupply"}}]}}]}}]}}]} 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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"kind":"Field","name":{"kind":"Name","value":"s"}},{"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":"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":"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":"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":"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 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":"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":"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":"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"}}]}}]}}]}}]} 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":"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":"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":"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":"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":"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":"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"}}]}}]}}]}}]} 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":"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":"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":"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":"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":"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":"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":"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":"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":"volume"}}]}}]}}]}}]} as unknown as DocumentNode; -export const NftHoldersDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"NftHolders"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NftHoldersInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nftHolders"},"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":"balance"}},{"kind":"Field","name":{"kind":"Name","value":"collectionId"}},{"kind":"Field","name":{"kind":"Name","value":"walletAddress"}}]}},{"kind":"Field","name":{"kind":"Name","value":"status"}}]}}]}}]} 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":"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":"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":"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":"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":"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"}}]}}]}}]} as unknown as DocumentNode; -export const PrimeHoldersDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"PrimeHolders"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"cursor"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"primeHolders"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"cursor"},"value":{"kind":"Variable","name":{"kind":"Name","value":"cursor"}}}],"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":"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":"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":"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 SearchNftsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"SearchNfts"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filterWashTrading"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"include"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"NftSearchable"}}}}},{"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":"networkFilter"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"search"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"window"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"searchNfts"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filterWashTrading"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filterWashTrading"}}},{"kind":"Argument","name":{"kind":"Name","value":"include"},"value":{"kind":"Variable","name":{"kind":"Name","value":"include"}}},{"kind":"Argument","name":{"kind":"Name","value":"limit"},"value":{"kind":"Variable","name":{"kind":"Name","value":"limit"}}},{"kind":"Argument","name":{"kind":"Name","value":"networkFilter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"networkFilter"}}},{"kind":"Argument","name":{"kind":"Name","value":"search"},"value":{"kind":"Variable","name":{"kind":"Name","value":"search"}}},{"kind":"Argument","name":{"kind":"Name","value":"window"},"value":{"kind":"Variable","name":{"kind":"Name","value":"window"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"hasMore"}},{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"address"}},{"kind":"Field","name":{"kind":"Name","value":"average"}},{"kind":"Field","name":{"kind":"Name","value":"ceiling"}},{"kind":"Field","name":{"kind":"Name","value":"floor"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"imageUrl"}},{"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":"tradeCount"}},{"kind":"Field","name":{"kind":"Name","value":"tradeCountChange"}},{"kind":"Field","name":{"kind":"Name","value":"volume"}},{"kind":"Field","name":{"kind":"Name","value":"volumeChange"}},{"kind":"Field","name":{"kind":"Name","value":"window"}}]}}]}}]}}]} 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":"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":"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":"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"}}]}}]}}]}}]} 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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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 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":"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"}}]}}]}}]} 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; @@ -11441,15 +11416,13 @@ export const TokensDocument = {"kind":"Document","definitions":[{"kind":"Operati 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 WalletNftCollectionAssetsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"WalletNftCollectionAssets"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WalletNftCollectionAssetsInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"walletNftCollectionAssets"},"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":"collectionId"}},{"kind":"Field","name":{"kind":"Name","value":"cursor"}},{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"quantity"}},{"kind":"Field","name":{"kind":"Name","value":"tokenId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"walletAddress"}}]}}]}}]} as unknown as DocumentNode; -export const WalletNftCollectionsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"WalletNftCollections"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"WalletNftCollectionsInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"walletNftCollections"},"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":"collectionId"}},{"kind":"Field","name":{"kind":"Name","value":"quantity"}},{"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":"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":"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":"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 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":"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":"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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 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 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":"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":"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 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":"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":"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":"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 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":"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":"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":"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":"transactions1"}},{"kind":"Field","name":{"kind":"Name","value":"volume1"}}]}}]}}]} as unknown as DocumentNode; @@ -11457,7 +11430,7 @@ export const OnLaunchpadTokenEventBatchDocument = {"kind":"Document","definition 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":"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":"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":"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":"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":"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"}}]}}]}}]} 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":"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":"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":"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":"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":"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 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"}}}],"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"}}}],"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"}}}}}}],"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"}}}],"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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":"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":"liquidity"}},{"kind":"Field","name":{"kind":"Name","value":"o"}},{"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;