Skip to content

Latest commit

 

History

History
50 lines (42 loc) · 544 Bytes

README.md

File metadata and controls

50 lines (42 loc) · 544 Bytes

Envio Uniswap V3 Indexer

Note

Tokens in this indexer doesn't have the totalSupply field as it cannot be updated correctly

Queries for pool listing

Envio

query PoolQuery {
  Pool {
    id
    token0 {
      id
      name
      decimals
    }
    token1 {
      id
      name
      decimals
    }
    createdAtBlockNumber
  }
}

Subgraph

{
  pools {
    token0 {
      id
      name
      decimals
    }
    id
    token1 {
      id
      name
      decimals
    }
    createdAtBlockNumber
  }
}