Asynchronous Redemptions
Overview
The protocol implements an asynchronous redemption system where withdrawal requests are processed in two steps:
User requests redemption (shares moved to Escrow)
Rebalancer fulfills redemption (assets moved to Escrow)
Request Structure
Redemption Lifecycle
Request Phase
Shares are transferred to Escrow
pendingRedeemRequest
is increasedsharesAdjusted
records shares after any swing pricing penaltysharesExiting
is increased to track pending withdrawals
Fulfillment Phase
Rebalancer processes request during rebalance window
Can fulfill from reserve or liquidate components
Must follow liquidation queue order
Updates request state via
finalizeRedemption
Claim Phase
User claims available assets from Escrow
Decrements
claimableAssets
andclaimableRedeemRequest
Burns shares from Escrow
Router Integration
Routers can process redemptions from their respective components using:
Validates liquidation order
Processes component withdrawal
Updates request state via Node's
finalizeRedemption
For more details on the redemption system, see the full protocol documentation.
Last updated