# Vault Share Mechanics

#### ERC-20 Shares

OPAL vault shares are standard, fully transferable ERC-20 tokens. Each share represents a proportional claim on the net asset value of the vault's balance sheet (total assets minus total liabilities).

$$
\text{Share Price} = \frac{\sum \text{Asset Values} - \sum \text{Liability Values}}{\text{Total Share Supply}}
$$

Shares can be transferred to any EVM wallet, used as collateral on lending protocols that accept ERC-20 tokens, held in institutional custody solutions (Fireblocks, Gnosis Safe), and integrated into yield aggregators or structured products.

#### Performance Fees

Fees are collected by minting new shares to the fee collector address. The performance fee rate is capped by the `MAX_PERFORMANCE_FEE_BPS` constant. Fee accrual is visible in real time by monitoring the share supply.

#### Deposits and Withdrawals

Users deposit the vault's accepted input token (e.g., USDT for the Perpetual sUSDe PT vault). The vault mints shares proportional to the deposited value relative to the current share price.

On withdrawal, the user redeems shares and receives the proportional claim on the vault's withdrawable reserves.

{% hint style="danger" %}
The withdrawable amount may be less than the total NAV per share if a portion of reserves is deployed as collateral against outstanding debt. See the vault-specific Token Flow page for details.
{% endhint %}


---

# 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.origami.finance/the-third-fold-opal/vault-share-mechanics.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.
