The Aave Protocol subgraphs index data from the protocol smart contracts, and expose a GraphQL endpoint hosted by The Graph.
- ETH Mainnet V3
- ETH Mainnet V3 GHO
- ETH Mainnet V3 Lido Market
- ETH Mainnet V3 Etherfi Market
- ETH Mainnet V2
- Polygon V2
- Avalanche V2
- Polygon V3
- Avalanche V3
- Arbitrum V3
- Optimism V3
- Fantom V3
- Harmony V3
- Metis V3
- Gnosis V3
- BNB Chain V3
- Base V3
- Scroll V3
- ZKsync V3
- Goerli V2
- Goerli V3
- Mumbai V2
- Mumbai V3
- Fuji V2
- Fuji V3
- Arbitrum Goerli V3
- Optimism Goerli V3
- Fantom Testnet V3
- Aave Governance V3
- Aave Governance V3 Voting Polygon
- Aave Governance V3 Voting Ethereum
- Aave Governance V3 Voting Avalache
- Aave Governance V2
Subgraphs can be queried directly from the graph explorer, or from another application. The following section gives common queries for Aave protocol data.
See TheGraph API docs for a complete guide on querying capabilities.
V2
{
userTransactions(
where: { user: "insert_lowercase_address_here" }
orderBy: timestamp
orderDirection: desc
) {
id
timestamp
txHash
action
... on Deposit {
amount
reserve {
symbol
decimals
}
assetPriceUSD
}
... on RedeemUnderlying {
amount
reserve {
symbol
decimals
}
assetPriceUSD
}
... on Borrow {
amount
borrowRateMode
borrowRate
stableTokenDebt
variableTokenDebt
reserve {
symbol
decimals
}
assetPriceUSD
}
... on UsageAsCollateral {
fromState
toState
reserve {
symbol
}
}
... on Repay {
amount
reserve {
symbol
decimals
}
assetPriceUSD
}
... on Swap {
borrowRateModeFrom
borrowRateModeTo
variableBorrowRate
stableBorrowRate
reserve {
symbol
decimals
}
}
... on LiquidationCall {
collateralAmount
collateralReserve {
symbol
decimals
}
principalAmount
principalReserve {
symbol
decimals
}
collateralAssetPriceUSD
borrowAssetPriceUSD
}
}
}
V3
{
userTransactions(
where: { user: "insert_lowercase_address_here" }
orderBy: timestamp
orderDirection: desc
) {
id
timestamp
txHash
action
... on Supply {
amount
reserve {
symbol
decimals
}
assetPriceUSD
}
... on RedeemUnderlying {
amount
reserve {
symbol
decimals
}
assetPriceUSD
}
... on Borrow {
amount
borrowRateMode
borrowRate
stableTokenDebt
variableTokenDebt
reserve {
symbol
decimals
}
assetPriceUSD
}
... on UsageAsCollateral {
fromState
toState
reserve {
symbol
}
}
... on Repay {
amount
reserve {
symbol
decimals
}
assetPriceUSD
}
... on SwapBorrowRate {
borrowRateModeFrom
borrowRateModeTo
variableBorrowRate
stableBorrowRate
reserve {
symbol
decimals
}
}
... on LiquidationCall {
collateralAmount
collateralReserve {
symbol
decimals
}
principalAmount
principalReserve {
symbol
decimals
}
collateralAssetPriceUSD
borrowAssetPriceUSD
}
}
}
Reserve Data
The reserve
entity gives data on the assets of the protocol including rates, configuration, and total supply/borrow amounts.
The aave-utilities library includes a formatReserves
function which can be used to format all data into a human readable format. The queries to fetch data for passing into this function can be found here.
Why does the raw subgraph data not match app.aave.com?
- aToken and debtToken balances are continuously increasing. The subgraph provides a snapshot of the balance at the time of indexing (not querying), which means fields affected by interest such as
totalLiquidity
,availableLiquidity
, andtotalCurrentVariableDebt
will need to be formatted to get real-time values - All rates (liquidityRate, variableBorrowRate, stableBorrowRate) are expressed as APR with RAY units (10**27). To convert to the APY percentage as shown on the Aave frontend:
supplyAPY = (((1 + ((liquidityRate / 10**27) / 31536000)) ^ 31536000) - 1) \* 100
.formatReserves
will perform this calculation for you.
User Data
The userReserve
entity gives the supply and borrow balances for a particular user along with the underlying reserve data.
The aave-utilities library includes a formatUserSummary
function which can be used to format all data into a human readable format. The queries to fetch data for passing into this function can be found here.
Why does the raw subgraph data not match my account balances on app.aave.com?
- aToken and debtToken balances are continuously increasing. The subgraph provides a snapshot of the balance at the time of indexing (not querying), which means fields affected by interest such as
currentATokenBalance
,currentVariableDebt
, andcurrentStableDebt
will need to be formatted to get the real-time values
Querying Tips
You can query for historical data by specifying a block number:
{
reserves(block: {number: 14568297}){
symbol
liquidityRate
}
}
To query based on a historical timestamp, you will need to convert the timstamp to the most recent block number, you will need to use an external tool such as this.
The Graph places a limit on the number of items which can returned by a single query (currently 100). To fetch a larger number of items, the first
and skip
parameters can be used to create paginated queries.
For example, if you wanted to fetch the first 200 transactions for an Aave market, you can't query 200 items at once, but you can achieve the same thing by concatenating the output of these queries:
{
userTransactions(orderBy: timestamp, orderDirection: asc, first: 100, skip: 0){
timestamp
}
}
{
userTransactions(orderBy: timestamp, orderDirection: asc, first: 100, skip: 100){
timestamp
}
}
# copy env and adjust its content with your personal access token and subgraph name
# you can get an access token from https://thegraph.com/explorer/dashboard
cp .env.test .env
# install project dependencies
npm i
# to regenrate types if schema.graphql has changed
npm run subgraph:codegen
# to run a test build of your subgraph
npm run subgraph:build
# now you're able to deploy to thegraph hosted service with one of the deploy commands:
npm run deploy:hosted:mainnet
If a subgraph encounters an error while indexing, the logs on the explorer may not display the error. You can check for errors on a pending or synced subgraph with the following commands, replacing aave/protocol-v2
with your subgraph name:
Pending:
curl --location --request POST 'https://api.thegraph.com/index-node/graphql' --data-raw '{"query":"{ indexingStatusForPendingVersion(subgraphName: \"aave/protocol-v2\") { subgraph fatalError { message } nonFatalErrors {message } } }"}'
Synced:
curl --location --request POST 'https://api.thegraph.com/index-node/graphql' --data-raw '{"query":"{ indexingStatusForCurrentVersion(subgraphName: \"aave/protocol-v2\") { subgraph fatalError { message } nonFatalErrors {message } } }"}'