Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Possible typos in: Update subgraph-example.md #834

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/api/subgraph/guides/subgraph-example.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ This query returns daily aggregated data for the first 10 days since the given t

### General Swap Data

To query data about a particular swap, input the transaction hash + "#" + the index in the swaps the transaction array.R
To query data about a particular swap, input the transaction hash + "#" + the index in the swaps the transaction array.
This is the reference for the full [swap schema](https://github.com/Uniswap/v3-subgraph/blob/main/schema.graphql#L353).

This query fetches data about the sender, receiver, amounts, transaction data, and timestamp for a particular swap.
Expand Down Expand Up @@ -226,7 +226,7 @@ swaps(orderBy: timestamp, orderDirection: desc, where:

## Token Data

Input the the token contract address to fetch token data. Any token that exists in at least one Uniswap V3 pool can be queried. The output will aggregate data across all v3 pools that include the token.
Input the token contract address to fetch token data. Any token that exists in at least one Uniswap V3 pool can be queried. The output will aggregate data across all v3 pools that include the token.

### General Token Data

Expand Down