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

Subgraph for Uniswap V3

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

Hi there, We are experiencing an overflow error across multiple chains. Here's an example for ethereum: ``` transaction 83f11ad653a9cdee52e54db2365947c61dd054af250f7fcf52240967eea4095a: Mapping aborted at ~lib/@graphprotocol/graph-ts/common/collections.ts, line 150, column 9, with message: overflow...

Utilizing the recently updated arbitrum codebase, changes out the network and constants to support blast-mainnet

This isn't so much of an issue as it is a request or an ask for help. I'm attempting to query data on Sepolia - does this exist? I would...

**Input:** { factories(first: 5) { id poolCount txCount totalVolumeUSD } bundles(first: 5) { id ethPriceUSD } } **output:** { "errors": [ { "message": "indexing_error" } ] }

In the [playground](https://thegraph.com/hosted-service/subgraph/kalinbas/uniswap-v3-optimism) Just use example query ```graphql { factories(first: 5) { id poolCount txCount totalVolumeUSD } bundles(first: 5) { id ethPriceUSD } } ``` and got ```json { "errors":...

This PR fixes untrackedVolumeUSD fields in Token1HourData and Token1DayData by replacing trackedAmountUsd by untrackedAmountUsd in the swap handler.

I want to get info about token: ``` { token(id:"0xfef2bf3f07a78a21f1d10ac0c39f286490092508") { totalValueLockedUSD symbol } } ``` But response is null: ``` { "data": { "token": null } } ``` How...

When i try to do a simple query on tickHourDatas it returns an empty array: { tickHourDatas(first:5) { id } } Result: { "data": { "tickHourDatas": [] } } This...

Hello, It appears there's a bug in the tick section of **_handleSwap_** that result in ticks (and tickDayDatas) not getting updated when they should, causing a mismatch between subgraph and...