v3-subgraph icon indicating copy to clipboard operation
v3-subgraph copied to clipboard

Subgraph for Uniswap V3

Results 111 v3-subgraph issues
Sort by recently updated
recently updated
newest added

Hello, how can I get the data marked by the icon using thegraph? who can help me

volumeUSD queries unable to handle gt case, might be issue with types? Ran the following query ` { pools(where: {totalValueLockedUSD_gt: 1000000000}) { id feeTier token0 { id symbol } token1...

This issue is partially mentioned in https://github.com/Uniswap/v3-subgraph/issues/79 Pool and token volume return 0 even when the volume is clearly not 0. Consider the query: ```graphql { tokenHourDatas(first: 2, orderBy: periodStartUnix,...

I was working on a [new app for Uniswap V3](https://www.metacrypt.org/tools/uniswap-v3-calculator-simulator/) when I discovered that most tokens do not return the correct value for `derivedETH` in the V3 Subgraph. Seems like...

I have noticed that if I do the following query to subgraph I don't get all relevant pools, any idea why? The query is supposed to get all pools that...

When querying priceUSD it seam that the price in the result is X10 the real price ```{ token(id:"0x1f9840a85d5af5bf1d1762f925bdaddc4201f984") { id name tokenDayData(skip:1,first:1) { priceUSD } } } ```

i saw code in ```handleSwap()```: ``` token1DayData.volumeUSD = token1DayData.volumeUSD.plus(amountTotalUSDTracked) token1DayData.untrackedVolumeUSD = token1DayData.untrackedVolumeUSD.plus(amountTotalUSDTracked) ``` i wonder if the second line's parameter should be ```amountTotalUSDUntracked```?

https://github.com/Uniswap/v3-subgraph/blob/bf03f940f17c3d32ee58bd37386f26713cff21e2/schema.graphql#L468 Hello. If I'm not mistaken, this comment is wrong. The truth is the exact opposite of what it says. The value stored in `token1Price` is the price of token0...

There is an old issue that highlights that the close price of poolDayData is the same as open price. It is because the close price is never updated after given...