Processing User Redemptions
Overview
User redemptions in the protocol follow an asynchronous pattern:
User requests redemption (shares → Escrow)
Rebalancer fulfills redemption (Node → Escrow)
User claims assets (Escrow → User)
Request State Structure
Step 1: User Requests Redemption
Actions:
Validates owner permissions
Transfers shares to Escrow
Updates request state:
Step 2: Rebalancer Fulfills Redemption
Three fulfillment methods:
A. From Reserve
B. From ERC4626 Component
C. From ERC7540 Component
All methods eventually call:
Which:
Burns shares from Escrow
Updates request state:
Transfers assets to Escrow
Step 3: User Claims Assets
Users can claim using either:
These functions:
Check available assets via
maxWithdraw()
ormaxRedeem()
Transfer assets from Escrow to receiver
Decrement claimable amounts
Important Notes
Liquidation Order
Reserve is always used first
Components follow liquidationQueue order
Enforced by
enforceLiquidationOrder()
Swing Pricing
Applied at request time
Stored in
sharesAdjusted
Affects final asset amount
State Tracking
sharesExiting
tracks total pending redemptionsUsed for reserve calculations
Updated during request and fulfillment
Timing
Fulfillment only during rebalance window
Claims can happen anytime
No timeout on pending requests
Last updated