Part of [Generate watchers for sushiswap subgraphs deployed in graph-node](https://www.notion.so/Generate-watchers-for-sushiswap-subgraphs-deployed-in-graph-node-b3f2e475373d4ab1887d9f8720bd5ae6) Reviewed-on: cerc-io/sushiswap-watcher-ts#2 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
27 lines
584 B
GraphQL
27 lines
584 B
GraphQL
query tokenDayData($id: ID!, $block: Block_height){
|
|
tokenDayData(id: $id, block: $block){
|
|
id
|
|
date
|
|
token{
|
|
id
|
|
symbol
|
|
name
|
|
decimals
|
|
totalSupply
|
|
tradeVolume
|
|
tradeVolumeUSD
|
|
untrackedVolumeUSD
|
|
txCount
|
|
totalLiquidity
|
|
derivedETH
|
|
}
|
|
dailyVolumeToken
|
|
dailyVolumeETH
|
|
dailyVolumeUSD
|
|
dailyTxns
|
|
totalLiquidityToken
|
|
totalLiquidityETH
|
|
totalLiquidityUSD
|
|
priceUSD
|
|
}
|
|
} |