For the complete documentation index, see llms.txt. This page is also available as Markdown.

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).

Share Price=Asset ValuesLiability ValuesTotal Share Supply\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.

Last updated