Euler V2 is a modular lending protocol that ships every market as a separately deployed vault. The Euler Vault Kit (EVK) makes vault deployment permissionless; the Ethereum Vault Connector (EVC) lets vaults compose. As of April 2026, Euler V2 holds $890M in TVL on Ethereum, per DefiLlama's Euler V2 page. The protocol relaunched in mid-2024 after the original Euler shut down following the March 2023 exploit.
The V2 architecture is conceptually similar to Morpho Blue (permissionless markets, immutable per-market parameters, curator layer above) but ships richer composition primitives via the EVC. This guide walks the EVK and EVC, compares Euler V2 to Morpho Blue and Aave V3, and outlines the use cases each unlocks.
What Is Euler V2?
Euler V2 is two related primitives: the Euler Vault Kit (EVK) — a smart-contract template for deploying lending vaults — and the Ethereum Vault Connector (EVC) — a coordination layer that lets multiple vaults share collateral, run cross-vault liquidations, and compose into multi-vault strategies.
The EVK ships a vault contract that anyone can deploy. Each vault has:
One borrowable asset (the vault's "asset").
One or more accepted collateral vaults (themselves EVK vaults or compatible).
An interest-rate model (configurable per vault).
A liquidation discount and threshold.
An oracle for collateral pricing.
The EVC is a separate singleton contract that vaults register with. Once registered, a vault can verify a user's overall solvency across all the user's positions in EVC-registered vaults — not just within a single vault. This enables cross-vault collateralization without forcing every market into one monolithic pool.
The full implementation lives in the euler-vault-kit GitHub repo and the ethereum-vault-connector repo.
How EVK Vaults Work
An EVK vault behaves similarly to a Morpho Blue market: a permissionless lending primitive with immutable parameters at deployment. The differences are in flexibility.
EVK vaults can be configured as:
Governed vaults. A vault deployer retains ownership and can update certain parameters (LTV, IRM) over time.
Ungoverned vaults. Ownership is renounced at deployment; parameters are immutable.
Escrow vaults. Special vaults that only accept collateral, no borrowing — used for users who want to deposit collateral and have it priced in the EVC for borrowing in other vaults.
Yield aggregator vaults. Vaults that allocate deposits across multiple underlying lending vaults via a curator strategy.
This vault-type taxonomy means Euler V2 supports both Morpho Blue's "immutable primitive" model and Aave's "governed pool" model in the same protocol. Different curators can pick different governance postures.
The Ethereum Vault Connector
The EVC is the most novel piece of Euler V2. It solves a structural problem with isolated lending markets: users want their collateral in one market to count against borrows in a different market without manually shuffling deposits.
How it works: a user enables EVC for their account. When they take an action (borrow, withdraw collateral) in any EVC-registered vault, that vault calls into the EVC to check the user's total solvency across all their positions. If the user is solvent, the action proceeds. If not, the action fails or triggers a liquidation.
This produces "cross-vault collateral" without merging vaults into a monolithic pool. A user can deposit wstETH into Vault A (escrow only), borrow USDC from Vault B, and borrow WETH from Vault C, with the EVC enforcing solvency across all three. Each vault remains independently configured and risk-isolated; the EVC handles cross-vault accounting.
The trade-off is that EVC users are exposed to the EVC contract's correctness — a bug in the EVC could affect every vault. The contract has been audited multiple times (Spearbit, ChainSecurity, Certora formal verification); audit reports are in the EVC repo.
Comparison to Morpho Blue and Aave V3
Property | Euler V2 | Morpho Blue | Aave V3 |
Vault deployment | Permissionless (EVK) | Permissionless | Governance |
Cross-vault collateral | Yes (EVC) | No | N/A (single pool) |
Vault governance | Per-vault choice | Always immutable | Aave governance |
Yield aggregator | Native (EVK type) | External (Morpho Vaults) | External (yield apps) |
Oracle | Per vault | Per market | Protocol-wide |
Audit posture | Spearbit, Certora | Spearbit, ChainSecurity, Certora | Trail of Bits, Certora |
Euler V2's structural advantage over Morpho Blue is the EVC — cross-vault collateralization without giving up market isolation. Morpho's structural advantage is simpler audit surface (no EVC equivalent) and the curator vault layer's earlier maturity. Aave V3's advantage over both is the depth of liquidity in the main pool.
Risks and Audit Posture
Euler V2 carries the modular-lending risk surface (curator risk, market risk, oracle risk) plus EVC contract risk. The protocol relaunched after the March 2023 exploit on Euler V1, which was a flaw in the donateToReserves function. The V2 codebase is structurally different from V1 and underwent multiple audit rounds before mainnet launch.
For users, the practical posture: stick to vaults deployed by recognized curators (Re7, Steakhouse, MEV Capital), avoid anonymously-deployed vaults, and read the oracle docs. The EVC layer adds power and adds risk; users not using cross-vault collateralization can interact with vaults individually and avoid EVC dependency.
For the broader risk taxonomy, see the DeFi Lending pillar.
Use Cases for Euler V2
Specialized risk underwriters. Curators with niche expertise (RWA, LSTs, exotic collaterals) can deploy vaults targeting specific risk profiles without persuading Aave or Compound governance.
Multi-asset borrowing. Via the EVC, a user can collateralize one set of assets and borrow from multiple separately-configured vaults — useful for treasury teams wanting different rate / risk exposures simultaneously.
Yield aggregator strategies. Native EVK aggregator vaults let curators publish strategies that allocate across multiple Euler vaults (and external yield sources) with on-chain accounting.
Eco's Role in Funding Euler V2 Vaults
Euler V2 is Ethereum-only as of April 2026. Depositors holding stablecoins on other chains must bridge to Ethereum to access Euler vaults. Eco handles this as a single intent across 15 supported chains, settling in seconds. For curators sourcing depositor funds across chains and for individual lenders moving capital between Euler and other lending venues, the cross-chain leg becomes invisible. Eco Routes (CLI + API) is the integration surface.
EVK Vault Categories in Production
The EVK's flexibility produces a vault taxonomy in practice. Looking at deployed Euler V2 vaults as of April 2026:
Curated stablecoin vaults. USDC, USDT, USDS vaults deployed by Re7, MEV Capital, or similar curators with established risk processes. Account for ~$420M of Euler V2 TVL.
LST collateral vaults. wstETH, cbETH, weETH escrow vaults that hold collateral for cross-vault borrows via the EVC. ~$210M.
RWA-collateralized vaults. Vaults accepting tokenized US Treasury or other RWA tokens as collateral. Smaller but growing — ~$80M.
Long-tail crypto vaults. Vaults for niche LRTs, governance tokens, or experimental collateral types. Together ~$120M, with significant per-vault variance.
Yield aggregator vaults. EVK aggregator-type vaults that allocate across multiple Euler markets. ~$60M.
The ecosystem reflects what Euler's design enables: specialized curators serving specialized depositor preferences. A risk-conservative depositor stays in the curated stablecoin vaults; a yield-chasing depositor explores aggregator or long-tail vaults; an institutional depositor with cross-asset liquidity needs uses the EVC.
The EVC Solvency Check Mechanic
The EVC's solvency check is worth understanding in detail because it's the most architecturally novel feature. When a user attempts an action (borrow, withdraw collateral) in any registered vault:
The vault's pre-action hook calls
checkAccountStatus()on the EVC.The EVC iterates through all of the user's positions across registered vaults.
For each position, the EVC calculates collateral value and debt value using the configured oracle.
The EVC sums collateral value and debt value across all positions.
If the user is solvent (collateral exceeds debt by configured margin), the action proceeds. If not, it reverts.
This is gas-expensive — a multi-vault solvency check costs significantly more gas than a single-vault check in Aave. But it enables a structurally different lending experience: a user with deep collateral positions across vaults can borrow against the aggregate, not against per-vault deposits.
For users with simple single-vault positions, the EVC adds no value and adds gas overhead. The EVC is opt-in per account: users who don't enable it pay no overhead. The architecture serves multiple use cases without forcing complexity on simple users.
Lessons from the V1 Exploit
Euler V1's March 2023 exploit ($197M loss) was a vulnerability in the donateToReserves function that allowed manipulation of the protocol's reserve accounting. The exploit was eventually returned by the attacker after extensive negotiation, but the protocol shut down rather than restart on the same codebase.
V2 was redesigned with several explicit lessons baked in:
No reserve donations. The V1 vulnerability vector is removed. Reserves are protocol-owned and only accumulate through normal interest accrual.
Tighter solvency checks. The EVC's solvency model uses simpler arithmetic than V1's reserve-based accounting, reducing the surface for accounting errors.
Multi-audit before launch. V2 underwent four independent audits plus formal verification before mainnet launch — substantially more than V1.
Phased rollout. V2 launched with low capital caps and grew them over months, similar to Fluid's rollout pattern.
The lessons matter for users evaluating Euler V2. The team has demonstrated specific awareness of past failure modes and structural responses to them — which is more reassuring than a clean track record on a new protocol with no past stress.
The Curator Marketplace on Euler V2
Like Morpho, Euler V2 has produced a curator marketplace where specialized risk underwriters compete for depositor capital. The notable curators as of April 2026:
Re7 Labs. The largest Euler V2 curator with focus on stablecoin and ETH-correlated vaults. Publishes risk reports monthly.
MEV Capital. Specializes in higher-yield, more aggressive vault strategies. Targets active depositors who tolerate higher variance.
K3 Capital. Focuses on RWA-collateralized vaults, particularly those accepting tokenized Treasuries.
Hyperithm. Cross-protocol strategies that allocate between Euler vaults and external yield sources.
Curators charge performance fees similar to Morpho's range (5–15% of generated yield). The competition between curators on Euler V2 is in early stages — Morpho has a 2-year head start on the curator economy — but the structural conditions exist for similar specialization to develop.
The DAO and Token Model
Euler V2 uses the EUL token for governance, with a token-staking model where stakers underwrite protocol-level bad debt in exchange for a portion of protocol fees. The model is conceptually similar to Aave's Safety Module but applies only to vaults that opt into protocol-level bad-debt coverage.
For depositors, this matters because vaults can be configured with or without protocol-level bad-debt coverage. Vaults with coverage have an implicit insurance layer; vaults without coverage rely entirely on overcollateralization buffers. Reading the vault's configuration before depositing is essential.
Where Euler V2 Underperforms Peers
Two cases where Euler V2 is the wrong choice:
Single-chain users who want maximum liquidity depth. Aave V3's deeper pools beat Euler V2 on liquidation reliability and rate stability for vanilla positions. The EVK / EVC architecture's flexibility doesn't help if the user isn't using it.
Users who want a longer track record. V2 is 2 years old as of April 2026. Aave's contracts have 5+ years of uptime. For institutional depositors with long compliance review cycles, the audit and uptime gap matters.
Euler V2's strengths are concentrated in cross-vault collateralization, vault customization, and curator specialization. For users who need those features, it's a strong choice; for users with simpler needs, peer protocols may be a better fit.
FAQ
What is the Ethereum Vault Connector?
The EVC is a singleton contract that lets multiple Euler V2 vaults share collateral accounting without merging into one pool. A user's solvency is computed across all EVC-registered vaults, enabling cross-vault collateralization with per-vault risk isolation.
Is Euler V2 the same protocol as Euler V1?
No — V2 is a structurally different codebase. V1 shut down after the March 2023 exploit. V2 launched in mid-2024 with a new architecture (EVK + EVC) and multiple independent audits.
How does Euler V2 differ from Morpho Blue?
Both are permissionless modular lending primitives. Euler V2 adds the EVC layer for cross-vault collateralization and supports both governed and immutable vault types. Morpho Blue's vaults are always immutable and don't have an equivalent of the EVC.
Can I deploy my own Euler V2 vault?
Yes. The EVK is permissionless. Anyone can deploy a vault with their chosen parameters. Vault discoverability and depositor trust then become the question — most depositor capital flows to vaults deployed by recognized curators.
Which chains does Euler V2 support?
Euler V2 is live on Ethereum as of April 2026. Additional EVM chain deployments are in the governance pipeline. See the lending pillar for the broader chain coverage.

