Querying Honeyswap
Example
This query fetches aggredated data from all honeyswap pairs and tokens, to give a view into how much activity is happening within the whole protocol
{
honeyswapFactories(first: 1) {
pairCount
totalVolumeUSD
totalLiquidityUSD
}
}Returns
{
"data": {
"honeyswapFactories": [
{
"pairCount": 1929,
"totalVolumeUSD": "423698337.853415549849554234184245",
"totalLiquidityUSD": "11432873.66895439928443725337007973"
}
]
}
}This query fetches aggredated data and returns the first 5 factories and tokens associated
Result
Last updated
Was this helpful?