CenturionDEX
Launch App

v3 Protocol Query Examples

Last modified:

Subgraph Query Examples

This doc will teach you how to query Centurion v3 analytics by writing GraphQL queries on the subgraph. You can fetch data points like :

and much more. Below are some example queries. To run a query copy and paste it into the v3 explorer to get fresh data.

Global Data

Global data refers to data points about the Centurion v3 protocol as a whole. Some examples of global data points are:

Thus, to query global data you must pass in the Centurion v3 Factory address 0x1F98431c8aD98523631AE4a59f267346ea31F984 and select the desired fields. Reference the full factory schema to see all possible fields.

Current Global Data

An example querying total pool count, transaction count, and total volume in USD and ETH:

{
  factory(id: "0x1F98431c8aD98523631AE4a59f267346ea31F984" ) {
    poolCount
    txCount
    totalVolumeUSD
    totalVolumeETH
  }
}

Historical Global Data

You can also query historical data by specifying a block number.

{
  factory(
    id: "0x1F98431c8aD98523631AE4a59f267346ea31F984", 
    block: { 
      number: 13380584 
    }
  ) {
    poolCount
    txCount
    totalVolumeUSD
    totalVolumeETH
  }
}

Pool Data

To get data about a certain pool, pass in the pool address. Reference the full pool schema and adjust the query fields to retrieve the data points you want.

General Pool Query

The query below returns the feeTier, spot price, and liquidity for the ETH-USDC pool.

{
  pool(id: "0x8ad599c3a0ff1de082011efddc58f1908eb6e6d8") {
    tick
    token0 {
      symbol
      id
      decimals
    }
    token1 {
      symbol
      id
      decimals
    }
    feeTier
    sqrtPrice
    liquidity
  }
}

All Possible Pools

The maximum items you can query at once is 1000. Thus to get all possible pools, you can iterate using the skip variable. To get pools beyond the first 1000 you can also set the skip as shown below.

Skipping First 1000 Pools

This query sets the skip value and returns the first 10 responses after the first 1000.

{
  pools(first:10, skip:1000) {
    id
    token0 {
      id
      symbol
    }
    token1 {
      id
      symbol
    }
  }
}

Creating a Skip Variable

This next query sets a skip variable. In your language and environment of choice you can then iterate through a loop, query to get 1000 pools each time, and continually adjust skip by 1000 until all pool responses are returned.

Check out this example from our interface for poolDayData that does something similar.

Note This query will not work in the graph explorer and more resembles the structure of a query you'd pass to some GraphQL middleware like Apollo.

query pools($skip: Int!) {
  pools(
    first: 1000, 
    skip: $skip, 
    orderDirection: asc
  ) {
    id
    sqrtPrice
    token0 {
      id
    }
    token1 {
      id
    }
  }
}

Most Liquid Pools

Retrieve the top 1000 most liquid pools. You can use this similar set up to orderBy other variables like number of swaps or volume.

{
  pools(
    first: 1000, 
    orderBy: liquidity, 
    orderDirection: desc
  ) {
    id
  }
}

Pool Daily Aggregated

This query returns daily aggregated data for the first 10 days since the given timestamp for a sample pool.

{
  poolDayDatas(
    first: 10, 
    orderBy: date, 
    where: {
      pool: "0x1d42064fc4beb5f8aaf85f4617ae8b3b5b8bd801", 
      date_gt: 1633642435
    }
  ) {
    date
    liquidity
    sqrtPrice
    token0Price
    token1Price
    volumeToken0
    volumeToken1
  }
}

Swap Data

General Swap Data

To query data about a particular swap, input the transaction hash + "#" + the index in the swaps the transaction array. This is the reference for the full swap schema.

This query fetches data about the sender, receiver, amounts, transaction data, and timestamp for a particular swap.

{
  swap(id: "0x000007e1111cbd97f74cfc6eea2879a5b02020f26960ac06f4af0f9395372b64#66785") {
    sender
    recipient
    amount0
    amount1
    transaction {
      id
      blockNumber
      gasUsed
      gasPrice
    }
    timestamp
    token0 {
      id
      symbol
    }
    token1 {
      id
      symbol
    }
  }
}

Recent Swaps Within a Pool

You can set the where field to filter swap data by pool address. This example fetches data about multiple swaps for the USDC-USDT pool, ordered by timestamp.

{
  swaps(
    orderBy: timestamp, 
    orderDirection: desc, 
    where: { 
      pool: "0x7858e59e0c01ea06df3af3d20ac7b0003275d4bf" 
    }
  ) {
    pool {
      token0 {
        id
        symbol
      }
      token1 {
        id
        symbol
      }
    }
    sender
    recipient
    amount0
    amount1
  }
}
 

Token Data

Input the token contract address to fetch token data. Any token that exists in at least one Centurion v3 pool can be queried. The output will aggregate data across all v3 pools that include the token.

General Token Data

This queries the decimals, symbol, name, pool count, and volume in USD for a sample token. Reference the full token schema for all possible fields you can query.

{
  token(id:"0x1f9840a85d5af5bf1d1762f925bdaddc4201f984") {
    symbol
    name
    decimals
    volumeUSD
    poolCount
  }
}

Token Daily Aggregated

You can fetch aggregate data about a specific token over a 24-hour period. This query gets 10 days of 24-hour volume data for the same token address, ordered from oldest to newest.

{
  tokenDayDatas(
    first: 10, 
    where: {
      token: "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984"
    }, 
    orderBy: date, 
    orderDirection: asc
  ) {
    date
    token {
      id
      symbol
    }
    volumeUSD
  }
}

All Tokens

Similar to retrieving all pools, you can fetch all tokens by using skip.

Note This query will not work in the graph explorer and more resembles the structure of a query you'd pass to some GraphQL middleware like Apollo.

query tokens($skip: Int!) {
  tokens(first: 1000, skip: $skip) {
    id
    symbol
    name
  }
}

Position Data

General Position Data

To get data about a specific position, input the NFT tokenId. This queries the collected fees for token0 and token1 and current liquidity for the position with tokenId 3. Reference the full position schema to see all fields.

{
  position(id: 3) {
    id
    collectedFeesToken0
    collectedFeesToken1
    liquidity
    token0 {
      id
      symbol
    }
    token1
    {
      id
      symbol
    }
  }
}

Contribute

There are many more queries you can do with the Centurion v3 subgraph including data related to ticks, mints, positions, and burns. Once again you can reference the full schema here. If you'd like to suggest more example queries to showcase, feel free to drop some suggestions in discord under #dev-chat or contribute your own queries by submitting a pull request to the docs repo.