https://github.com/1hive/honeyswap-subgraph
https://github.com/1hive/honeyswap-subgraph
historical-data honeyswap honeyswap-subgraph
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/1hive/honeyswap-subgraph
- Owner: 1Hive
- License: gpl-3.0
- Created: 2021-05-13T00:58:17.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-05-30T22:32:00.000Z (over 2 years ago)
- Last Synced: 2025-01-07T04:35:49.855Z (9 months ago)
- Topics: historical-data, honeyswap, honeyswap-subgraph
- Language: TypeScript
- Homepage:
- Size: 315 KB
- Stars: 3
- Watchers: 7
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Honeyswap Subgraph
[Honeyswap](https://app.honeyswap.org) is a decentralized protocol for automated token exchange on xDai/Polygon.
This subgraph dynamically tracks any pair created by the honeyswap factory. It tracks of the current state of Honeyswap contracts, and contains derived stats for things like historical data and USD prices.
- aggregated data across pairs and tokens,
- data on individual pairs and tokens,
- data on transactions
- data on liquidity providers
- historical data on Honeyswap, pairs or tokens, aggregated by day## Running Locally
Make sure to update package.json settings to point to your own graph account.
## Queries
Below are a few ways to show how to query the honeyswap-subgraph for data. The queries show most of the information that is queryable, but there are many other filtering options that can be used, just check out the [querying api](https://thegraph.com/docs/graphql-api). These queries can be used locally or in The Graph Explorer playground.
## Key Entity Overviews
#### HoneyswapFactory
Contains data across all of Honeyswap. This entity tracks important things like total liquidity (in ETH and USD, see below), all time volume, transaction count, number of pairs and more.
#### Token
Contains data on a specific token. This token specific data is aggregated across all pairs, and is updated whenever there is a transaction involving that token.
#### Pair
Contains data on a specific pair.
#### Transaction
Every transaction on Honeyswap is stored. Each transaction contains an array of mints, burns, and swaps that occured within it.
#### Mint, Burn, Swap
These contain specifc information about a transaction. Things like which pair triggered the transaction, amounts, sender, recipient, and more. Each is linked to a parent Transaction entity.
## Example Queries
### Querying Aggregated Honeyswap Data
This query fetches aggredated data from all honeyswap pairs and tokens, to give a view into how much activity is happening within the whole protocol.
```graphql
{
honeyswapFactories(first: 1) {
pairCount
totalVolumeUSD
totalLiquidityUSD
}
}
```