> For the complete documentation index, see [llms.txt](https://docs.kpk.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.kpk.io/funds/infrastructure/onchain-accounting/price-feeds/sgho.md).

# sGHO

Custom price feed for **Aave Savings GHO (sGHO)**. sGHO is an ERC-4626 vault share that accrues value as GHO savings yield accumulates. The price is derived from the vault's current share-to-asset conversion rate multiplied by the Chainlink GHO/USD feed.

**Source:** [`sGHO_CustomPriceFeed.sol`](https://github.com/karpatkey/onchain-accounting/blob/main/src/prices/protocols/sGHO_CustomPriceFeed.sol)

***

## Approach

`sGHO.convertToAssets(1 sGHO)` × GHO/USD (from the NAV's primary feed)

{% hint style="info" %}
The GHO/USD term is sourced from the NAV's own selector — see [Base/USD from the NAV's own selector](/funds/infrastructure/onchain-accounting/price-feeds.md#base-usd-from-the-navs-own-selector).
{% endhint %}

<figure><img src="/files/kvgG4t7pF4S0ShY110RE" alt="Left-to-right flowchart of the sGHO price feed: rate and Chainlink inputs combine into a USD price, with a staleness gate."><figcaption><p>sGHO price feed — how its oracle inputs compose into a USD price, with the staleness gate.</p></figcaption></figure>

***

## Price calculation

```
decimals = sGHO.decimals()                        // vault share decimals
rate     = sGHO.convertToAssets(10^decimals)       // GHO per 1 sGHO (vault decimals)
price    = rate × GHO_USD / 10^decimals
```

| Input               | Source                                             | Description                                                      |
| ------------------- | -------------------------------------------------- | ---------------------------------------------------------------- |
| `convertToAssets()` | `IERC4626(sGHO)`                                   | GHO backing per 1 sGHO share at the current savings-accrued rate |
| `GHO_USD`           | NAV base — `getPriceDataNoDivergence(GHO)` (8 dec) | the NAV's primary GHO/USD price                                  |

The ERC-4626 `convertToAssets` call returns the current exchange rate including all accrued savings yield. The vault decimals are read once at deploy. Result carries the feed's **8 decimals**. The GHO/USD term is read from the NAV's primary feed.

***

## Constructor

```solidity
constructor(
    address sGho_,
    address nav_,
    address baseAsset_
)
```

| Parameter    | Description                                                                                                                                |
| ------------ | ------------------------------------------------------------------------------------------------------------------------------------------ |
| `sGho_`      | The sGHO vault address (also used to read vault decimals)                                                                                  |
| `nav_`       | NAVCalculator (proxy) — supplies the base stablecoin's USD price via `getPriceDataNoDivergence`                                            |
| `baseAsset_` | The registered base stablecoin whose USD price is read (GHO); **must equal the vault's `asset()`** — reverts `BaseAssetMismatch` otherwise |

***

## Staleness

The price is stale if the NAV reports the base asset (GHO) stale — all its feeds stale. The base leg's `updatedAt` comes from the NAV's selected GHO feed. The `convertToAssets` rate has no heartbeat — it is a live view on the ERC-4626 vault.

***

## Chains

Deployed on **Ethereum mainnet** only.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.kpk.io/funds/infrastructure/onchain-accounting/price-feeds/sgho.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
