Cross-chain vaults
Give investors on several chains access to a single strategy, using a main vault and sub-vaults.
A Lagoon vault lives on one chain. The same vault cannot be deployed across several chains and kept in sync.
When a strategy must be reachable from several chains, the pattern is a vault of vaults: one main vault on the chain where the strategy is executed, and one sub-vault per chain where investors are. Each sub-vault has a single allocation: the main vault.
Architecture
Assets are held in one place, the main vault on the hub chain. Every sub-vault is a virtual vault: its only asset is the main vault shares held by its own curator address on the hub chain. It exists to abstract the bridging away from investors, who deposit and redeem on their own chain, in their own asset, and never leave it.
An investor ends up holding sub-vault shares, main vault shares, or both, depending on where they deposited.
Deposit flow
Deposit in the sub-vault — the investor submits a standard async deposit request on their own chain.
Settle: assets to the sub-vault address — the curator settles the sub-vault batch, the assets land on the curator sub-vault address on the spoke chain.
Bridge to the hub chain — the assets are bridged to the curator sub-vault address on the hub chain.
Deposit in the main vault — that same address submits a deposit request on the main vault.
Main shares to the sub-vault address — once the main vault settles, that address claims the shares. They are the sub-vault's only asset.
Assets to the main vault address — the main vault sends the settled assets to its own curator address.
Allocate to the strategies — the main vault address deploys them, exactly as for a single-chain vault.
Sub-vault shares to the investors — after the sub-vault NAV is updated and the batch settled, investors claim their shares.
Investors already on the hub chain skip all of it:
Direct deposit in the main vault — a standard deposit request on the main vault.
Shares to the direct investors — claimed once the main vault settles, at the same price per share as the sub-vault address.
Two settlement cycles plus a bridge sit between a sub-vault request and the shares. Set the sub-vault settlement cadence accordingly.
Redemption flow
Redemption runs the same path backwards.
Request a redemption — the investor submits a redemption request on the sub-vault.
Redeem from the main vault — the curator sub-vault address on the hub chain requests a redemption on the main vault for the corresponding amount.
Unwind the strategies — the main vault address frees the liquidity needed to settle the batch.
Assets back to the main vault — the main vault address returns them so the batch can settle.
Assets to the sub-vault address — the sub-vault address claims its share of the settled assets.
Bridge back to the spoke chain — the assets are bridged to the sub-vault address on the spoke chain.
Settle the redemption batch — the sub-vault NAV is updated, then the batch is settled.
Return the assets to the investors — investors claim on their own chain.
And for the investors on the hub chain:
Direct redemption request — submitted on the main vault.
Assets to the direct investors — claimed once the main vault settles, without bridge.
Liquidity on a sub-vault is bounded by the main vault redemption cycle: a sub-vault can never settle faster than the main vault it depends on.
Valuation
Each vault keeps its own NAV and its own price per share. Updating one does not propagate to the others.
Sub-vault
The sub-vault holds no strategy position. Its NAV is what its curator address holds on both chains, plus its position in the main vault:
The first two lines cover the assets in transit: settled on the spoke chain but not yet bridged, or bridged but not yet deposited in the main vault. Omitting them under-reports the sub-vault price per share.
The sub-vault valuation provider reads the main vault price per share on the hub chain and pushes the resulting NAV to the sub-vault. See Vault valuation for the update and settlement procedure.
Main vault
The main vault is valued like any single-chain Lagoon vault:
These are theoretical NAVs
Both formulas describe the standard setup. A specific configuration, several sub-vaults sharing an address, a different underlying on each chain, positions held outside the curator addresses, or fees charged at the sub-vault level, changes what has to be counted. Validate the computation against your own setup before running it in production.
TVL
Assets deposited through a sub-vault increase the main vault totalAssets, and therefore the TVL of the hub chain. Aggregating the main vault TVL and the sub-vault TVLs would double count them.
Trade-offs
Investors never leave their chain, and the strategy is executed once, in one place.
Deploying several vaults adds no cost to a Lagoon setup.
Latency: a deposit crosses two settlement cycles and a bridge before it is invested. Same for a redemption.
Operational load: one NAV update process per sub-vault, plus the bridging.
Last updated