Skip to content

Commit

Permalink
Update prime rates and caps (#578)
Browse files Browse the repository at this point in the history
* feat: update prime rates and caps

* Update src/20250122_AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate/PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate.md

Co-authored-by: Ian Flexa <[email protected]>

---------

Co-authored-by: Ian Flexa <[email protected]>
  • Loading branch information
efecarranza and ianflexa authored Jan 28, 2025
1 parent b3de6d5 commit ad47735
Show file tree
Hide file tree
Showing 6 changed files with 285 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
## Reserve changes

### Reserve altered

#### wstETH ([0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0](https://etherscan.io/address/0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0))

| description | value before | value after |
| --- | --- | --- |
| maxVariableBorrowRate | 86.75 % | 85.75 % |
| variableRateSlope1 | 1.75 % | 0.75 % |
| interestRate | ![before](https://dash.onaave.com/api/static?variableRateSlope1=17500000000000000000000000&variableRateSlope2=850000000000000000000000000&optimalUsageRatio=900000000000000000000000000&baseVariableBorrowRate=0&maxVariableBorrowRate=867500000000000000000000000) | ![after](https://dash.onaave.com/api/static?variableRateSlope1=7500000000000000000000000&variableRateSlope2=850000000000000000000000000&optimalUsageRatio=900000000000000000000000000&baseVariableBorrowRate=0&maxVariableBorrowRate=857500000000000000000000000) |

#### rsETH ([0xA1290d69c65A6Fe4DF752f95823fae25cB99e5A7](https://etherscan.io/address/0xA1290d69c65A6Fe4DF752f95823fae25cB99e5A7))

| description | value before | value after |
| --- | --- | --- |
| supplyCap | 10,000 rsETH | 65,000 rsETH |


## Raw diff

```json
{
"reserves": {
"0xA1290d69c65A6Fe4DF752f95823fae25cB99e5A7": {
"supplyCap": {
"from": 10000,
"to": 65000
}
}
},
"strategies": {
"0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0": {
"maxVariableBorrowRate": {
"from": "867500000000000000000000000",
"to": "857500000000000000000000000"
},
"variableRateSlope1": {
"from": "17500000000000000000000000",
"to": "7500000000000000000000000"
}
}
}
}
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import {AaveV3EthereumLidoAssets} from 'aave-address-book/AaveV3EthereumLido.sol';
import {AaveV3PayloadEthereumLido} from 'aave-helpers/src/v3-config-engine/AaveV3PayloadEthereumLido.sol';
import {EngineFlags} from 'aave-v3-origin/contracts/extensions/v3-config-engine/EngineFlags.sol';
import {IAaveV3ConfigEngine} from 'aave-v3-origin/contracts/extensions/v3-config-engine/IAaveV3ConfigEngine.sol';

/**
* @title Prime Instance - wstETH Borrow Rate + rsETH Supply Cap Update
* @author @TokenLogic
* - Snapshot: https://snapshot.org/#/s:aave.eth/proposal/0xfc21203137ea8753ab8903fe4edd568bcaa7ea084586a7acb2c3b361d3dae9c8
* - Discussion: https://governance.aave.com/t/arfc-prime-instance-wsteth-borrow-rate-rseth-supply-cap-update/20644
*/
contract AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate_20250122 is
AaveV3PayloadEthereumLido
{
function rateStrategiesUpdates()
public
pure
override
returns (IAaveV3ConfigEngine.RateStrategyUpdate[] memory)
{
IAaveV3ConfigEngine.RateStrategyUpdate[]
memory rateStrategies = new IAaveV3ConfigEngine.RateStrategyUpdate[](1);
rateStrategies[0] = IAaveV3ConfigEngine.RateStrategyUpdate({
asset: AaveV3EthereumLidoAssets.wstETH_UNDERLYING,
params: IAaveV3ConfigEngine.InterestRateInputData({
optimalUsageRatio: EngineFlags.KEEP_CURRENT,
baseVariableBorrowRate: EngineFlags.KEEP_CURRENT,
variableRateSlope1: 75,
variableRateSlope2: EngineFlags.KEEP_CURRENT
})
});

return rateStrategies;
}
function capsUpdates() public pure override returns (IAaveV3ConfigEngine.CapsUpdate[] memory) {
IAaveV3ConfigEngine.CapsUpdate[] memory capsUpdate = new IAaveV3ConfigEngine.CapsUpdate[](1);

capsUpdate[0] = IAaveV3ConfigEngine.CapsUpdate({
asset: AaveV3EthereumLidoAssets.rsETH_UNDERLYING,
supplyCap: 65_000,
borrowCap: EngineFlags.KEEP_CURRENT
});

return capsUpdate;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import {AaveV3EthereumLido} from 'aave-address-book/AaveV3EthereumLido.sol';
import {ProtocolV3TestBase, ReserveConfig} from 'aave-helpers/src/ProtocolV3TestBase.sol';
import {AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate_20250122} from './AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate_20250122.sol';

/**
* @dev Test for AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate_20250122
* command: FOUNDRY_PROFILE=mainnet forge test --match-path=src/20250122_AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate/AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate_20250122.t.sol -vv
*/
contract AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate_20250122_Test is
ProtocolV3TestBase
{
AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate_20250122 internal proposal;

function setUp() public {
vm.createSelectFork(vm.rpcUrl('mainnet'), 21681966);
proposal = new AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate_20250122();
}

/**
* @dev executes the generic test suite including e2e and config snapshots
*/
function test_defaultProposalExecution() public {
defaultTest(
'AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate_20250122',
AaveV3EthereumLido.POOL,
address(proposal)
);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
---
title: "Prime Instance - wstETH Borrow Rate + rsETH Supply Cap Update"
author: "@TokenLogic"
discussions: "https://governance.aave.com/t/arfc-prime-instance-wsteth-borrow-rate-rseth-supply-cap-update/20644"
snapshot: "https://snapshot.org/#/s:aave.eth/proposal/0xfc21203137ea8753ab8903fe4edd568bcaa7ea084586a7acb2c3b361d3dae9c8"
---

## Simple Summary

This publication proposes reducing the wstETH Slope1 and increasing the rsETH Supply Cap.

## Motivation

The Prime instance of Aave v3 on Ethereum has experienced significant growth since its launch in Q3 2024, attracting over $2 billion in user deposits.

To support continued growth, this proposal suggests lowering the wstETH Slope1 parameter to align the borrow rate with market conditions. Based on feedback from the Renzo and Kelp teams, this adjustment is expected to drive an additional $300 million in user deposits to the Prime instance.

Expected Benefits of Reducing the Slope1 Parameter:

- ~72% increase in LRT deposits.
- ~50% increase in the wstETH Deposit Rate to 60 bps.
- ~50% increase in wstETH Borrow Rate fee generation.
- ~35% increase in the native wETH Deposit Rate.

Lowering the Slope1 parameter will encourage new LRT deposits, boosting the LRT/LST yield-generating strategy, which is projected to outperform the LST/wETH strategy. With LRT deposit incentives, this strategy further enhances Prime’s appeal.

As utilisation of wETH reserves across Core, Spark, and Prime approaches Uoptimal, the Prime instance of Aave v3 offers the highest native yield for LST/wETH yield strategies. The improved wstETH deposit rate solidifies Prime’s competitive position in the market.

### rsETH Supply Cap

rsETH has shown strong growth on the Core instance of Aave v3, while the Prime market has yet to attract rsETH deposits due to the lower wstETH Borrow Rate on Core and a small supply cap.

Lowering the wstETH Borrow Rate on Prime would make borrowing wstETH more attractive. Feedback from the Kelp team suggests strong demand for rsETH beyond the current supply cap’s capacity.

To support leveraged LRT/LST yield strategies, this proposal recommends a significant increase to the rsETH supply cap, enabling larger deposits to scale effectively, optimize returns, and reduce reliance on incentives.

## Specification

#### wstETH Reserve

| Parameter | Current Value | Proposed Value |
| --------- | ------------- | -------------- |
| Uoptimal | 90.00% | 90.00% |
| Base | 0.00% | 0.00% |
| Slope1 | 1.75% | 0.75% |
| Slope2 | 85.00% | 85.00% |

#### rsETH Supply Cap

| Parameter | Current Value | Proposed Value |
| ---------- | ------------- | -------------- |
| Supply Cap | 10,000 | 65,000 |

## References

- Implementation: [AaveV3EthereumLido](https://github.com/bgd-labs/aave-proposals-v3/blob/main/src/20250122_AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate/AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate_20250122.sol)
- Tests: [AaveV3EthereumLido](https://github.com/bgd-labs/aave-proposals-v3/blob/main/src/20250122_AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate/AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate_20250122.t.sol)
- [Snapshot](https://snapshot.org/#/s:aave.eth/proposal/0xfc21203137ea8753ab8903fe4edd568bcaa7ea084586a7acb2c3b361d3dae9c8)
- [Discussion](https://governance.aave.com/t/arfc-prime-instance-wsteth-borrow-rate-rseth-supply-cap-update/20644)

## Copyright

Copyright and related rights waived via [CC0](https://creativecommons.org/publicdomain/zero/1.0/).
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import {GovV3Helpers, IPayloadsControllerCore, PayloadsControllerUtils} from 'aave-helpers/src/GovV3Helpers.sol';
import {GovernanceV3Ethereum} from 'aave-address-book/GovernanceV3Ethereum.sol';
import {EthereumScript} from 'solidity-utils/contracts/utils/ScriptUtils.sol';
import {AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate_20250122} from './AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate_20250122.sol';

/**
* @dev Deploy Ethereum
* deploy-command: make deploy-ledger contract=src/20250122_AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate/PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate_20250122.s.sol:DeployEthereum chain=mainnet
* verify-command: FOUNDRY_PROFILE=mainnet npx catapulta-verify -b broadcast/PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate_20250122.s.sol/1/run-latest.json
*/
contract DeployEthereum is EthereumScript {
function run() external broadcast {
// deploy payloads
address payload0 = GovV3Helpers.deployDeterministic(
type(AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate_20250122)
.creationCode
);

// compose action
IPayloadsControllerCore.ExecutionAction[]
memory actions = new IPayloadsControllerCore.ExecutionAction[](1);
actions[0] = GovV3Helpers.buildAction(payload0);

// register action at payloadsController
GovV3Helpers.createPayload(actions);
}
}

/**
* @dev Create Proposal
* command: make deploy-ledger contract=src/20250122_AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate/PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate_20250122.s.sol:CreateProposal chain=mainnet
*/
contract CreateProposal is EthereumScript {
function run() external {
// create payloads
PayloadsControllerUtils.Payload[] memory payloads = new PayloadsControllerUtils.Payload[](1);

// compose actions for validation
IPayloadsControllerCore.ExecutionAction[]
memory actionsEthereum = new IPayloadsControllerCore.ExecutionAction[](1);
actionsEthereum[0] = GovV3Helpers.buildAction(
type(AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate_20250122)
.creationCode
);
payloads[0] = GovV3Helpers.buildMainnetPayload(vm, actionsEthereum);

// create proposal
vm.startBroadcast();
GovV3Helpers.createProposal(
vm,
payloads,
GovernanceV3Ethereum.VOTING_PORTAL_ETH_POL,
GovV3Helpers.ipfsHashFile(
vm,
'src/20250122_AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate/PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate.md'
)
);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import {ConfigFile} from '../../generator/types';
export const config: ConfigFile = {
rootOptions: {
pools: ['AaveV3EthereumLido'],
title: 'Prime Instance - wstETH Borrow Rate + rsETH Supply Cap Update',
shortName: 'PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate',
date: '20250122',
author: '@TokenLogic',
discussion:
'https://governance.aave.com/t/arfc-prime-instance-wsteth-borrow-rate-rseth-supply-cap-update/20644',
snapshot:
'https://snapshot.org/#/s:aave.eth/proposal/0xfc21203137ea8753ab8903fe4edd568bcaa7ea084586a7acb2c3b361d3dae9c8',
votingNetwork: 'POLYGON',
},
poolOptions: {
AaveV3EthereumLido: {
configs: {
RATE_UPDATE_V3: [
{
asset: 'wstETH',
params: {
optimalUtilizationRate: '',
baseVariableBorrowRate: '',
variableRateSlope1: '0.75',
variableRateSlope2: '',
},
},
],
CAPS_UPDATE: [{asset: 'wstETH', supplyCap: '65000', borrowCap: ''}],
},
cache: {blockNumber: 21681966},
},
},
};

2 comments on commit ad47735

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🌈Test Results No files changed, compilation skipped 2025-01-28T18:28:29.349498Z ERROR cheatcodes: non-empty stderr input=["npx", "@bgd-labs/aave-cli@^1.1.12", "diff-snapshots", "./reports/AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate_20250122_before.json", "./reports/AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate_20250122_after.json", "-o", "./diffs/AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate_20250122_before_AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate_20250122_after.md"] stderr="npm warn exec The following package was not found and will be installed: @bgd-labs/[email protected]\n"

Ran 1 test for src/20250122_AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate/AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate_20250122.t.sol:AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate_20250122_Test
[PASS] test_defaultProposalExecution() (gas: 17625305)
Logs:
0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0
0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
0xdC035D45d973E3EC169d2276DDab16f1e407384F
0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48
0xbf5495Efe5DB9ce00f80364C8B423567e58d2110
0x9D39A5DE30e57443BfF2A8307A4256c8797A3497
0xA1290d69c65A6Fe4DF752f95823fae25cB99e5A7
E2E: Collateral wstETH, TestAsset wstETH
SUPPLY: wstETH, Amount: 25723749209337619036
SUPPLY: wstETH, Amount: 257237492093376190
WITHDRAW: wstETH, Amount: 128618746046688095
WITHDRAW: wstETH, Amount: 128618746046688096
BORROW: wstETH, Amount 257237492093376190
REPAY: wstETH, Amount: 257237492093376190
E2E: Collateral wstETH, TestAsset WETH
SUPPLY: wstETH, Amount: 25723749209337619036
SUPPLY: WETH, Amount: 306486168630235988
WITHDRAW: WETH, Amount: 153243084315117994
WITHDRAW: WETH, Amount: 153243084315117994
BORROW: WETH, Amount 306486168630235988
REPAY: WETH, Amount: 306486168630235988
E2E: Collateral wstETH, TestAsset USDS
SUPPLY: wstETH, Amount: 25723749209337619036
SUPPLY: USDS, Amount: 999758448361291428377
WITHDRAW: USDS, Amount: 499879224180645714188
WITHDRAW: USDS, Amount: 499879224180645714189
BORROW: USDS, Amount 999758448361291428377
REPAY: USDS, Amount: 999758448361291428377
E2E: Collateral wstETH, TestAsset USDC
SUPPLY: wstETH, Amount: 25723749209337619036
SUPPLY: USDC, Amount: 999983520
WITHDRAW: USDC, Amount: 499991760
WITHDRAW: USDC, Amount: 499991759
BORROW: USDC, Amount 999983520
REPAY: USDC, Amount: 999983520
E2E: Collateral wstETH, TestAsset ezETH
SUPPLY: wstETH, Amount: 25723749209337619036
SUPPLY: ezETH, Amount: 296325195386831381
WITHDRAW: ezETH, Amount: 148162597693415690
WITHDRAW: ezETH, Amount: 148162597693415691
E2E: Collateral wstETH, TestAsset sUSDe
SUPPLY: wstETH, Amount: 25723749209337619036
SUPPLY: sUSDe, Amount: 870176626189124640427
WITHDRAW: sUSDe, Amount: 435088313094562320213
WITHDRAW: sUSDe, Amount: 435088313094562320214
E2E: Collateral wstETH, TestAsset GHO
SUPPLY: wstETH, Amount: 25723749209337619036
BORROW: GHO, Amount 1000000000000000000000
REPAY: GHO, Amount: 1000000000000000000000
E2E: Collateral wstETH, TestAsset rsETH
SUPPLY: wstETH, Amount: 25723749209337619036
SUPPLY: rsETH, Amount: 296101102334051701
WITHDRAW: rsETH, Amount: 148050551167025850
WITHDRAW: rsETH, Amount: 148050551167025851

Suite result: ok. 1 passed; 0 failed; 0 skipped; finished in 60.48s (59.77s CPU time)

Ran 1 test suite in 60.48s (60.48s CPU time): 1 tests passed, 0 failed, 0 skipped (1 total tests)

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔧 Build logs
Compiling 552 files with Solc 0.8.20
Solc 0.8.20 finished in 373.27s
Compiler run successful with warnings:
Warning (2018): Function state mutability can be restricted to pure
   --> lib/aave-helpers/src/ProtocolV2TestBase.sol:663:3:
    |
663 |   function _logReserveConfig(ReserveConfig memory config) internal view {
    |   ^ (Relevant source part starts here and spans across multiple lines).

Warning (4591): There are more than 256 warnings. Ignoring the rest.


╭---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------╮
| Contract                                                                                    | Runtime Size (B) | Initcode Size (B) | Runtime Margin (B) | Initcode Margin (B) |
+===============================================================================================================================================================================+
| AaveGovernanceV2                                                                            | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveSafetyModule                                                                            | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveSwapper                                                                                 | 5,447            | 5,883             | 19,129             | 43,269              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV2Avalanche                                                                             | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV2AvalancheAssets                                                                       | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV2Avalanche_ReserveFactorUpdatesMidOctober_20241004                                     | 988              | 1,017             | 23,588             | 48,135              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV2Avalanche_UpdateLegacyGuardian_20241016                                               | 348              | 486               | 24,228             | 48,666              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV2Ethereum                                                                              | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV2EthereumAMM                                                                           | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV2EthereumAMMAssets                                                                     | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV2EthereumAMM_UpdateLegacyGuardian_20241016                                             | 348              | 486               | 24,228             | 48,666              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV2EthereumAssets                                                                        | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV2Ethereum_IncreaseBorrowSlope1ToAllStablecoinsAcrossAllAaveInstances_20241201          | 1,811            | 1,881             | 22,765             | 47,271              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV2Ethereum_ReserveFactorUpdatesMidOctober_20241004                                      | 988              | 1,017             | 23,588             | 48,135              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV2Ethereum_UpdateLegacyGuardian_20241016                                                | 348              | 486               | 24,228             | 48,666              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV2Polygon                                                                               | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV2PolygonAssets                                                                         | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV2Polygon_ReserveFactorUpdatesMidOctober_20241004                                       | 2,384            | 2,454             | 22,192             | 46,698              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV2Polygon_UpdateLegacyGuardian_20241016                                                 | 348              | 486               | 24,228             | 48,666              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Arbitrum                                                                              | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3ArbitrumAssets                                                                        | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3ArbitrumEModes                                                                        | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3ArbitrumExternalLibraries                                                             | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Arbitrum_AddDHEDGEProtocolToFlashBorrowers_20241118                                   | 1,146            | 1,175             | 23,430             | 47,977              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Arbitrum_FluidAlignment_20241127                                                      | 242              | 270               | 24,334             | 48,882              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Arbitrum_GHOCCIP150Upgrade_20241021                                                   | 817              | 846               | 23,759             | 48,306              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Arbitrum_GHOCCIP151Upgrade_20241209                                                   | 4,333            | 4,362             | 20,243             | 44,790              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Arbitrum_GHOStewardV2Upgrade_20241007                                                 | 1,360            | 1,389             | 23,216             | 47,763              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Arbitrum_IncreaseBorrowSlope1ToAllStablecoinsAcrossAllAaveInstances_20241201          | 4,072            | 4,142             | 20,504             | 45,010              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Arbitrum_OnboardEzETHToArbitrumAndBaseInstances_20241221                              | 5,943            | 6,014             | 18,633             | 43,138              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Arbitrum_ReserveFactorUpdatesMidOctober_20241004                                      | 3,227            | 3,297             | 21,349             | 45,855              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Arbitrum_RiskStewardPhase2_20240805                                                   | 307              | 336               | 24,269             | 48,816              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Arbitrum_SeptemberFundingUpdatePartA_20241113                                         | 2,356            | 2,385             | 22,220             | 46,767              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Arbitrum_UpdateLegacyGuardian_20241016                                                | 1,062            | 1,393             | 23,514             | 47,759              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Arbitrum_UpdatePriceCapAdaptersCAPO_20241101                                          | 3,755            | 3,825             | 20,821             | 45,327              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Arbitrum_WBTCReserveFactorAndUOptimalIncrease_20241120                                | 3,504            | 3,574             | 21,072             | 45,578              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Avalanche                                                                             | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3AvalancheAssets                                                                       | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3AvalancheEModes                                                                       | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3AvalancheExternalLibraries                                                            | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Avalanche_IncreaseBorrowSlope1ToAllStablecoinsAcrossAllAaveInstances_20241201         | 3,652            | 3,722             | 20,924             | 45,430              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Avalanche_OnboardAUSD_20241125                                                        | 5,182            | 5,253             | 19,394             | 43,899              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Avalanche_RiskStewardPhase2_20240805                                                  | 178              | 206               | 24,398             | 48,946              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Avalanche_UpdateLegacyGuardian_20241016                                               | 1,062            | 1,393             | 23,514             | 47,759              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Avalanche_UpdatePriceCapAdaptersCAPO_20241101                                         | 4,254            | 4,324             | 20,322             | 44,828              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3BNB                                                                                   | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3BNBAssets                                                                             | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3BNBEModes                                                                             | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3BNBExternalLibraries                                                                  | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3BNB_IncreaseBorrowSlope1ToAllStablecoinsAcrossAllAaveInstances_20241201               | 3,518            | 3,588             | 21,058             | 45,564              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3BNB_OnboardWstETHToAaveV3OnBNBChain_20241030                                          | 5,561            | 5,632             | 19,015             | 43,520              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3BNB_RiskStewardPhase2_20240805                                                        | 178              | 206               | 24,398             | 48,946              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3BNB_UpdateLegacyGuardian_20241016                                                     | 1,062            | 1,393             | 23,514             | 47,759              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3BNB_UpdatePriceCapAdaptersCAPO_20241101                                               | 3,325            | 3,395             | 21,251             | 45,757              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Base                                                                                  | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3BaseAssets                                                                            | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3BaseEModes                                                                            | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3BaseExternalLibraries                                                                 | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Base_AddDHEDGEProtocolToFlashBorrowers_20241118                                       | 1,074            | 1,103             | 23,502             | 48,049              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Base_FluidAlignment_20241127                                                          | 242              | 270               | 24,334             | 48,882              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Base_IncreaseBorrowSlope1ToAllStablecoinsAcrossAllAaveInstances_20241201              | 3,365            | 3,435             | 21,211             | 45,717              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Base_IncreaseCbBTCSupplyCaps_20241004                                                 | 3,146            | 3,216             | 21,430             | 45,936              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Base_OnboardEzETHToArbitrumAndBaseInstances_20241221                                  | 5,855            | 5,926             | 18,721             | 43,226              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Base_ReserveFactorUpdatesMidOctober_20241004                                          | 3,223            | 3,293             | 21,353             | 45,859              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Base_RiskStewardPhase2_20240805                                                       | 178              | 206               | 24,398             | 48,946              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Base_UpdateLegacyGuardian_20241016                                                    | 1,062            | 1,393             | 23,514             | 47,759              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Base_UpdatePriceCapAdaptersCAPO_20241101                                              | 3,203            | 3,273             | 21,373             | 45,879              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum                                                                              | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumAssets                                                                        | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumEModes                                                                        | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumEtherFi                                                                       | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumEtherFiAssets                                                                 | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumEtherFiEModes                                                                 | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumEtherFiExternalLibraries                                                      | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumEtherFi_IncreaseBorrowSlope1ToAllStablecoinsAcrossAllAaveInstances_20241201   | 3,526            | 3,596             | 21,050             | 45,556              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumEtherFi_RiskStewardPhase2_20240805                                            | 178              | 206               | 24,398             | 48,946              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumEtherFi_UpdatePriceCapAdaptersCAPO_20241101                                   | 3,333            | 3,403             | 21,243             | 45,749              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumExternalLibraries                                                             | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumLido                                                                          | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumLidoAssets                                                                    | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumLidoEModes                                                                    | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumLidoExternalLibraries                                                         | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumLido_AaveLiquidityCommitteeFundingPhaseV_20241209                             | 4,744            | 4,773             | 19,832             | 44,379              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumLido_AutomatedAGRSActivation_20241108                                         | 3,046            | 3,075             | 21,530             | 46,077              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumLido_Deploy10MGHOIntoAaveV3LidoInstance_20241229                              | 1,080            | 1,109             | 23,496             | 48,043              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumLido_FluidAlignment_20241127                                                  | 242              | 270               | 24,334             | 48,882              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumLido_IncreaseBorrowSlope1ToAllStablecoinsAcrossAllAaveInstances_20241201      | 3,239            | 3,309             | 21,337             | 45,843              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumLido_OnboardAndEnableSUSDeLiquidEModeOnAaveV3MainnetAndLidoInstances_20241108 | 5,657            | 5,728             | 18,919             | 43,424              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumLido_OnboardEzETHToLidoInstance_20241021                                      | 6,194            | 6,265             | 18,382             | 42,887              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumLido_OnboardGHOAndMigrateStreamsToLidoInstance_20241104                       | 9,102            | 9,173             | 15,474             | 39,979              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumLido_OnboardRsETHToLidoInstance_20241205                                      | 5,552            | 5,623             | 19,024             | 43,529              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumLido_OrbitProgramRenewal_20241210                                             | 1,196            | 1,225             | 23,380             | 47,927              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumLido_PrimeInstanceWstETHBorrowRateRsETHSupplyCapUpdate_20250122               | 3,425            | 3,495             | 21,151             | 45,657              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumLido_ProposalToRemoveUSDSFromSUSDeLiquidEModeInAavePrimeInstance_20241224     | 3,397            | 3,467             | 21,179             | 45,685              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumLido_RiskStewardPhase2_20240805                                               | 178              | 206               | 24,398             | 48,946              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumLido_USDSBorrowRateUpdateOnCoreAndPrimeInstances_20241122                     | 3,248            | 3,318             | 21,328             | 45,834              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumLido_USDSInterestRateCurveUpdate_20241223                                     | 3,239            | 3,309             | 21,337             | 45,843              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumLido_UpdateLidoGHOBaseBorrowRate_20250121                                     | 3,248            | 3,318             | 21,328             | 45,834              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumLido_UpdatePriceCapAdaptersCAPO_20241101                                      | 3,216            | 3,286             | 21,360             | 45,866              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumLido_WstETHReserveUpdate_20241203                                             | 3,195            | 3,265             | 21,381             | 45,887              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3EthereumLido_WstETHSlope1UoptimalUpdate_20241001                                      | 3,250            | 3,320             | 21,326             | 45,832              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_AaveBGDPhase4_20241025                                                       | 1,407            | 1,436             | 23,169             | 47,716              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_AaveCertoraContinuousSecurityServices_20241014                               | 1,567            | 1,596             | 23,009             | 47,556              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_AaveV33SherlockContestFunding_20250106                                       | 1,582            | 1,611             | 22,994             | 47,541              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_ChaosLabsAaveRiskManagementServiceRenewal_20241012                           | 1,255            | 1,284             | 23,321             | 47,868              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_EnableLBTCWBTCLiquidEModeOnAavev3CoreInstance_20241223                       | 5,521            | 5,592             | 19,055             | 43,560              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_EnableSUSDeUSDTLiquid_20241125                                               | 3,117            | 3,187             | 21,459             | 45,965              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_FixUSDSBorrowRateToMatchSkySavingsRate_20241022                              | 3,238            | 3,308             | 21,338             | 45,844              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_FluidAlignment_20241127                                                      | 242              | 270               | 24,334             | 48,882              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_FluidAlignment_TokenTransfers_20241127                                       | 619              | 648               | 23,957             | 48,504              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_GHOCCIP150Upgrade_20241021                                                   | 817              | 846               | 23,759             | 48,306              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_GHOCCIP151Upgrade_20241209                                                   | 3,563            | 3,592             | 21,013             | 45,560              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_GHOStewardV2Upgrade_20241007                                                 | 2,895            | 2,924             | 21,681             | 46,228              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_IncreaseBorrowSlope1ToAllStablecoinsAcrossAllAaveInstances_20241201          | 4,212            | 4,282             | 20,364             | 44,870              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_IncreaseCbBTCSupplyCaps_20241004                                             | 3,150            | 3,220             | 21,426             | 45,932              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_IncreaseUSDSBorrowRateToMatchSkySavingsRate_20241016                         | 3,239            | 3,309             | 21,337             | 45,843              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_OnboardAndEnableSUSDeLiquidEModeOnAaveV3MainnetAndLidoInstances_20241108     | 3,817            | 3,887             | 20,759             | 45,265              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_OnboardRsETHToAaveV3Ethereum_20241104                                        | 5,957            | 6,028             | 18,619             | 43,124              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_PYUSDReserveConfigurationUpdateIncentiveCampaign_20241031                    | 3,988            | 4,059             | 20,588             | 45,093              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_ProposalToRemoveUSDSFromSUSDeLiquidEModeInAavePrimeInstance_20241224         | 3,215            | 3,285             | 21,361             | 45,867              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_RemoveFraxFromIsolationModeOnAaveV3Mainnet_20241105                          | 3,226            | 3,296             | 21,350             | 45,856              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_RenewLlamaRiskAsRiskServiceProvider_20241013                                 | 1,068            | 1,097             | 23,508             | 48,055              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_RiskStewardPhase2_20240805                                                   | 307              | 336               | 24,269             | 48,816              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_SafetyModuleStkAAVEReEnableRewards_20241106                                  | 910              | 939               | 23,666             | 48,213              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_SeptemberFundingUpdatePartA_20241113                                         | 7,361            | 7,390             | 17,215             | 41,762              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_SetREZKERNELAndRsETHEmissionAdminToACI_20250117                              | 3,539            | 3,610             | 21,037             | 45,542              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_StkGHOIncentivesQ4_20241029                                                  | 1,458            | 1,487             | 23,118             | 47,665              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_TokenLogicFinancialServiceProvider_20241213                                  | 4,474            | 4,503             | 20,102             | 44,649              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_USDSBorrowRateUpdateOnCoreAndPrimeInstances_20241122                         | 3,239            | 3,309             | 21,337             | 45,843              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_USDSInterestRateCurveUpdate_20241223                                         | 3,230            | 3,300             | 21,346             | 45,852              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_UpdateLegacyGuardian_20241016                                                | 1,062            | 1,413             | 23,514             | 47,739              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_UpdatePriceCapAdaptersCAPO_20241101                                          | 5,697            | 5,767             | 18,879             | 43,385              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_WBTCReserveFactorAndUOptimalIncrease_20241120                                | 3,504            | 3,574             | 21,072             | 45,578              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_WeETHRiskParameterAdjustment_20241223                                        | 3,220            | 3,290             | 21,356             | 45,862              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_WstETHReserveBorrowRateUpdateMainInstance_20241024                           | 3,227            | 3,297             | 21,349             | 45,855              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_WstETHReserveUpdate_20241203                                                 | 3,186            | 3,256             | 21,390             | 45,896              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Ethereum_karpatkeyGhoGrowth_20241231                                                  | 1,085            | 1,114             | 23,491             | 48,038              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Gnosis                                                                                | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3GnosisAssets                                                                          | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3GnosisEModes                                                                          | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3GnosisExternalLibraries                                                               | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Gnosis_AaveV3GnosisInstanceUpdates_20241224                                           | 3,963            | 4,033             | 20,613             | 45,119              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Gnosis_IncreaseBorrowSlope1ToAllStablecoinsAcrossAllAaveInstances_20241201            | 3,649            | 3,719             | 20,927             | 45,433              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Gnosis_ReserveFactorUpdatesMidOctober_20241004                                        | 3,225            | 3,295             | 21,351             | 45,857              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Gnosis_RiskStewardPhase2_20240805                                                     | 178              | 206               | 24,398             | 48,946              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Gnosis_UpdateLegacyGuardian_20241016                                                  | 1,062            | 1,393             | 23,514             | 47,759              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Gnosis_UpdatePriceCapAdaptersCAPO_20241101                                            | 3,425            | 3,495             | 21,151             | 45,657              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Metis                                                                                 | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3MetisAssets                                                                           | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3MetisEModes                                                                           | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3MetisExternalLibraries                                                                | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Metis_IncreaseBorrowSlope1ToAllStablecoinsAcrossAllAaveInstances_20241201             | 3,508            | 3,578             | 21,068             | 45,574              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Metis_RiskStewardPhase2_20240805                                                      | 178              | 206               | 24,398             | 48,946              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Metis_UpdateLegacyGuardian_20241016                                                   | 1,062            | 1,393             | 23,514             | 47,759              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Metis_UpdatePriceCapAdaptersCAPO_20241101                                             | 3,315            | 3,385             | 21,261             | 45,767              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Optimism                                                                              | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3OptimismAssets                                                                        | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3OptimismEModes                                                                        | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3OptimismExternalLibraries                                                             | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Optimism_AddDHEDGEProtocolToFlashBorrowers_20241118                                   | 1,362            | 1,391             | 23,214             | 47,761              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Optimism_IncreaseBorrowSlope1ToAllStablecoinsAcrossAllAaveInstances_20241201          | 3,931            | 4,001             | 20,645             | 45,151              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Optimism_ReserveFactorUpdatesMidOctober_20241004                                      | 3,227            | 3,297             | 21,349             | 45,855              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Optimism_RiskStewardPhase2_20240805                                                   | 178              | 206               | 24,398             | 48,946              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Optimism_SeptemberFundingUpdatePartA_20241113                                         | 2,218            | 2,247             | 22,358             | 46,905              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Optimism_UpdateLegacyGuardian_20241016                                                | 1,062            | 1,393             | 23,514             | 47,759              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Optimism_UpdatePriceCapAdaptersCAPO_20241101                                          | 3,755            | 3,825             | 20,821             | 45,327              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Optimism_WBTCReserveFactorAndUOptimalIncrease_20241120                                | 3,504            | 3,574             | 21,072             | 45,578              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Polygon                                                                               | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3PolygonAssets                                                                         | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3PolygonEModes                                                                         | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3PolygonExternalLibraries                                                              | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Polygon_AddDHEDGEProtocolToFlashBorrowers_20241118                                    | 640              | 669               | 23,936             | 48,483              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Polygon_IncreaseBorrowSlope1ToAllStablecoinsAcrossAllAaveInstances_20241201           | 3,790            | 3,860             | 20,786             | 45,292              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Polygon_ReserveFactorUpdatesMidOctober_20241004                                       | 3,226            | 3,296             | 21,350             | 45,856              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Polygon_RiskStewardPhase2_20240805                                                    | 178              | 206               | 24,398             | 48,946              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Polygon_SeptemberFundingUpdatePartA_20241113                                          | 5,873            | 5,902             | 18,703             | 43,250              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Polygon_UpdateLegacyGuardian_20241016                                                 | 1,062            | 1,393             | 23,514             | 47,759              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Polygon_UpdatePriceCapAdaptersCAPO_20241101                                           | 4,252            | 4,322             | 20,324             | 44,830              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Polygon_WBTCReserveFactorAndUOptimalIncrease_20241120                                 | 3,503            | 3,573             | 21,073             | 45,579              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Scroll                                                                                | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3ScrollAssets                                                                          | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------

Please sign in to comment.