Skip to content

alazare619/bsc-mochi-subgraph

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Mar 24, 2021
406ceef · Mar 24, 2021
Apr 23, 2020
Jun 3, 2020
Mar 24, 2021
Mar 24, 2021
Feb 11, 2020
Feb 11, 2020
Feb 11, 2020
Apr 23, 2020
Mar 17, 2021
Mar 24, 2021
Feb 18, 2021
Mar 24, 2021
Feb 21, 2020
Mar 24, 2021

Repository files navigation

PancakeSwap v2 Subgraph

PancakeSwap is a decentralized protocol for automated token exchange on Binance Smart Chain.

This subgraph dynamically tracks any pair created by the uniswap 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 uniswap-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

UniswapFactory

Contains data across all of PancakeSwap v2. This entity tracks important things like total liquidity (in ETH 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.

Transaction

Every transaction on PancakeSwap is stored. Each transaction contains an array of mints, burns, and swaps that occured within it.

Mint, Burn, Swap

These contain specifc information about a transaction. Things like which pair triggered the transaction, amounts, sender, recipient, and more. Each is linked to a parent Transaction entity.

Example Queries

Querying Aggregated PancakeSwap Data

This query fetches aggregated data from all Pancakeswap pairs and tokens, to capture activity throughout the entire protocol.

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published