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

this function https://github.com/Uniswap/v3-subgraph/blob/1394f592aa84970ab5c4e30e2f7d0b5a02c57b89/src/utils/pricing.ts#L139 seems to be improperly setting the amountUSD on some transactions e.g. ``` query swaps { token0: token( id: "0xaf88d065e77c8cc2239327c5edb3a432268e5831" block: {number: 242204912} ) { derivedETH decimals name...

This PR adds tracking for the LP positions, this is available on the published UniswapV3 subgraph at https://thegraph.com/explorer/subgraphs/5zvR82QoaXYFyDEKLZ9t6v9adgnptxYpKpSbxtgVENFV?view=Query&chain=arbitrum-one but is missing from this repository making it confusing for developers that...

I'm using js code from [link](https://gist.github.com/BlockmanCodes/f02057b84a15617a99c2e8be548b42ef), with ethers package. I'm trying to connect to 'https://api.thegraph.com/subgraphs/name/uniswap/uniswap-v3' with ``` const provider = new ethers.InfuraProvider(null, infura_api_key) const URL = 'https://api.thegraph.com/subgraphs/name/uniswap/uniswap-v3' const factoryQuery =...

I have replicated the logic for swaps, mints, burns and collects from this repo but instead using a full node, with fully ordered event logs Txindex > logIndex, and at...

The poolCount variable returns value 0 for all tokens. I have provided an example query below to show this. ``` query Test { tokens(orderBy: txCount, orderDirection: desc) { poolCount name...