Atomic Redemption Vault
An ERC-4626 vault with an instant-settlement module that settles redemptions atomically in a single transaction, with no withdrawal queue or pre-funded buffer.
The Atomic Redemption Vault turns a tokenized-asset vault into a real-time settlement account. Redemptions are settled instantly at the moment they are requested with no withdrawal queue, no pre-funded buffer, and no manual operator intervention. Idle capital continues to earn yield right up until the instant it is needed for settlement.
| Pattern | ERC-4626 tokenized vault with an attached instant-settlement module |
| Deposit Asset | Any ERC-20 token (e.g. USDC, USDT, WETH, WBTC) |
| Share Token | Fungible share token issued by the vault |
| Redemptions | Atomic; shares converted to the reference asset and settled in one transaction |
| Liquidity Source | Built-in settlement module backed by Aave / Morpho lending markets |
| Yield | Earned on idle balances until the moment of redemption |
The Problem
Tokenized-asset vaults conventionally impose a multi-day withdrawal queue on every redemption. A holder requests a redemption, the request enters a queue, the curator unwinds positions to raise the underlying, and the holder claims their funds days later in a separate transaction.
Any application that needs predictable, on-demand liquidity from such a vault such as payments rail, a settlement layer, a treasury sweep, or any integrator that must pay out the moment a user acts is not suited to tolerate that latency. The standard workaround is to pre-fund a separate cash buffer or credit line that fronts redemptions while the queue clears. That buffer sits idle, earns nothing, introduces counterparty risk, and has to be topped up and rebalanced by hand.
The Solution
The Atomic Redemption Vault settles a redemption in a single transaction. When a redemption is requested, the vault converts the holder's shares to the reference asset of the vault and pays out atomically. A built-in liquidity layer guarantees that settlement capital is always available, while the remaining balance stays deployed in yield strategies. There is no request-and-wait cycle and no separate claim step: the conversion, the liquidity recall, and the payout all happen inside one atomic operation.
Why an Atomic Redemption Vault
| Pre-Funded Cash Buffer | Classic Vault + Queue | Atomic Redemption Vault | |
|---|---|---|---|
| Settlement speed | Instant (from buffer) | 1–7 day queue | ✓ Instant (from vault) |
| Capital efficiency | Low (cash sits idle) | High (illiquid) | ✓ High and liquid |
| Yield on balance | None | Yes, but locked | ✓ Yes, until moment of redemption |
| Liquidity management | Requires manual top-ups | Manual rebalancing | ✓ Fully automated |
| Asset conversion | External DEX / OTC | External DEX / OTC | ✓ Native, oracle-priced |
| Integration | Custom build | Custom build | ✓ Standard vault interface |
Key Capabilities
Instant settlement
Converts shares to reference asset and settles atomically in a single transaction. No request-and-wait cycle and no separate claim step.
Yield until the moment of redemption
Balances earn yield in the settlement module and curator strategies until the instant they are needed. There is no trade-off between earning and liquidity.
Always-on liquidity
The vault auto-pulls funds from the yield layer the moment settlement requires it. No operator intervention and no manual rebalancing.
Configurable risk controls
Oracle price guards, per-transaction rate limits, redemption fee caps, and spread bounds protect the vault under high-velocity redemption flow. Each parameter is configurable per vault.
Native, oracle-priced conversion
Shares are converted to the reference asset natively at oracle-referenced NAV, with no dependency on an external DEX or OTC desk to source the settlement asset.
Standard vault interface
The vault exposes a standard ERC-4626 interface, so integrators connect through the same deposit / redeem surface they already use for any other vault.
Multi Asset Vault
V2 multi-asset vaults with basket deposits, a single reference asset, and the two institutional custody and execution models.
Architecture
The components of the Atomic Redemption Vault and how the vault contract, yield strategies, instant settlement module, and risk controls fit together.