v3-subgraph
v3-subgraph copied to clipboard
Subgraph for Uniswap V3
Are there already official deployments of the Uniswap subgraphs on the The Graph decentralized network? Or are the ones deployed by the address [0xddaaed8b88ac0ccfdbfabdceba1c619391760f7f](https://thegraph.com/explorer?chain=arbitrum-one&search=0xddaaed8b88ac0ccfdbfabdceba1c619391760f7f) the official ones?
I am Getting "GraphQlTransport error: 410 Gone from POST https://api.thegraph.com/subgraphs/name/uniswap/uniswap-v3" For any query to the graph.
If we query swaps activity on V3 with this query ``` { swaps(first: 10, skip: 0, orderBy: timestamp, orderDirection: desc) { transaction { id blockNumber gasUsed gasPrice } timestamp token0...
After following the instructions, getting the following error when running the tests: yarn run v1.22.19 $ graph test -d Docker image already exists. Skipping `docker build` command... ___ ___ _...
There's a transaction on Arbitrum (https://arbiscan.io/tx/0x1c295207effcdaa54baa7436068c57448ff8ace855b8d6f3f9c424b4b7603960) that throws the ETH/USDC pricing out of whack. This leads to a total fee number of 1701283934181940406345586170977804000000000000 USD 😂 These seem to be the...
Uniswap graphQL via The Graph is a great way to provide Uniswap data without interacting directly with the contract (with Infura for instance). For some data it's easily consumable without...
{ pools(where:{id:"0x8ad599c3a0ff1de082011efddc58f1908eb6e6d8"}) { token0Price token1Price totalValueLockedToken1 totalValueLockedToken0 totalValueLockedETH token0{name} token1{name} } }  I think token0price must be "0.0004" and token1price must be "2490"
Hey, I was facing this strange issue while querying the Graph on a recurring basis. Just to confirm, are there any hard limits as to how many GraphQL queries can...