diff --git a/src/docs/metrics/gho-savings/index.md b/src/docs/metrics/gho-savings/index.md new file mode 100644 index 00000000..e45970ec --- /dev/null +++ b/src/docs/metrics/gho-savings/index.md @@ -0,0 +1,87 @@ +--- +title: GHO Savings +author: Filip +date: 2025-10-01 +description: GHO Savings Metrics +--- + +## Description +GHO Savings is a feature within the Aave Protocol that allows users to deposit the GHO +stablecoin to earn a passive yield through the GHO Savings Rate (GSR). When users deposit +GHO into the savings contract, they receive sGHO tokens, which represent their deposit +and continuously accrue interest at the current GSR. This mechanism encourages long-term +GHO holding, enhances liquidity stability, and provides users with a low-risk way to earn +yield directly within the Aave ecosystem. + +Sky Savings metrics: +* `gho_savings_deposits` - Amount of GHO deposited into the savings contract +* `gho_savings_withdrawals` - Amount of GHO withdrawn from the savings contract +* `gho_savings_total_supplied` - Total supply of GHO in the savings contract + +--- + +## Access + +[Restricted Access](/metrics/details/access#restricted-access) + +--- + +## Measuring Unit + +Amount of GHO + +--- + +## Data Type + +[Timeseries Data](/metrics/details/data-type#timeseries-data) + +--- + +## Frequency + +[Daily Intervals](/metrics/details/frequency#daily-frequency) + +--- + +## Latency + +[On-Chain Latency](/metrics/details/latency#on-chain-latency) + +--- + +## Available Assets + +Available for `gho` + +--- + +### SanAPI + +Deposit and withdraw metrics: `gho_savings_deposits` and `gho_savings_withdrawals` + +```graphql-explorer +{ + getMetric(metric: "gho_savings_deposits"){ + timeseriesDataJson( + slug: "gho" + from: "2025-10-01T00:00:00Z" + to: "2025-10-07T00:00:00Z" + interval: "1d") + } +} +``` + +Total supplied metric: `gho_savings_total_supplied` + +```graphql-explorer +{ + getMetric(metric: "gho_savings_total_supplied"){ + timeseriesDataJson( + slug: "gho" + from: "2025-10-01T00:00:00Z" + to: "2025-10-07T00:00:00Z" + interval: "1d") + } +} +``` diff --git a/src/docs/metrics/index.md b/src/docs/metrics/index.md index 4a6536d4..a9572289 100644 --- a/src/docs/metrics/index.md +++ b/src/docs/metrics/index.md @@ -121,6 +121,7 @@ channels, plus custom sentiment measurements analyzing crowd behavior. - [ETH 2.0](/metrics/eth-2) - [Ethena Protocol](/metrics/ethena-protocol) - [Exchange Funds Flow](/metrics/exchange-funds-flow) +- [GHO Savings](/metrics/gho-savings) - [Labeled Balance](/metrics/labeled-balance) - [Labeled Exchange](/metrics/labeled-exchange) - [Lending and Borrowing Protocols](/metrics/lending-and-borrowing-protocols) diff --git a/src/docs/navigation.js b/src/docs/navigation.js index 8b16499f..3ac03c35 100644 --- a/src/docs/navigation.js +++ b/src/docs/navigation.js @@ -300,6 +300,7 @@ export const REFERENCES = [ 'FTX Derivatives', 'Fully Diluted Valuation', 'Funding Rates Aggregated', + 'GHO Savings', 'Gini Index', 'Huobi Derivatives', 'Labeled Balance',