Aave Protocol V3 Technical Paper

Authors Aave Companies
Year 2021
Project Aave V3
License Business Source License 1.1
Official Source https://github.com/aave/aave-v3-core/blob/master/techpaper/Aave_V3_Technical_Paper.pdf

This page is an educational summary and analysis of an official whitepaper or technical paper, written for reference purposes. It is not a verbatim reproduction. CryptoGloss does not claim authorship of the original work. All intellectual property rights remain with the original author(s). The official document is linked above.

Aave Protocol V3 is described in a 2021 technical paper by Aave Companies, extending the Aave V2 lending protocol (described separately in the Aave whitepaper) with several major new features designed for capital efficiency, cross-chain flexibility, and improved risk management.

V3 launched on Polygon, Avalanche, Optimism, and Arbitrum in March 2022, and on Ethereum mainnet in January 2023. As of 2024, Aave V3 is the dominant decentralized lending protocol by TVL ($10B+) across multiple chains.

> Technical Paper (PDF): github.com/aave/aave-v3-core/blob/master/techpaper/Aave_V3_Technical_Paper.pdf


Publication and Context

Aave V2 (launched December 2020) introduced aTokens, stable/variable borrow rates, and flash loans. V2 became the leading DeFi lending protocol by TVL in 2021.

V3’s primary motivations:

  1. Capital efficiency: V2’s uniform LTV ratios were conservative; correlated assets (ETH/wstETH, USDC/USDT) deserved higher LTV
  2. Risk isolation: New asset listings in V2 could affect all markets (a hack in one market potentially draining lending reserves)
  3. Cross-chain liquidity: DeFi had fragmented across multiple chains; Aave needed a framework for cross-chain capital movement
  4. Supply/borrow limits: V2 had no per-asset caps; concentrated depositor risk was unmanaged

Efficiency Mode (eMode)

Efficiency Mode (eMode) allows higher Loan-to-Value (LTV) ratios for correlated assets:

Standard mode: Borrowing ETH against wBTC collateral uses conservative LTVs (~70–75%)

eMode: Borrowing ETH against wstETH (staked ETH — highly correlated with ETH price) can use LTV up to 97% — nearly 1:1 leverage.

eMode Categories

The risk admin (initially Aave DAO) defines eMode categories, each with:

  • ltv: Maximum LTV for borrowing within this category
  • liquidationThreshold: LT for positions in this category
  • liquidationBonus: Incentive for liquidators

Users opt into an eMode category. Within that category, all assets follow the higher LTV. Borrowing assets outside the selected eMode category is not permitted while eMode is active.

Example eMode categories:

  • ETH-correlated: wETH, wstETH, rETH → 97% LTV
  • Stablecoin-correlated: USDC, USDT, DAI → 97% LTV

Why This Is Safe (for correlated assets)

A loan of USDT against USDC collateral at 97% LTV is high leverage, but the risk is minimal: USDC and USDT are both USD stablecoins, nearly always within 0.5% of parity. The liquidation threshold is similarly tight; a depeg event would liquidate quickly. eMode acknowledges that not all collateral-debt pairs have the same risk profile.


Isolation Mode

Isolation Mode allows new or riskier assets to be listed with limited risk exposure:

An isolated asset can:

  • Be used as collateral only in isolation (cannot be combined with other collateral)
  • Only permit borrowing of approved stablecoins (not arbitrary assets)
  • Generate debt ceiling — a maximum total borrowable amount across all positions using that asset as collateral

Example: A new small-cap token is listed in Isolation Mode with a $5M debt ceiling. Even if exploited, the maximum protocol exposure is $5M — protecting the broader liquidity pools.

Isolation Mode expands Aave’s market coverage while containing tail risk from new asset listings.


Portals: Cross-Chain Liquidity

Portals enable whitelisted bridge contracts to supply and withdraw liquidity across Aave deployments on different chains:

Flow:

  1. Bridge contract supplies assets to Aave V3 on Destination Chain (minting aTokens)
  2. Bridge “borrows” those assets using its whitelist privileges (not real user borrow; bridge owns the debt)
  3. Bridge settles the debt by delivering the canonical assets from Source Chain

Security: Only governance-approved bridge protocols can use Portals. The bridge takes on the unbacked position risk during transit.

This enables cross-chain “lazy minting” of aTokens — a user deposits ETH on Ethereum; a bridge ports the aToken position to Optimism; the user interacts with Aave V3 on Optimism.


GHO: Aave’s Native Stablecoin

GHO (launched 2023) is Aave’s governance-approved decentralized stablecoin:

  • Minted by over-collateralized borrowing in Aave V3 (similar to MakerDAO’s DAI)
  • Discount rate for stkAAVE holders
  • Facilitators: the Aave Pool is the primary facilitator; additional facilitators can be approved
  • GHO interest goes to the Aave DAO treasury (not distributed to aToken holders)

Supply and Borrow Caps

  • Supply cap: Maximum total supply of a given asset permitted in Aave V3
  • Borrow cap: Maximum total borrowed amount of a given asset

Caps are set per-asset by risk administrators (Aave DAO, with Gauntlet/Chaos Labs as risk managers). They prevent concentration risk and limit protocol exposure when oracle manipulation is detected.


Reality Check

Aave V3 is production-proven with $10B+ TVL and multiple security reviews. The eMode, Isolation Mode, and supply/borrow cap features are genuine improvements over V2.

Specific risks:

  • Oracle dependence: All Aave lending is oracle-dependent. Oracle manipulation remains the primary attack vector; aggressive LTV configurations in eMode increase this risk.
  • Liquidation cascade risk: High-LTV eMode positions (97%) have very thin liquidation buffers. In volatile markets, cascading liquidations can incur bad debt if liquidators can’t act fast enough.
  • Portals trust assumption: Cross-chain liquidity via Portals depends on trusted bridge operators; if a whitelisted bridge is exploited, Aave’s balance sheet takes the hit.
  • GHO depeg (observed): GHO briefly traded below peg in 2023 due to limited arbitrage mechanisms; the stablecoin design required governance adjustments.

Legacy

Aave V3’s eMode popularized correlated-collateral efficiency — Compound v3 and other lending protocols adopted similar concepts. The supply/borrow cap risk management framework became standard in DeFi lending. The Isolation Mode approach for new asset onboarding influenced risk frameworks at Euler, Morpho, and others.


Related Terms


Research

  • Aave Companies. (2021). Aave Protocol V3 Technical Paper. github.com/aave.

— Primary technical paper; specifies eMode parameter structure, Isolation Mode debt ceilings, Portals cross-chain flow, and supply/borrow cap enforcement.

  • Gudgeon, L., Werner, S., Perez, D., & Knottenbelt, W.J. (2020). DeFi Protocols for Loanable Funds: Interest Rates, Liquidity and Market Efficiency. ACM AFT 2020.

— DeFi lending protocol economics; interest rate model analysis relevant to Aave V3’s continued use of variable/stable borrow rates with kinked utilization.

  • Xu, J., Paruch, K., Cousaert, S., & Feng, Y. (2023). SoK: Decentralized Exchanges (DEX) with Automated Market Makers (AMM). ACM Computing Surveys.

— Survey including lending protocol interactions; relevant for understanding Aave’s role in DeFi liquidity and liquidation cascades with DEX integrations.