v3-subgraph
v3-subgraph copied to clipboard
Fees and volume always 0 for PoolHourDatas
When I query daily data, I get the correct fees/volume but hourly always returns 0. Here's an example but I looked at all active pools and every one showed the issue for me. Here is my query and response:
Am I doing something wrong or is this a bug? Or just misunderstanding and this is correct data?
Having the same issue, this doesn't happen for poolDayData
though.
It was fixed in Polygon, but still not working in mainnet?
https://thegraph.com/hosted-service/subgraph/ianlapham/uniswap-v3-subgraph
{
poolHourDatas(first: 3,
where: {
pool: "0xc0fbed3cbbf272e0649ddfefdec99f4eba7eca22",
}
){
pool{
token0{symbol}
token1{symbol}
}
volumeUSD
feesUSD
}
}
If poolHourDatas
is replaced by poolDayDatas
, it works as intended.
+1
+1
Same here, PoolHourDatas keeps returning 0 for feesUSD and volumeUSD
+1
+1
+1