/Pancakeswap-V2-Simple-Subgraph

Primary LanguageTypeScriptGNU General Public License v3.0GPL-3.0

Pancakeswap V2 Simple Subgraph

Pancakeswap is a decentralized protocol for automated token exchange on BSC.

This subgraph dynamically tracks any pair created by the pancakeswap factory. It tracks of the current state of Pancakeswap contracts, and contains derived stats for things like historical data and USD prices.

  • aggregated data across pairs and tokens,
  • data on individual pairs and tokens,
  • data on transactions
  • data on liquidity providers
  • historical data on Pancakeswap, pairs or tokens, aggregated by day

Running Locally

Make sure to update package.json settings to point to your own graph account.

Queries

Below are a few ways to show how to query the pancakeswap-subgraph for data. The queries show most of the information that is queryable, but there are many other filtering options that can be used, just check out the querying api. These queries can be used locally or in The Graph Explorer playground.

Key Entity Overviews

PancakeswapFactory

Contains data across all of Pancakeswap V2. This entity tracks important things like total liquidity (in BNB and USD, see below), all time volume, transaction count, number of pairs and more.

Token

Contains data on a specific token. This token specific data is aggregated across all pairs, and is updated whenever there is a transaction involving that token.

Pair

Contains data on a specific pair.

Querying Aggregated Pancakeswap Data

This query fetches aggredated data from all pancakeswap pairs and tokens, to give a view into how much activity is happening within the whole protocol.

{
  pancakeswapFactories(first: 1) {
    pairCount
    totalVolumeUSD
    totalLiquidityUSD
  }
}