Giter Club home page Giter Club logo

hifi-subgraph's Introduction

Hifi Subgraph

Hifi is a fixed-rate, fixed-term lending protocol on Ethereum. This subgraph tracks the Hifi Finance lending protocol data, including positions, tokens, vaults, pools, and swaps.

Prerequisites

  • NVM
  • Yarn package manager

Set Up

  1. Clone the repository:
$ git clone https://github.com/hifi-finance/hifi-subgraph.git
$ cd hifi-subgraph
  1. Set the version of Node to use locally within the project:
$ nvm use
  1. Install the dependencies with Yarn:
$ yarn install

Running Locally

Make sure to update package.json settings to point to your own graph account.

Features

  • Data on positions, tokens, vaults, pools, and swaps
  • Aggregated data across Hifi entities
  • Historical data on Hifi entities

Queries

You can use the following entities to query the Hifi subgraph for data: Position, Token, Hifi, Vault, Pool, and Swap. Check out the querying api for more filtering options. These queries can be used locally or in The Graph Explorer playground.

Key Entity Overviews

Position

Represents a collateral or debt position.

Token

Represents a basic ERC20 token.

Hifi

High-level overview of the Hifi Finance protocol.

Vault

Stores the collaterals deposited by the user, along with the debts.

Pool

Stores the AMM pool reserves, along with the swaps.

Swap

Contains data on specific AMM swaps.

Example Queries

Querying Aggregated Hifi Data

This query fetches aggregated data from all Hifi entities to give a view of the overall activity in the Hifi Finance protocol.

{
  hifi(id: "1") {
    listedBonds {
      id
      name
      symbol
    }
    listedCollaterals {
      id
      name
      symbol
    }
    pools {
      id
      hToken {
        id
        name
        symbol
      }
      underlying {
        id
        name
        symbol
      }
    }
    vaults {
      id
      collaterals {
        id
        amount
        token {
          id
          name
          symbol
        }
      }
      debts {
        id
        amount
        token {
          id
          name
          symbol
        }
      }
    }
  }
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.