Documentation Index
Fetch the complete documentation index at: https://yieldxyz.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Overview
OAV v3 is the current production standard for Optimized Allocator Vaults. Each v3 vault wraps a single DeFi strategy with automatic compounding, configurable fee logic, and ERC-4626 compliance — enabling partners to monetize yield with zero custom fee infrastructure. The key advancement is automatic offramping and reinvestment of incentive tokens: vaults claim, swap, and reinvest rewards automatically, compounding returns without manual intervention.OAV v3 is the recommended architecture for all new single-strategy deployments. For multi-strategy allocation, see OAV v4 (Meta Vaults).
Key Features
| Feature | v3 Capability |
|---|---|
| Strategy model | Single strategy per vault |
| Fee types | Deposit, performance, and management fees |
| Compounding | Automatic via offramping pipeline |
| Incentive handling | Claim → Swap → Reinvest (on-chain) |
| ERC-4626 | Compliant |
Auto-compounding
Incentive tokens automatically converted to deposit asset and reinvested
Full fee support
Deposit, performance, and management fees — all on-chain
Clean yield
Users receive pure yield in their deposit token — no manual claiming or swapping
Non-custodial execution
All offramping logic runs on-chain with no custody requirement
Automatic Offramping
TheofframpIncentives() function automates the multi-step reward reinvestment process:
IncentiveOfframpRoute Configuration
Each allowed swap path is registered as anIncentiveOfframpRoute:
- Routes are whitelisted by vault admin and referenced by route ID
- Swaps execute deterministically with on-chain slippage enforcement
- No off-chain signing or custodial control required
Offramping Options
- Automatic (Recommended)
- Manual (Multi-sig)
Fully on-chain, non-custodialThe
offrampIncentives() function executes entirely within the vault contract:- Triggered during user actions or by harvester role
- Uses predefined
IncentiveOfframpRouteconfigurations - All tokens remain under vault control from harvest through reinvestment
Fee Model
Fees are configured per vault and enforced on-chain:| Fee Type | Mechanism | Timing |
|---|---|---|
| Deposit fee | Deducted at entry as shares minted to fee recipient | On deposit |
| Performance fee | Calculated on realized profits since last harvest | At harvest |
| Management fee | Accrued continuously based on AUM and elapsed time | At harvest |
feeRecipient, ensuring fees are collected via proportional dilution without pulling underlying assets out of the vault.
The
computedRewardRate field in API responses reflects net APY after performance fees, providing transparent yield expectations.Security
- Transactions only use whitelisted IncentiveOfframpRoute definitions
- Offramping logic is access-controlled and can be paused per vault
- On-chain execution with no external custody reduces operational risk
- All routes subject to
maxSlippageBpsvalidation - Funds are strictly limited to the whitelisted strategy
Integration
OAV v3 vaults are integrated via the standard Yield.xyz API:deposit(), withdraw(), and redeem().
Next Steps
OAV Overview
Introduction, off-the-shelf OAVs, and API endpoints
OAV v4 (Meta Vaults)
Multi-strategy allocation and dynamic rebalancing
Fees
Fee configuration details
DeFiKit
Full DeFi integration guide

