Developer Docs

GHO is for builders
Quick Links
- Deployed GHO Contracts
- GHO Contract Source Code
- Deployed Aave Protocol Contracts >
- Aave V3 Contract Source Code
- GHO JavaScript SDK
- Solidity and JavaScript Address Registry >
- GHO Subgraph Ethereum Mainnet
Learn GHO
GHO is an ERC20 token minted from contracts designated as Facilitators. It has been proposed to the Aave community that the Aave V3 Ethereum Pool and FlashMinter Facilitator will be the first Facilitators of GHO.
The Aave Pool facilitator will facilitate the minting and burning of GHO through the standard borrow
and repay
function which are utilizaed by all other Aave reserves. The flashminter facilitator will provide flashloan functionality to GHO which is not available by default.
A Facilitator can trustlessly mint and burn GHO tokens through various strategies. The Aave DAO assigns each Facilitator a Bucket with a specified Capacity, which is the upward limit of GHO that a specific Facilitator can mint. This limit is defined and can be changed by the Aave DAO.
Aave V3 Ethereum Pool Facilitator
Interacting with GHO via the Aave Pool Facilitator is very similar to interacting with a typical reserve asset. Below are the technical guides for all GHO actions along with their contract references.
Minting
Minting occurs through the borrow()
function of the Pool where GHO is listed. To mint GHO, the process is identical to borrowing any other reserve. To mint, an address must have sufficient collateral which is performed by approving and then calling supply()
on the Aave Pool with an eligible collateral asset. Once an address has sufficient collateral, it is able to borrow up to a maximum collateral factor determined by it's collateral asset composition.
GHO can be added to an eMode category, which modifies the collateral factor and liquidation threshold. This can be queried with the following fields from the integrating GHO section.
reserve.eModeCategoryId
: id of eMode category reserve belongs to
user.userEModeCategoryId
: user's active eMode category
Since GHO is created and not borrowed from suppliers, GHO is not subject to restrictions on available liquidity, and instead, the Facilitator cap and collateralization requirements define the limits to which GHO can be minted as calculated below.
availableFacilitatorCap = ghoReserveData.aaveFacilitatorButcketMaxCapacity - ghoReserveData.aaveFacilitatorBucketLevel
See core functions for GHO borrowing integrations.
Repay
GHO is repaid just like any other asset, by approving the Pool contract to spend GHO tokens (by approval transaction or signed permit and repayWithPermit
).
What is different about GHO is the calculation of accrued interest. See the discount dynamics section for more info on how accrued interest affects balances for repayment.
See core functions for GHO repay integrations.
Liquidation
When an address has a GHO borrow position, they are eligible to be liquidated under the same conditions as any other collateralized address. If the health factor of a GHO borrow falls below one, which occurs when the sum of borrow value exceeds the weighted average of liquidation thresholds of collateral assets, then any address is eligible to make a liquidationCall
on the Pool contract.
The liquidationCall
repays up to 100% of the GHO borrow position in exchange for an equivalent USD valuation of the collateral plus a liquidation bonus.
See the developers liquidation guide for more information.
FlashMinter Facilitator
Since GHO is not borrowed like a typical Aave reserve, a separate Facilitator is used in place to replicate the flashloan
functionality of the Aave Pool.
The FlashMinter Facilitator has a separate minting cap from the Aave Pool. Since all FlashMint transactions are returned in a single transaction, no GHO is ever minted against this Facilitator and the cap is applied to each transaction.
FlashMint is useful for a variety of applications such as liquidations, debt swaps, and peg arbitrage. More details on this Facilitator can be found here.
Discount Dynamics
The discount rate strategy contract defines the parameters of a user's discount. The strategy can be updated by governance and the key parameters are a maximum discount percent (such as 20%), a discount token (such as stkAAVE), and an amount of gho borrowed at a discounted percent per discount token owned (such as 100 GHO per 1 stkAAVE).
The discount is not applied continuously as a GHO borrower accrues interest. Interest is compounded at the base borrow rate and the discount is applied when the borrow balance is queried by calling balanceOf
directly or from an internal call such as repay
or liquidate
.
Integrate GHO
GHO is operated on the public blockchain making it accessible to plug into any type of application.
The ability of an application to interact with the data and functionality of GHO is limited only by the connection to access the public blockchain.
Any Ethereum address can access the full functionality of GHO, and the real-time status and complete historical record of GHO transactions can be verified by anyone at any time.
This guide explains the best practices for integrating GHO into a variety of common application types.
- Types of Integrations
- GHO SDK
- a. setup
- b. borrow
- c. repay
- d. FlashMint
- e. Interface Live Data
- Data
- a. Live Data
- b. Historical Data
Types of Integrations
GHO can be integrated into virtually any application because all data and functionality occur through a public blockchain. This guide will give a tutorial on best practices for the most common categories of integration types
Smart Contracts
Check out the deployed GHO contracts to get started with contract integrations.
Frontend
Aave Utilities is a JavaScript SDK that can be used to greatly simplify the process of integrating GHO data and functionality.
It provides imports for fetching data, formatting data, and building transactions. Tutorials with sample code for utilizaing this SDK can be found here
Data Analytics
The current state of GHO, and the complete historical record data are accessible to any application with blockchain querying capabilities. The contract addresses and ABIs for GHO contracts are available in the contract docs.
The data section goes into detail about integrating the most common live and historical data queries for JavaScript and Python applications.
GHO SDK
setup
The Aave Utilities Javascript SDK is a utilty for fetching data and building transactions. Since GHO is under active development, it is not available in the main package versions. GHO versions are published from this branch and the current version in use on the GHO testnet app are listed below:
npm install @aave/math-utils@1.21.1
npm install @aave/contract-helpers@1.21.1
or
yarn add @aave/math-utils@1.21.1
yarn add @aave/contract-helpers@1.21.1
borrow
GHO is minted through the borrow
method of the Aave Pool facilitator which can be accessed from the Pool
import of the contract-helpers package. The pre-requisite to borrow
is that the address incurring the borrow position must have sufficient collateral. This is achieved by the caller supplying collateral or if the caller has been approved a credit delegation and passes in the delegators address in the onBehalfOf
field.
Sample Code (JavaScript)
repay
Repay also occurs seamlessly through the repay
function of the Aave V3 Pool contract. Since repay transfers assets, the Pool must be approved as a spender of the tokens. There are two routes for approval:
- Approve via txn -> repay
- Approve via signed message -> repayWithPermit
There are instructions for both routes below:
Repay Sample Code (JavaScript)
RepayWithPermit Sample Code (JavaScript)
flashmint
Coming soon to GHO SDK. In the meantime, can be accessed by following the contracts documentation.
Interface Live Data
There are several view contracts used to provide a summarized data source for market, incentives, and gho data. The utilities SDK exposes helper methods to fetch and format data from these contracts. To setup these packages see the setup section.
Sample Code (JavaScript)
Data
All facilitator transactions occur through smart contracts, so querying the real-time state of facilitator and market data is possible through contract queries. The following guides will give sample code fetch live and historical data for GHO directly from contract queries and events.
Live Data
To query live data for GHO, there are several view contracts which can give summarized information of markets, incentives, and gho data respectively:
- UiPoolDataProvider: Queries for all market and user data
- UiIncentiveDataProvider: QUeries for all available and user claimable incentives
- UiGhoDataProvider: Queries for Aave Pool facilitator and user discount
A complete example of fetching and formatting data from these contracts can be found in the GHO SDK live data section. These steps could also be adapted for other languages or use cases.
Historical Data
Transactions of the GHO facilitator are queryable through events on the GHO contracts, and through other indexed data sources.
Shown below are 3 methods for generalized event queries using subgraphs, RPCs, and the Etherscan API which can all be used with the GHO deployed contracts to index historical data for GHO integrations.