Skip to content

Commit

Permalink
Merge pull request #10 from bgd-labs/docs/affected-files
Browse files Browse the repository at this point in the history
docs: added affected files per feature
  • Loading branch information
eboadom authored May 9, 2024
2 parents 98eb4e4 + 4915031 commit 8035fa4
Showing 1 changed file with 191 additions and 1 deletion.
192 changes: 191 additions & 1 deletion docs/Aave-v3.1-features.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,15 @@ With those principles in mind, the following is an detailed list of the changes/

## Features

<br>
<br>

### 1. Virtual accounting

<br>

**-> Feature description**

Aave v3, is what we technically call a “dynamic” system in terms of underlying balances of ERC20 tokens. For example, to calculate utilisation and rates, the system checks how is the balance of underlying (e.g. USDC) on its aToken contract (aUSDC), and compares it with outstanding debt. Or to validate if there is enough funds for withdrawals, the system depends on not reverting on transfer() from the aToken to the user withdrawing; so also depending on ERC20 balances.

This is generally perfectly fine, but from our experience, a system like Aave should be a bit more static, meaning being less sensible to operations that don’t follow explicit interaction paths. The most classic example of this is that a donation to the aToken address of underlying should not have any effect on the stored state of the system.
Expand All @@ -28,12 +33,54 @@ This new feature doesn’t create any incompatibility with Aave v3 integrations,

Given its implications and criticality, virtual accounting can be considered the major feature of Aave 3.1.

**Misc considerations & acknowledged limitations**
<br>

**-> Misc considerations & acknowledged limitations**

- Virtual balance doesn't fix the imprecision caused by other components of the protocol, its objective is to add stricter validations, reducing any type of attack vector to the minimum.
- An extra "soft" protection has been added on borrowing actions (flash loan and borrow): the amount borrowed of underlying should not be higher than the aToken supply. The idea behind is to add more defenses on inflation scenarios, even if we are aware total protection is not achieved (e.g. against certain edge iteration vectors).
Not using `accruedToTreasury` in the calculation is intentional.
- The addition of virtual accounting can create a situation over time that more liquidity will be available in the aToken contract than what the the virtual balance allows to withdraw/borrow. This is intended by design.
- "Special" assets like GHO (minted instead of supplied) are to be configured without virtual accounting.

<br>

**-> Files affected and detailed changes**

- [SupplyLogic](../src/core/contracts/protocol/libraries/logic/SupplyLogic.sol)
- Replacement of `updateInterestRates()` by `updateInterestRatesAndVirtualBalance()` to account for virtual balance.
- [BorrowLogic](../src/core/contracts/protocol/libraries/logic/BorrowLogic.sol)
- Replacement of `updateInterestRates()` by `updateInterestRatesAndVirtualBalance()` to account for virtual balance.
- [ValidationLogic](../src/core/contracts/protocol/libraries/logic/ValidationLogic.sol)
- Disable supplying on behalf of the aToken (soft-protection of non-intended behavior).
- Disable borrowing more than the aToken total supply.
- [BridgeLogic](../src/core/contracts/protocol/libraries/logic/BridgeLogic.sol)
- Replacement of `updateInterestRates()` by `updateInterestRatesAndVirtualBalance()` to account for virtual balance.
- [ConfiguratorLogic](../src/core/contracts/protocol/libraries/logic/ConfiguratorLogic.sol)
- On `executeInitReserve()` (used on listings), enable/not the flag to use virtual accounting.
- [FlashLoanLogic](../src/core/contracts/protocol/libraries/logic/FlashLoanLogic.sol)
- Replacement of `updateInterestRates()` by `updateInterestRatesAndVirtualBalance()` to account for virtual balance.
- Extra accounting required for virtual balance.
- [LiquidationLogic](../src/core/contracts/protocol/libraries/logic/LiquidationLogic.sol)
- Replacement of `updateInterestRates()` by `updateInterestRatesAndVirtualBalance()` to account for virtual balance.
- [ReserveLogic](../src/core/contracts/protocol/libraries/logic/ReserveLogic.sol)
- `updateInterestRates()` now becomes `updateInterestRatesAndVirtualBalance()`, with new logic to 1) pass extra parameters to the interest rate strategy about virtual balance and 2) accounting of virtual balance.
- [DataTypes](../src/core/contracts/protocol/libraries/types/DataTypes.sol)
- A `virtualUnderlyingBalance` is added at the end of the `ReserveData` type, containing all general information of an asset in the pool.
- Added a `ReserveDataLegacy` for backwards compatibility.
- Modified the internal struct `CalculateInterestRatesParams` to receive virtual accounting related params.
- [ConfigurationInputTypes](../src/core/contracts/protocol/libraries/types/ConfiguratorInputTypes.sol)
- Added flag `useVirtualBalance` for a new listing to use or not virtual balance.
- [ReserveConfiguration](../src/core/contracts/protocol/libraries/configuration/ReserveConfiguration.sol)
- Added logic to store and set/get the new `VIRTUAL_ACC_ACTIVE` flag.
- [Errors](../src/core/contracts/protocol/libraries/helpers/Errors.sol)
- In relation with this feature, added the `WITHDRAW_TO_ATOKEN` and `SUPPLY_TO_ATOKEN` errors.
- [Pool](../src/core/contracts/protocol/pool/Pool.sol)
- Modified `getReserveData()` to return `ReserveDataLegacy` for backwards compatibility.
- Added a new `getReserveDataExtended()` returning the new `ReserveData`.
- Added a new `getVirtualUnderlyingBalance()` getter.
- [DefaultReserveInterestRateStrategyV2](../src/core/contracts/protocol/pool/DefaultReserveInterestRateStrategyV2.sol)
- Contains the logic to consider virtual balance for calculation of new interest rates (instead of balance).

<br>

Expand All @@ -43,6 +90,10 @@ Given its implications and criticality, virtual accounting can be considered the

### 2. Stateful interest rate strategy

<br>

**-> Feature description**

Having reviewed countless Aave governance rates updates, we noticed time ago that connecting new strategy contracts is a process prone to errors. To solve that, in the past we introduced an on-chain rate strategy factory, that completely removed that error-vector, deploying new rates automatically and efficiently.

However, as the rate strategy for this 3.1 needed to be changed to support virtual accounting, we decided to go a step forward and move the parameters of the rate to an storage mapping, instead of having them as immutables on separate contracts for each asset.
Expand All @@ -56,23 +107,57 @@ Implementation-wise, this feature:

<br>

**-> Files affected and detailed changes**

- [DefaultReserveInterestRateStrategyV2](../src/core/contracts/protocol/pool/DefaultReserveInterestRateStrategyV2.sol)
- New contract to be connected as rate strategy to all assets, replacing the current `DefaultReserveInterestStrategy` and containing the new `_interestRateData` mapping for all assets using the new stateful interest rate. The approach with it was trying to be as less impact with the previous logic as possible, if not required by design.
- [ConfiguratorLogic](../src/core/contracts/protocol/libraries/logic/ConfiguratorLogic.sol)
- On `executeInitReserve()` used for listings, the stateful strategy gets called now to setup the asset's rate params.
- [PoolConfigurator](../src/core/contracts/protocol/pool/PoolConfigurator.sol).
- Emit event on rate's params setup, on `initReserves()`.
- Added new `setReserveInterestRateData()` to only set new rates params for an asset, and modified `setReserveInterestRateStrategyAddress()` to accept `rateData` apart from the address (for assets with custom rate).
- Logic to update rates data on `_updateInterestRateStrategy()`.
- [ConfigurationInputTypes](../src/core/contracts/protocol/libraries/types/ConfiguratorInputTypes.sol)
- Added `interestRateData` on the `InitReserveInput` used on listing.
- [Errors](../src/core/contracts/protocol/libraries/helpers/Errors.sol)
- In relation with this feature, added the `INVALID_MAXRATE` and `SLOPE_2_MUST_BE_GTE_SLOPE_1` errors.

<br>

---

<br>

### 3. **Freezing by EMERGENCY_GUARDIAN on PoolConfigurator**

<br>

**-> Feature description**

Due to legacy reasons, the `PoolConfigurator` didn’t allow the EMERGENCY_GUARDIAN role to freeze an asset, only to pause it.
We introduced an additional contract on top ([FreezingSteward](https://github.com/bgd-labs/aave-address-book/blob/main/src/AaveV3Ethereum.sol#L60C1-L61C6)) to allow this in the past, but the logic really belongs to the PoolConfigurator, so this is included into 3.1, and the FreezingSteward pattern can be deprecated.

<br>

**-> Files affected and detailed changes**

- [PoolConfigurator](../src/core/contracts/protocol/pool/PoolConfigurator.sol)
- Added new `onlyRiskOrPoolOrEmergencyAdmins` modifier, and changing `setReserveFreeze()` to use it.
- [Errors](../src/core/contracts/protocol/libraries/helpers/Errors.sol)
- In relation with this feature, added the `CALLER_NOT_RISK_OR_POOL_OR_EMERGENCY_ADMIN` error.

<br>

---

<br>

### 4. **Reserve data update on rate strategy and RF changes**

<br>

**-> Feature description**

On Aave v3 (and v2), whenever an interest rate strategy address is replaced for an asset or the Reserve Factor changes, the reserve data is not updated (calculate liquidity/variable debt index until now and “cache” rates on the asset data).

This was simply a design choice, and even if perfectly acceptable, we decided to change it as 1) is counter-intuitive, as we think indexes until now should be updated _with the old rate strategy/old RF_ and 2) whenever an asset is frozen or in any state of partial functionality, the update of the rate will be factually delayed until an user makes an action.
Expand All @@ -81,24 +166,48 @@ On 3.1 we introduce logic to update reserve data whenever the rate strategy or R

<br>

**-> Files affected and detailed changes**

- [Pool](../src/core/contracts/protocol/pool/Pool.sol)
- Exposed `syncIndexesState()` and `syncRatesState()` functions gated to the `PoolConfigurator`, to be used to "sync" the data (update indexes and rates on reserve data).
- [PoolConfigurator](../src/core/contracts/protocol/pool/PoolConfigurator.sol)
- Addition of sync of indexes and rates on both `setReserveFactor()` and `_updateInterestRateStrategy()`.

<br>

---

<br>

### 5. **Minimum decimals for listed assets**

<br>

**-> Feature description**

Precision is a pretty delicate mechanism on Aave, and historically we have observed that assets with low decimals are prone to create edge case scenarios, for example, regarding inflation attacks.

Given that currently it is a pretty rare case, and usually symptom of very bad practises by the team doing the ERC20 implementation, we have introduced a validation for any asset listed on Aave to have at least 6 decimals.

<br>

**-> Files affected and detailed changes**

- [PoolConfigurator](../src/core/contracts/protocol/pool/PoolConfigurator.sol)
- Added require on `initReserves()`, to imposed the condition on listings.

<br>

---

<br>

### 6. Liquidations grace sentinel

<br>

**-> Feature description**

During one security incident that required pausing the protocol we noticed that could be important to introduce a grace period for users to refill their positions or repay debt, just after the system is unpaused, for them to avoiding liquidation. This is a similar approach as with the L2 Sentinel, allowing for a grace period (in that case stopping borrowing too) whenever a downtime on a rollup network is detected.

Initially we followed the same approach as with the FreezingSteward mentioned before, and introduced on Aave v2 (the system that was affected by the pause) a `LiquidationsGraceSentinel` registry/steward contract, allowing for the emergency admin to define a “delayed” pause for any asset.
Expand All @@ -110,23 +219,60 @@ Apart from being totally optional (it is possible to just unpause without any de

<br>

**-> Files affected and detailed changes**

- [PoolConfigurator](../src/core/contracts/protocol/pool/PoolConfigurator.sol)
- Added a `MAX_GRACE_PERIOD` constant as maximum upper limit of grace period.
- New `setReservePause()` function receiving a `gracePeriod` input parameter, to be used on unpause.
- Kept another `setReservePause()` with the previous function signature, applying a default 0 grace period.
- Same approach with `setPoolPause()`, which is a "batch" `setReservePause()`.
- [ValidationLogic](../src/core/contracts/protocol/libraries/logic/ValidationLogic.sol)
- Added validation of grace period on the `validateLiquidationCall()` function.
- [PoolLogic](../src/core/contracts/protocol/libraries/logic/PoolLogic.sol)
- Added `executeSetLiquidationGracePeriod()` to set on the asset data until when a grace period is active.
- [DataTypes](../src/core/contracts/protocol/libraries/types/DataTypes.sol)
- Added `liquidationGracePeriodUntil` into `ReserveData`, strategically placed after `uint16 id` to efficiently pack the data, while keeping layout compatibility.
- [Pool](../src/core/contracts/protocol/pool/Pool.sol)
- Added getter and setter for grace period: `getLiquidationGracePeriod()` and `setLiquidationGracePeriod()`, this last gated to the `PoolConfigurator`.
- [Errors](../src/core/contracts/protocol/libraries/helpers/Errors.sol)
- In relation with this feature, added the `LIQUIDATION_GRACE_SENTINEL_CHECK_FAILED` and `INVALID_GRACE_PERIOD` errors.

<br>

---

<br>

### 7. **LTV0 on freezing**

<br>

**-> Feature description**

On previous freezing incidents, we have also noticed that when freezing an asset on v3, the correct approach, apart from halting deposits and borrows, would be to “remove” the collateral power of the asset for opening or increasing borrow positions.
For this reason, in this 3.1 we have added setting LTV to 0 atomically when freezing an asset, returning to the previous LTV value when unfreezing.

<br>

**-> Files affected and detailed changes**

- [PoolConfigurator](../src/core/contracts/protocol/pool/PoolConfigurator.sol)
- Added data variables `_pendingLtv` and `_isPendingLtvSet` to keep persistence on previous LTV value (before LTV0).
- Added logic on `configureReserveAsCollateral()` to strictly keep track of LTVs.
- Modified `setReserveFreeze()` to set LTV to 0 on freeze, or revert to previous value if unfreezing.

<br>

---

<br>

### 8. **Permission-less movement of stable positions to variable**

<br>

**-> Feature description**

Consequence of a security vulnerability detected end of next year related with stable rate mode and affecting more on Aave v2, [we proposed to completely deprecate it](https://governance.aave.com/t/bgd-full-deprecation-of-stable-rate/16473).

After getting extra approval by the community on the [ARFC stage](https://snapshot.org/#/aave.eth/proposal/0xb58ef33b4b7f4c35b7a6834b24f11b282d713b5e9f527f29d782aef04886c189), we have included on this 3.1 a function to allow permission-less movement of stable rate debt positions to variable, which factually will off-board all users borrowing at stable to variable.
Expand All @@ -137,12 +283,27 @@ This will only affect those v3 instances where stable rate was active at some po

<br>

**-> Files affected and detailed changes**

- [BorrowLogic](../src/core/contracts/protocol/libraries/logic/BorrowLogic.sol)
- Adapted `executeSwapBorrowRateMode()` to allow swap to variable for any user holding a stable rate position.
- [Pool](../src/core/contracts/protocol/pool/Pool.sol)
- Exposed `swapToVariable()` function.
- [ValidationLogic](../src/core/contracts/protocol/libraries/logic/ValidationLogic.sol)
- On `validateSwapRateMode()` remove limitation of frozen assets.

<br>

---

<br>

### 9. Allow setting debt ceiling whenever LT is 0

<nr>

**-> Feature description**

In multiple cases (e.g. stablecoins) an asset is listed as no-collateral and thus no debt ceiling.
When then at a later point the DAO decides to enable it as isolated collateral it currently can't because of a validation checking that there are no suppliers in the pool.

Expand All @@ -152,24 +313,53 @@ The less strict, but still correct approach we added is to allow enabling of the

<br>

**-> Files affected and detailed changes**

- [PoolConfigurator](../src/core/contracts/protocol/pool/PoolConfigurator.sol)
- Added exception of `currentConfig.getLiquidationThreshold() != 0` on `setDebtCeiling()`.

<br>

---

<br>

### 10. New getters on Pool and PoolConfigurator for library addresses

<br>

**-> Feature description**

Operationally and tooling-wise, historically has been problematic to fetch the smart contract addresses of different Solidity libraries connected to the Pool or the PoolConfigurator (e.g. `PoolLogic`, `BorrowLogic`, etc).

To solve that, we have added specific getters for each library on the Pool, like `getPoolLogic()` or `getBorrowLogic()` , returning their addresses, and opening for simple usage both on-chain and off-chain.

<br>

**-> Files affected and detailed changes**

- [PoolConfigurator](../src/core/contracts/protocol/pool/PoolConfigurator.sol)
- Added `getConfiguratorLogic()` getter.
- [Pool](../src/core/contracts/protocol/pool/Pool.sol)
- Added getters for all external libraries (e.g. `getFlashLoanLogic()`, `getBorrowLogic()`).

<br>

---

<br>

### 11. Misc minor bug fixes and sync the codebase with the current v3 production

<br>

**-> Feature description**

Over time, some detected problems have received patches on production, creating certain de-sync between Github and deployed contracts, with the latest being the “head” of Aave.

With 3.1 we sync completely production and off-chain code, and in addition, we do different minor bug fixes.

Files affected:
_This only incorporates changes already present in production_

<br>

0 comments on commit 8035fa4

Please sign in to comment.