# Share Value Update

{% @mermaid/diagram content="  sequenceDiagram
actor Admin as admin
participant VH as ValuationHandler
participant PT as Position Trackers
participant FM as FeeManager
participant S as Shares

```
  Admin->>VH: update share value:<br/>- $untrackedPositionsValue
  VH->>PT: getPositionValue() for each
  PT-->>VH: trackedPositionsValue
  VH-->>VH: totalPositionsValue = <br/>$untrackedPositionsValue + trackedPositionsValue
  VH->>FM: settle dynamic fees (management + performance)
  Note over FM: see "Fee Settlement" flow
  VH->>FM: get: total fees owed
  FM-->>VH: totalFeesOwed
  VH-->>VH: netPositionsValue = totalPositionsValue - totalFeesOwed
  VH->>S: get: total supply of shares
  S-->>VH: shares supply
  VH-->>VH: netShareValue = netPositionsValue / shares supply
  VH->>VH: store netShareValue with timestamp" %}
```


---

# Agent Instructions: 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:

```
GET https://docs.enzyme.finance/onyx-protocol/general-flows/share-value-update.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
