Bitbyte
  • 👏Bitbyte Intro
    • How it works
    • How to participate
  • Overview
    • 🔁Trade
    • *️Liquidity
    • 💰Receive
    • 🎁Airdrop
    • ⚒️Farm
    • ✅IDO
    • 🖼️NFT Rankings
    • 📢Derivatives
      • 📗Cast blind box
      • 📘Cast Bond
      • 🏅Staking NFTs
      • 🎖️Pledge Bond
    • 💡Guide
      • IDO Project
      • Adding liquidity
      • New Mining Pool
      • New Drop Pools
      • Invitation reward
      • Import Tokens
    • 🌏DAO
    • ⛽Fees
  • Document
    • 🎬Bitbyte Lightpaper
    • 💼Legal Entity
    • 📃Sooho's Audit Report on Bitbyte
    • 📃CertiK's audit report on Bitbyte
  • DEVELOPERS
    • 🌐API
      • Entities
      • Overview
      • Queries
  • Socials
    • Website
    • Telegram
    • Twitter
    • Facebook
    • Medium
    • Discord
Powered by GitBook
On this page
  1. DEVELOPERS
  2. API

Queries

---
id: queries
title: Queries
tags: api, documentation
---

The subgraph can be queried to retrieve important information about Bitbyte, pairs, tokens, transactions, users, and more. This page will provide examples for common queries.

### Global Data

To query global data you can pass in the Bitbyte Factory address and select from available fields.

#### Global Stats

All time volume in USD, total liquidity in USD, all time transaction count.

```
{
 uniswapFactory(id: "0x49CDaFf8F36d3021Ff6bC4F480682752C80e0F28"){
   totalVolumeUSD
   totalLiquidityUSD
   txCount
 }
}
```

#### Global Historical lookup

To get a snapshot of past state, use The Graph's block query feature and query at a previous block. See this post to get more information about [fetching block numbers from timestamps](https://blocklytics.org/blog/ethereum-blocks-subgraph-made-for-time-travel/). This can be used to calculate things like 24hr volume.

```
{
 uniswapFactory(id: "0x49CDaFf8F36d3021Ff6bC4F480682752C80e0F28", block: {number: 14492922}){
   totalVolumeUSD
   totalLiquidityUSD
   txCount
 }
}
```

### Pair Data

#### Pair Overview

Fetch a snapshot of the current state of the pair with common values. This example fetches the ZBC/USDT pair.

```
{
 pair(id: "0xec3cd47382A95aD30E0C618a926Cf51D20f16B84"){
     token0 {
       id
       symbol
       name
       derivedETH
     }
     token1 {
       id
       symbol
       name
       derivedETH
     }
     reserve0
     reserve1
     reserveUSD
     trackedReserveETH
     token0Price
     token1Price
     volumeUSD
     txCount
 }
}
```

#### All pairs in Bitbyte

The Graph limits entity return amounts to 1000 per query as of now. To get all pairs on Bitbyte use a loop and graphql skip query to fetch multiple chunks of 1000 pairs. The query would look like this (where skip is some incrementing variable passed into your query).

```
{
 query pairs($skip: Int!) {
   pairs(first: 1000, skip: $skip) {
     id
   }
 }
}
```

#### Most liquid pairs

Order by liquidity to get the most liquid pairs in Bitbyte.

```
{
 pairs(first: 1000, orderBy: reserveUSD, orderDirection: desc) {
   id
 }
}
```

#### Recent Swaps within a Pair

Get the last 100 swaps on a pair by fetching Swap events and passing in the pair address. You'll often want token information as well.

```
{
swaps(orderBy: timestamp, orderDirection: desc, where:
 { pair: "0xec3cd47382A95aD30E0C618a926Cf51D20f16B84" }
) {
     pair {
       token0 {
         symbol
       }
       token1 {
         symbol
       }
     }
     amount0In
     amount0Out
     amount1In
     amount1Out
     amountUSD
     to
 }
}
```

#### Pair Daily Aggregated

Day data is useful for building charts and historical views around entities. To get stats about a pair in daily buckets query for day entities bounded by timestamps. This query gets the first 100 days after the given unix timestamp on the DAI/WETH pair.

```
{
 pairDayDatas(first: 100, orderBy: date, orderDirection: asc,
   where: {
     pairAddress: "0xec3cd47382A95aD30E0C618a926Cf51D20f16B84",
     date_gt: 1642570229
   }
 ) {
     date
     dailyVolumeToken0
     dailyVolumeToken1
     dailyVolumeUSD
     reserveUSD
 }
}
```

### Token Data

Token data can be fetched using the token contract address as an ID. Token data is aggregated across all pairs the token is included in. Any token that is included in some pair in Bitbyte can be queried.

#### Token Overview

Get a snapshot of the current stats on a token in Bitbyte. This query fetches current stats on DAI.
The allPairs field gets the first 200 pairs DAI is included in sorted by liquidity in derived USD.

```
{
 token(id: "0x67Fa70a0B61c8390D0BE5c7370BFbC6126412F01"){
   name
   symbol
   decimals
   derivedETH
   tradeVolumeUSD
   totalLiquidity
 }
}
```

#### All Tokens in Bitbyte

Similar to fetching all pairs (see above), you can query all tokens in Bitbyte. Because The Graph service limits return size to 1000 entities use graphql skip query. (Note this query will not work in the graph sandbox and more resembles the structure of a query you'd pass to some graphql middleware like [Apollo](https://www.apollographql.com/)).

```
{
 query tokens($skip: Int!) {
   tokens(first: 1000, skip: $skip) {
     id
     name
     symbol
   }
 }
}
```

#### Token Transactions

To get transactions that include a token you'll need to first fetch an array of pairs that the token is included in (this can be done with the allPairs field on the Token entity.) Once you have an array of pairs the token is included in, filter on that in the transaction lookup.

This query fetches the latest 30 mints, swaps, and burns involving DAI. The allPairs array could look something like this where we include the ZBC/USDT pair address and the ZBC/ZOOR pair address.

```
allPairs = [
 "0xec3cd47382a95ad30e0c618a926cf51d20f16b84",
 "0xbdf34ddd187813da3d0fc4a3428847ba1a230561"
]
```

```
query($allPairs: [String!]) {
 mints(first: 30, where: { pair_in: $allPairs }, orderBy: timestamp, orderDirection: desc) {
   transaction {
     id
     timestamp
   }
   to
   liquidity
   amount0
   amount1
   amountUSD
 }
 burns(first: 30, where: { pair_in: $allPairs }, orderBy: timestamp, orderDirection: desc) {
   transaction {
     id
     timestamp
   }
   to
   liquidity
   amount0
   amount1
   amountUSD
 }
 swaps(first: 30, where: { pair_in: $allPairs }, orderBy: timestamp, orderDirection: desc) {
   transaction {
     id
     timestamp
   }
   amount0In
   amount0Out
   amount1In
   amount1Out
   amountUSD
   to
 }
}
```

#### Token Daily Aggregated

Like pair and global daily lookups, tokens have daily entities that can be queries as well. This query gets daily information for DAI. Note that you may want to sort in ascending order to receive your days from oldest to most recent in the return array.

```
{
 tokenDayDatas(orderBy: date, orderDirection: asc,
  where: {
    token: "0x67fa70a0b61c8390d0be5c7370bfbc6126412f01"
  }
 ) {
    id
    date
    priceUSD
    totalLiquidityToken
    totalLiquidityUSD
    totalLiquidityETH
    dailyVolumeETH
    dailyVolumeToken
    dailyVolumeUSD
 }
}
```
PreviousOverview

Last updated 3 years ago

🌐