Aave Protocol: Decentralized Liquidity Protocol

Authors Aave Team (Stani Kulechov)
Year 2020
Project Aave
License Business Source License 1.1
Official Source https://github.com/aave/aave-protocol/blob/master/docs/Aave_Protocol_Whitepaper_v1_0.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: Decentralized Liquidity Protocol” (v1, January 2020) is the whitepaper by the Aave team (principal founder: Stani Kulechov) describing the evolution of ETHLend (a peer-to-peer lending platform) into Aave — a pooled liquidity lending protocol. Aave introduced several innovations that became standard infrastructure in DeFi: flash loans, interest-bearing aTokens, and dual-mode interest rates (variable and stable).

Aave has gone through three major versions (v1: 2020, v2: 2020, v3: 2022) and deployed across virtually every major EVM chain, becoming consistently one of the top two DeFi lending protocols by TVL alongside Compound.

> PDF hosting: The v1 whitepaper is available in the aave/aave-protocol GitHub repo. Aave v3 documentation is at docs.aave.com.


Publication and Context

Stani Kulechov founded ETHLend in Finland in 2017 — a peer-to-peer lending platform where borrowers and lenders matched individual loan requests. ETHLend had a fundamental liquidity problem: borrower and lender supply/demand rarely matched efficiently.

In 2020, ETHLend rebranded to Aave (Finnish for “ghost”) and pivoted to a liquidity pool model: instead of P2P matching, lenders deposit into a shared pool; borrowers draw from the pool. This was already pioneered by Compound (2018) but Aave extended it with new primitives.

The LEND token (ETHLend’s token) migrated to AAVE in 2020.


Core Design: Pooled Lending

Lending (supply) side:

  • Users deposit supported assets (ETH, WBTC, USDC, DAI, etc.) into Aave lending pools
  • In return they receive aTokens (e.g., aDAI, aETH) — interest-bearing wrapper tokens that accrue interest in the holder’s wallet in real-time
  • aToken balance grows continuously; 100 aDAI today becomes 100.01 aDAI tomorrow based on current supply APY

Borrowing side:

  • Users with sufficient collateral can borrow assets from the pool
  • Borrowing requires overcollateralization — typically 75–80% LTV (Loan-to-Value ratio)
  • Borrowers pay interest continuously; interest is distributed to depositors

Health Factor:

A numerical score representing collateral safety. Health factor = (collateral value × liquidation threshold) / total debt value. If health factor drops below 1.0, liquidation is triggered.


Flash Loans: The Signature Innovation

Flash loans are uncollateralized loans that must be borrowed and repaid within the same Ethereum transaction. If the repayment doesn’t happen, the entire transaction is reverted as if the loan never occurred.

How they work:

  1. A smart contract calls flashLoan() on Aave
  2. Aave transfers the requested amount (up to pool liquidity) to the calling contract
  3. The contract executes arbitrary logic (arbitrage, liquidations, collateral swaps)
  4. Before the transaction ends, the contract returns the full amount + fee (0.09%)
  5. If repayment fails, the entire transaction reverts — no loss to Aave

Flash loans enable:

  • Arbitrage between DEXes without initial capital
  • Collateral swapping (replace ETH collateral with wBTC in one transaction)
  • Self-liquidation (repay your own loan without external capital)
  • Governance attacks (borrowing governance tokens to pass proposals — a known risk)

Flash loans are a unique primitive with no traditional finance equivalent — they exist only because of Ethereum’s atomic transaction model.


Interest Rate Model

Aave offers both variable and stable interest rates for borrowers:

Rate Type Description Risk
Variable Adjusts continuously based on utilization rate Rates can spike during high demand
Stable Fixed short-term; can be reset by protocol if conditions change significantly Slightly higher baseline cost

The interest rate curve:

  • Base rate + slope × utilization up to optimal utilization (~80%)
  • Above optimal: sharp rate spike to discourage over-utilization (liquidity crunch protection)

This “kinked” interest rate model became the standard for DeFi lending protocols.


Safety Module

AAVE token holders can stake in the Safety Module — a reserve fund that can be slashed (up to 30%) to cover protocol shortfall events (bad debt from liquidation failures). In return, stakers earn Safety Module rewards.

This makes AAVE stakers the backstop insurance for the protocol — analogous to MKR holders’ role in Maker.


Aave v3: Notable Upgrades

Aave v3 (March 2022) added:

  • Efficiency Mode (eMode): Higher LTV ratios for correlated assets (e.g., USDC/DAI at 97% LTV)
  • Isolation Mode: New assets added in isolation with capped total debt to limit risk
  • Cross-chain portals: Native liquidity bridging across Aave deployments
  • Multi-chain deployment: Aave v3 is on Ethereum, Polygon, Arbitrum, Optimism, Avalanche, and more

Reality Check

Aave has operated without a major hack since launch — a remarkable record. However:

  • Aave lost ~$1.6M in the Curve Finance and Euler Finance incidents (2023) due to bad debt
  • The CRV crisis (November 2022): Michael Egorov borrowed $108M in stablecoins from Aave against CRV tokens; CRV price decline nearly triggered a massive undercollateralized position
  • Flash loans have been used in dozens of DeFi exploits (Beanstalk, dForce, and others) by flash-borrowing governance tokens for hostile votes

Legacy

Aave established the standard DeFi money market architecture used by dozens of protocols. Flash loans are widely cited as one of the most genuinely novel cryptographic/economic primitives blockchain has produced. The “Safety Module” governance-staking-as-insurance model has been replicated across DeFi.


Related Terms


Research

  • Aave Team. (2020). Aave Protocol Whitepaper v1.0. github.com/aave/aave-protocol.

— Primary source. Section 3 (flash loans) and Section 4 (interest rate model) are the key contributions.

  • Qin, K., Zhou, L., Livshits, B., & Gervais, A. (2021). Attacking the DeFi Ecosystem with Flash Loans for Fun and Profit. FC 2021.

— Academic analysis of flash loan attacks; uses Aave’s flash loan as the primary case study.

  • Gudgeon, L., et al. (2020). DeFi Protocols for Loanable Funds. ACM AFT 2020.

— Economic analysis of interest rate dynamics in Aave, Compound, and Maker.