Complus Network is a multichain decentralized protocol for automated token exchange on Avalanche C-Chain, Binance Smart Chain and Huobi ECO Chain.
This subgraph dynamically tracks any pair created by the Complus factory. It tracks of the current state of Complus contracts, and contains derived stats for things like historical data.
- aggregated data across pairs and tokens,
- data on individual pairs and tokens,
- data on transactions
- data on liquidity providers
- historical data on Complus, pairs or tokens, aggregated by day
Make sure to update package.json settings to point to your own graph account.
Below are a few ways to show how to query the Complus 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.
Contains data across all of Complus. This entity tracks important things like total liquidity, all time volume, transaction count, number of pairs and more.
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.
Contains data on a specific pair.
Every transaction on Complus is stored. Each transaction contains an array of mints, burns, and swaps that occured within it.
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.
This query fetches aggredated data from all Complus pairs and tokens, to give a view into how much activity is happening within the whole protocol.
{
complusFactories(first: 10) {
pairCount
totalVolumeUSD
totalLiquidityUSD
}
}