Important considerations
Important considerations
const adapter = {
adapter: {
...,
fetch: async ({ endTimestamp }) => {
const { dailyVolume } = await querySubgraph(volumeQuery, endTimestamp)
const { dailyFees } = await querySubgraph(feesQuery, endTimestamp)
return {
dailyVolume, // dimension for dexs dashboard
dailyFees, // dimension for fees dashboard
}
}
...,
}
}Last updated
Was this helpful?