Skip to content

Commit

Permalink
Karpatkey-Gho-Growth (#559)
Browse files Browse the repository at this point in the history
* feat: karpatkey funding proposal - gho growth

* feat: update md file and merge main

* chore: remove unused dependencies

* chore: update aave-helper

* Update src/20241231_AaveV3Ethereum_karpatkeyGhoGrowth/karpatkeyGhoGrowth.md

Co-authored-by: Harsh Pandey <[email protected]>

---------

Co-authored-by: Harsh Pandey <[email protected]>
  • Loading branch information
Luigy-Lemon and brotherlymite authored Jan 9, 2025
1 parent 4029849 commit 57aaaa1
Show file tree
Hide file tree
Showing 6 changed files with 279 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## Raw diff

```json
{}
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import {CollectorUtils, ICollector} from 'aave-helpers/src/CollectorUtils.sol';
import {AaveV3Ethereum, AaveV3EthereumAssets} from 'aave-address-book/AaveV3Ethereum.sol';
import {AaveV3EthereumLido, AaveV3EthereumLidoAssets} from 'aave-address-book/AaveV3EthereumLido.sol';
import {IProposalGenericExecutor} from 'aave-helpers/src/interfaces/IProposalGenericExecutor.sol';

/**
* @title karpatkey Gho Growth Service Provider
* @author karpatkey
* - Snapshot: https://snapshot.box/#/s:aave.eth/proposal/0x87585d9dcb104d2946ca2def6bcf57708480fafc5e310de4850dc2fbe1820893
* - Discussion: https://governance.aave.com/t/arfc-karpatkey-as-gho-growth-service-provider/20206
*/
contract AaveV3Ethereum_karpatkeyGhoGrowth_20241231 is IProposalGenericExecutor {
using CollectorUtils for ICollector;

uint256 public constant KARPATKEY_STREAM_AMOUNT = 250_000e18;
address public constant KARPATKEY_SAFE = 0x58e6c7ab55Aa9012eAccA16d1ED4c15795669E1C;
uint256 public constant STREAM_DURATION = 180 days;
uint256 public constant STREAM_START_TIME = 1734912000; // Sun Dec 23 2024 12:00 GMT+0000
uint256 public constant ACTUAL_STREAM_AMOUNT =
(KARPATKEY_STREAM_AMOUNT / STREAM_DURATION) * STREAM_DURATION;

function execute() external override {
uint256 backDatedAmount = (ACTUAL_STREAM_AMOUNT * (block.timestamp - STREAM_START_TIME)) /
STREAM_DURATION;

// transfer backend amount
AaveV3Ethereum.COLLECTOR.transfer(
AaveV3EthereumLidoAssets.GHO_A_TOKEN,
KARPATKEY_SAFE,
backDatedAmount
);

// stream
AaveV3Ethereum.COLLECTOR.stream(
CollectorUtils.CreateStreamInput({
underlying: AaveV3EthereumLidoAssets.GHO_A_TOKEN,
receiver: KARPATKEY_SAFE,
amount: ACTUAL_STREAM_AMOUNT - backDatedAmount,
start: block.timestamp,
duration: STREAM_DURATION + STREAM_START_TIME - block.timestamp
})
);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import {AaveV3Ethereum, AaveV3EthereumAssets} from 'aave-address-book/AaveV3Ethereum.sol';
import {AaveV3EthereumLido, AaveV3EthereumLidoAssets} from 'aave-address-book/AaveV3EthereumLido.sol';
import {IERC20} from 'solidity-utils/contracts/oz-common/interfaces/IERC20.sol';

import 'forge-std/Test.sol';
import {ProtocolV3TestBase, ReserveConfig} from 'aave-helpers/src/ProtocolV3TestBase.sol';
import {AaveV3Ethereum_karpatkeyGhoGrowth_20241231} from './AaveV3Ethereum_karpatkeyGhoGrowth_20241231.sol';

/**
* @dev Test for AaveV3Ethereum_karpatkeyGhoGrowth_20241231
* command: FOUNDRY_PROFILE=mainnet forge test --match-path=src/20241231_AaveV3Ethereum_karpatkeyGhoGrowth/AaveV3Ethereum_karpatkeyGhoGrowth_20241231.t.sol -vv
*/
contract AaveV3Ethereum_karpatkeyGhoGrowth_20241231_Test is ProtocolV3TestBase {
AaveV3Ethereum_karpatkeyGhoGrowth_20241231 internal proposal;

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

/**
* @dev executes the generic test suite including e2e and config snapshots
*/
function test_defaultProposalExecution() public {
defaultTest(
'AaveV3Ethereum_karpatkeyGhoGrowth_20241231',
AaveV3Ethereum.POOL,
address(proposal)
);
}

function test_stream() public {
uint256 backDatedAmount = (proposal.ACTUAL_STREAM_AMOUNT() *
(block.timestamp - proposal.STREAM_START_TIME())) / proposal.STREAM_DURATION();

uint256 nextCollectorStreamID = AaveV3Ethereum.COLLECTOR.getNextStreamId();

executePayload(vm, address(proposal));

(
address sender,
address recipient,
uint256 deposit,
address tokenAddress,
uint256 startTime,
uint256 stopTime,
uint256 remainingBalance,

) = AaveV3Ethereum.COLLECTOR.getStream(nextCollectorStreamID);

assertEq(sender, address(AaveV3Ethereum.COLLECTOR));
assertEq(recipient, proposal.KARPATKEY_SAFE());
assertEq(deposit, proposal.ACTUAL_STREAM_AMOUNT() - backDatedAmount);
assertEq(tokenAddress, AaveV3EthereumLidoAssets.GHO_A_TOKEN);
assertEq(startTime, block.timestamp);
assertEq(stopTime, proposal.STREAM_START_TIME() + proposal.STREAM_DURATION());
assertEq(remainingBalance, proposal.ACTUAL_STREAM_AMOUNT() - backDatedAmount);

// Can withdraw during stream
vm.warp(block.timestamp + 30 days);

uint256 collectorGhoBalanceBefore = IERC20(AaveV3EthereumLidoAssets.GHO_A_TOKEN).balanceOf(
address(AaveV3Ethereum.COLLECTOR)
);
uint256 receiverGhoBalanceBefore = IERC20(AaveV3EthereumLidoAssets.GHO_A_TOKEN).balanceOf(
proposal.KARPATKEY_SAFE()
);

vm.startPrank(proposal.KARPATKEY_SAFE());
AaveV3Ethereum.COLLECTOR.withdrawFromStream(
nextCollectorStreamID,
proposal.ACTUAL_STREAM_AMOUNT() / 9
);
vm.stopPrank();

assertGt(
IERC20(AaveV3EthereumLidoAssets.GHO_A_TOKEN).balanceOf(proposal.KARPATKEY_SAFE()),
receiverGhoBalanceBefore
);

assertLt(
IERC20(AaveV3EthereumLidoAssets.GHO_A_TOKEN).balanceOf(address(AaveV3Ethereum.COLLECTOR)),
collectorGhoBalanceBefore
);

// Can withdraw post stream all remaining funds
vm.warp(block.timestamp + proposal.STREAM_DURATION());

(, , , , , , uint256 remaining, ) = AaveV3Ethereum.COLLECTOR.getStream(nextCollectorStreamID);

vm.startPrank(proposal.KARPATKEY_SAFE());
AaveV3Ethereum.COLLECTOR.withdrawFromStream(nextCollectorStreamID, remaining);
vm.stopPrank();

assertEq(
IERC20(AaveV3EthereumLidoAssets.GHO_A_TOKEN).balanceOf(proposal.KARPATKEY_SAFE()),
receiverGhoBalanceBefore + proposal.ACTUAL_STREAM_AMOUNT() - backDatedAmount
);
}
}
16 changes: 16 additions & 0 deletions src/20241231_AaveV3Ethereum_karpatkeyGhoGrowth/config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import {ConfigFile} from '../../generator/types';
export const config: ConfigFile = {
rootOptions: {
pools: ['AaveV3Ethereum'],
title: 'karpatkey Gho Growth Service Provider',
shortName: 'karpatkeyGhoGrowthServiceProvider',
date: '20241231',
author: 'karpatkey',
discussion:
' https://governance.aave.com/t/arfc-karpatkey-as-gho-growth-service-provider/20206',
snapshot:
'https://snapshot.box/#/s:aave.eth/proposal/0x87585d9dcb104d2946ca2def6bcf57708480fafc5e310de4850dc2fbe1820893',
votingNetwork: 'POLYGON',
},
poolOptions: {AaveV3Ethereum: {configs: {}, cache: {blockNumber: 21524445}}},
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
title: "Funding Proposal: karpatkey as GHO Growth Service Provider"
author: "karpatkey"
discussions: https://governance.aave.com/t/arfc-karpatkey-as-gho-growth-service-provider/20206
snapshot: https://snapshot.box/#/s:aave.eth/proposal/0x87585d9dcb104d2946ca2def6bcf57708480fafc5e310de4850dc2fbe1820893
---

## Simple Summary

The AIP proposes appointing karpatkey as a service provider dedicated to drive the growth of GHO for the following 6 months, with an initial focus on opportunities within the Gnosis Chain while also expanding efforts to other chains.

## Motivation

Over the past 12 months, karpatkey has been pleased to have supported the AaveDAO in improving treasury management practices and GHO adoption (see Phase 1 and Phase 2 for more details). These efforts have been a significant success, and will continue, with the deployment of the Finance Steward upcoming features. That said, by focusing on increasing GHO’s adoption, we believe karpatkey can provide more value to the Aave ecosystem.

The stablecoin ecosystem is one of the most dynamic and competitive sectors in the DeFi landscape, and the accelerating adoption of GHO represents a unique opportunity for Aave DAO to solidify its position as a leader in this space. Since its deployment over a year ago, GHO achieved a notable milestone of a 180M supply across mainnet and Arbitrum, market depth in most reputable DEXes with total liquidity ranging between $30M and $50M. This success is a testament to the strength of Aave’s products, user base and brand.

While GHO’s initial growth has been remarkable, the stablecoin market is evolving rapidly. The demand for reliable, decentralised stablecoins continues to grow, and GHO is well-positioned to capture this market—provided we continue to expand its utility, adoption, and ecosystem integrations proactively.

karpatkey has the tools and resources to capitalise on the range of opportunities GHO presents. With a proven track record in DeFi innovation and strong partnerships with other DAOs, we are excited to present our new 6-month proposal to Aave DAO, focused on the areas where we can contribute most.

To drive proactive growth and expansion of GHO across multiple blockchains, we are proposing a phased mandate that includes tailored strategies for each ecosystem, with the initial phase prioritizing the deployment and adoption of GHO on the Gnosis Chain. With an Aave instance holding $100M, Gnosis Chain currently has a total value locked of $410M and a thriving environment of stablecoins, which includes Gnosis Pay, Monerium’s e-money EURe and other RWAs. We plan to focus primarily on opportunities where both AaveDAO and GnosisDAO can mutually benefit from a vibrant GHO ecosystem on Gnosis Chain, taking advantage of karpatkey’s unique position supporting both the DeFi ecosystems of both DAOs.

## Terms

- 6-month engagement, December 23th 2024 to June 21th 2025;
- $250k, streamed linearly throughout the engagement;

## Specification

Create the following stream allowing TokenLogic to withdraw aEthLidoGHO from the Prime instance.

- Recipient: karpatkey
- Stream: 250K aEthLidoGHO over 180 days
- Address: `0x58e6c7ab55aa9012eacca16d1ed4c15795669e1c`

The stream shall commence the next block from when the previous stream finishes.

## References

- Implementation: [AaveV3Ethereum](https://github.com/bgd-labs/aave-proposals-v3/blob/main/src/20241231_AaveV3Ethereum_karpatkeyGhoGrowth/AaveV3Ethereum_karpatkeyGhoGrowth_20241231.sol)
- Tests: [AaveV3Ethereum](https://github.com/bgd-labs/aave-proposals-v3/blob/main/src/20241231_AaveV3Ethereum_karpatkeyGhoGrowth/AaveV3Ethereum_karpatkeyGhoGrowth_20241231.t.sol)
[Snapshot](https://snapshot.box/#/s:aave.eth/proposal/0x87585d9dcb104d2946ca2def6bcf57708480fafc5e310de4850dc2fbe1820893)
- [Discussion](https://governance.aave.com/t/arfc-karpatkey-as-gho-growth-service-provider/20206)

## 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,60 @@
// 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 {AaveV3Ethereum_karpatkeyGhoGrowth_20241231} from './AaveV3Ethereum_karpatkeyGhoGrowth_20241231.sol';

/**
* @dev Deploy Ethereum
* deploy-command: make deploy-ledger contract=src/20241231_AaveV3Ethereum_karpatkeyGhoGrowth/AaveV3Ethereum_karpatkeyGhoGrowth_20241231.s.sol:DeployEthereum chain=mainnet
* verify-command: FOUNDRY_PROFILE=mainnet npx catapulta-verify -b broadcast/AaveV3Ethereum_karpatkeyGhoGrowth_20241231.s.sol/1/run-latest.json
*/
contract DeployEthereum is EthereumScript {
function run() external broadcast {
// deploy payloads
address payload0 = GovV3Helpers.deployDeterministic(
type(AaveV3Ethereum_karpatkeyGhoGrowth_20241231).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/20241231_AaveV3Ethereum_karpatkeyGhoGrowth/AaveV3Ethereum_karpatkeyGhoGrowth_20241231.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(AaveV3Ethereum_karpatkeyGhoGrowth_20241231).creationCode
);
payloads[0] = GovV3Helpers.buildMainnetPayload(vm, actionsEthereum);

// create proposal
vm.startBroadcast();
GovV3Helpers.createProposal(
vm,
payloads,
GovernanceV3Ethereum.VOTING_PORTAL_ETH_POL,
GovV3Helpers.ipfsHashFile(
vm,
'src/20241231_AaveV3Ethereum_karpatkeyGhoGrowth/karpatkeyGhoGrowth.md'
)
);
}
}

2 comments on commit 57aaaa1

@github-actions
Copy link

Choose a reason for hiding this comment

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

:finnadie:Test Results No files changed, compilation skipped 2025-01-09T12:04:52.318926Z ERROR cheatcodes: non-empty stderr input=["npx", "@bgd-labs/aave-cli@^1.1.12", "diff-snapshots", "./reports/AaveV3Ethereum_karpatkeyGhoGrowth_20241231_before.json", "./reports/AaveV3Ethereum_karpatkeyGhoGrowth_20241231_after.json", "-o", "./diffs/AaveV3Ethereum_karpatkeyGhoGrowth_20241231_before_AaveV3Ethereum_karpatkeyGhoGrowth_20241231_after.md"] stderr="npm warn exec The following package was not found and will be installed: @bgd-labs/[email protected]\n"

Ran 2 tests for src/20241231_AaveV3Ethereum_karpatkeyGhoGrowth/AaveV3Ethereum_karpatkeyGhoGrowth_20241231.t.sol:AaveV3Ethereum_karpatkeyGhoGrowth_20241231_Test
[PASS] test_defaultProposalExecution() (gas: 243195233)
Logs:
0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0
0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599
0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48
0x6B175474E89094C44Da98b954EedeAC495271d0F
0x514910771AF9Ca656af840dff83E8264EcF986CA
0xBe9895146f7AF43049ca1c1AE358B0541Ea49704
0xdAC17F958D2ee523a2206206994597C13D831ec7
0xae78736Cd615f374D3085123A210448E74Fc6393
0x5f98805A4E8be255a32880FDeC7F6728C6568bA0
0xD533a949740bb3306d119CC777fa900bA034cd52
0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2
0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F
0xba100000625a3754423978a60c9317c58a424e3D
0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984
0x5A98FcBEA516Cf06857215779Fd812CA3beF1B32
0xC18360217D8F7Ab5e7c516566761Ea12Ce7F9D72
0x111111111117dC0aa78b770fA6A738034120C302
0x853d955aCEf822Db058eb8505911ED77F175b99e
0xD33526068D116cE69F19A9ee46F0bd304F21A51f
0xAf5191B0De278C7286d6C7CC6ab6BB8A73bA2Cd6
0xdeFA4e8a7bcBA345F687a2f1456F5Edd9CE97202
0x3432B6A60D23Ca0dFCa7761B7ab56459D9C964D0
0xf939E0A03FB07F59A73314E73794Be0E57ac1b4E
0x6c3ea9036406852006290770BEdFcAbA0e23A0e8
0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee
0xf1C9acDc66974dFB6dEcB12aA385b9cD01190E38
0x4c9EDD5852cd905f086C759E8383e09bff1E68B3
0xA35b1B31Ce002FBF2058D22F30f95D405200A15b
0x18084fbA666a33d37592fA2633fD49a74DD93a88
0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf
0xdC035D45d973E3EC169d2276DDab16f1e407384F
0xA1290d69c65A6Fe4DF752f95823fae25cB99e5A7
E2E: Collateral WETH, TestAsset WETH
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: WETH, Amount: 297941953448652286
WITHDRAW: WETH, Amount: 148970976724326143
WITHDRAW: WETH, Amount: 148970976724326143
BORROW: WETH, Amount 297941953448652286
REPAY: WETH, Amount: 297941953448652286
E2E: Collateral WETH, TestAsset wstETH
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: wstETH, Amount: 250513554670937352
WITHDRAW: wstETH, Amount: 125256777335468676
WITHDRAW: wstETH, Amount: 125256777335468676
BORROW: wstETH, Amount 250513554670937352
REPAY: wstETH, Amount: 250513554670937352
E2E: Collateral WETH, TestAsset WBTC
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: WBTC, Amount: 1068139
WITHDRAW: WBTC, Amount: 534069
WITHDRAW: WBTC, Amount: 534071
BORROW: WBTC, Amount 1068139
REPAY: WBTC, Amount: 1068139
E2E: Collateral WETH, TestAsset USDC
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: USDC, Amount: 1000015990
WITHDRAW: USDC, Amount: 500007995
WITHDRAW: USDC, Amount: 500007995
BORROW: USDC, Amount 1000015990
REPAY: USDC, Amount: 1000015990
E2E: Collateral WETH, TestAsset DAI
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: DAI, Amount: 999733770896810179449
WITHDRAW: DAI, Amount: 499866885448405089724
WITHDRAW: DAI, Amount: 499866885448405089725
BORROW: DAI, Amount 999733770896810179449
REPAY: DAI, Amount: 999733770896810179449
E2E: Collateral WETH, TestAsset LINK
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: LINK, Amount: 49502547734506076674
WITHDRAW: LINK, Amount: 24751273867253038337
WITHDRAW: LINK, Amount: 24751273867253038338
BORROW: LINK, Amount 49502547734506076674
REPAY: LINK, Amount: 49502547734506076674
E2E: Collateral WETH, TestAsset AAVE
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: AAVE, Amount: 3208976625577853982
WITHDRAW: AAVE, Amount: 1604488312788926991
WITHDRAW: AAVE, Amount: 1604488312788926991
E2E: Collateral WETH, TestAsset cbETH
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: cbETH, Amount: 273435628434486807
WITHDRAW: cbETH, Amount: 136717814217243403
WITHDRAW: cbETH, Amount: 136717814217243404
BORROW: cbETH, Amount 273435628434486807
REPAY: cbETH, Amount: 273435628434486807
E2E: Collateral WETH, TestAsset USDT
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: USDT, Amount: 1001341798
WITHDRAW: USDT, Amount: 500670899
WITHDRAW: USDT, Amount: 500670900
BORROW: USDT, Amount 1001341798
REPAY: USDT, Amount: 1001341798
E2E: Collateral WETH, TestAsset rETH
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: rETH, Amount: 264875946628661297
WITHDRAW: rETH, Amount: 132437973314330648
WITHDRAW: rETH, Amount: 132437973314330649
BORROW: rETH, Amount 264875946628661297
REPAY: rETH, Amount: 264875946628661297
E2E: Collateral WETH, TestAsset LUSD
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: LUSD, Amount: 1001163331768248068891
WITHDRAW: LUSD, Amount: 500581665884124034445
WITHDRAW: LUSD, Amount: 500581665884124034446
BORROW: LUSD, Amount 1001163331768248068891
REPAY: LUSD, Amount: 1001163331768248068891
E2E: Collateral WETH, TestAsset CRV
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: CRV, Amount: 1110118406228314877670
WITHDRAW: CRV, Amount: 555059203114157438835
WITHDRAW: CRV, Amount: 555059203114157438836
BORROW: CRV, Amount 1110118406228314877670
REPAY: CRV, Amount: 1110118406228314877670
E2E: Collateral WETH, TestAsset MKR
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: MKR, Amount: 668918425365503862
WITHDRAW: MKR, Amount: 334459212682751931
WITHDRAW: MKR, Amount: 334459212682751930
BORROW: MKR, Amount 668918425365503862
REPAY: MKR, Amount: 668918425365503862
E2E: Collateral WETH, TestAsset SNX
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: SNX, Amount: 515767755246950503805
WITHDRAW: SNX, Amount: 257883877623475251902
WITHDRAW: SNX, Amount: 257883877623475251904
BORROW: SNX, Amount 515767755246950503805
REPAY: SNX, Amount: 515767755246950503805
E2E: Collateral WETH, TestAsset BAL
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: BAL, Amount: 396542152430803394400
WITHDRAW: BAL, Amount: 198271076215401697200
WITHDRAW: BAL, Amount: 198271076215401697200
BORROW: BAL, Amount 396542152430803394400
REPAY: BAL, Amount: 396542152430803394400
E2E: Collateral WETH, TestAsset UNI
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: UNI, Amount: 75063835787230176286
WITHDRAW: UNI, Amount: 37531917893615088143
WITHDRAW: UNI, Amount: 37531917893615088144
BORROW: UNI, Amount 75063835787230176286
REPAY: UNI, Amount: 75063835787230176286
E2E: Collateral WETH, TestAsset LDO
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: LDO, Amount: 537524138126137209583
WITHDRAW: LDO, Amount: 268762069063068604791
WITHDRAW: LDO, Amount: 268762069063068604792
BORROW: LDO, Amount 537524138126137209583
REPAY: LDO, Amount: 537524138126137209583
E2E: Collateral WETH, TestAsset ENS
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: ENS, Amount: 30221278292696463234
WITHDRAW: ENS, Amount: 15110639146348231617
WITHDRAW: ENS, Amount: 15110639146348231616
BORROW: ENS, Amount 30221278292696463234
REPAY: ENS, Amount: 30221278292696463234
E2E: Collateral WETH, TestAsset 1INCH
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: 1INCH, Amount: 2584125227742186477453
WITHDRAW: 1INCH, Amount: 1292062613871093238726
WITHDRAW: 1INCH, Amount: 1292062613871093238727
BORROW: 1INCH, Amount 2584125227742186477453
REPAY: 1INCH, Amount: 2584125227742186477453
E2E: Collateral WETH, TestAsset FRAX
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: FRAX, Amount: 1004907839248872390401
WITHDRAW: FRAX, Amount: 502453919624436195200
WITHDRAW: FRAX, Amount: 502453919624436195201
BORROW: FRAX, Amount 1004907839248872390401
REPAY: FRAX, Amount: 1004907839248872390401
E2E: Collateral WETH, TestAsset GHO
SUPPLY: WETH, Amount: 29794195344865228660
BORROW: GHO, Amount 1000000000000000000000
REPAY: GHO, Amount: 1000000000000000000000
E2E: Collateral WETH, TestAsset RPL
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: RPL, Amount: 87469038584412275586
WITHDRAW: RPL, Amount: 43734519292206137793
WITHDRAW: RPL, Amount: 43734519292206137794
BORROW: RPL, Amount 87469038584412275586
REPAY: RPL, Amount: 87469038584412275586
E2E: Collateral WETH, TestAsset sDAI
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: sDAI, Amount: 883586521516727865636
WITHDRAW: sDAI, Amount: 441793260758363932818
WITHDRAW: sDAI, Amount: 441793260758363932819
E2E: TestAsset STG SKIPPED
E2E: TestAsset KNC SKIPPED
E2E: TestAsset FXS SKIPPED
E2E: Collateral WETH, TestAsset crvUSD
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: crvUSD, Amount: 1001421146792046997655
WITHDRAW: crvUSD, Amount: 500710573396023498827
WITHDRAW: crvUSD, Amount: 500710573396023498829
BORROW: crvUSD, Amount 1001421146792046997655
REPAY: crvUSD, Amount: 1001421146792046997655
E2E: Collateral WETH, TestAsset PYUSD
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: PYUSD, Amount: 1000161386
WITHDRAW: PYUSD, Amount: 500080693
WITHDRAW: PYUSD, Amount: 500080692
BORROW: PYUSD, Amount 1000161386
REPAY: PYUSD, Amount: 1000161386
E2E: Collateral WETH, TestAsset weETH
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: weETH, Amount: 282005303537021809
WITHDRAW: weETH, Amount: 141002651768510904
WITHDRAW: weETH, Amount: 141002651768510905
BORROW: weETH, Amount 282005303537021809
REPAY: weETH, Amount: 282005303537021809
E2E: Collateral WETH, TestAsset osETH
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: osETH, Amount: 287813877538646375
WITHDRAW: osETH, Amount: 143906938769323187
WITHDRAW: osETH, Amount: 143906938769323188
BORROW: osETH, Amount 287813877538646375
REPAY: osETH, Amount: 287813877538646375
E2E: Collateral WETH, TestAsset USDe
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: USDe, Amount: 1002598967120538874486
WITHDRAW: USDe, Amount: 501299483560269437243
WITHDRAW: USDe, Amount: 501299483560269437242
BORROW: USDe, Amount 1002598967120538874486
REPAY: USDe, Amount: 1002598967120538874486
E2E: Collateral WETH, TestAsset ETHx
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: ETHx, Amount: 284056912564062283
WITHDRAW: ETHx, Amount: 142028456282031141
WITHDRAW: ETHx, Amount: 142028456282031141
BORROW: ETHx, Amount 284056912564062283
REPAY: ETHx, Amount: 284056912564062283
E2E: Collateral WETH, TestAsset sUSDe
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: sUSDe, Amount: 876987136650855231716
WITHDRAW: sUSDe, Amount: 438493568325427615858
WITHDRAW: sUSDe, Amount: 438493568325427615858
E2E: Collateral WETH, TestAsset tBTC
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: tBTC, Amount: 10669641502771621
WITHDRAW: tBTC, Amount: 5334820751385810
WITHDRAW: tBTC, Amount: 5334820751385811
BORROW: tBTC, Amount 10669641502771621
REPAY: tBTC, Amount: 10669641502771621
E2E: Collateral WETH, TestAsset cbBTC
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: cbBTC, Amount: 1066964
WITHDRAW: cbBTC, Amount: 533482
WITHDRAW: cbBTC, Amount: 533482
BORROW: cbBTC, Amount 1066964
REPAY: cbBTC, Amount: 1066964
E2E: Collateral WETH, TestAsset USDS
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: USDS, Amount: 999733770896810179449
WITHDRAW: USDS, Amount: 499866885448405089724
WITHDRAW: USDS, Amount: 499866885448405089725
BORROW: USDS, Amount 999733770896810179449
REPAY: USDS, Amount: 999733770896810179449
E2E: Collateral WETH, TestAsset rsETH
SUPPLY: WETH, Amount: 29794195344865228660
SUPPLY: rsETH, Amount: 288351147456842219
WITHDRAW: rsETH, Amount: 144175573728421109
WITHDRAW: rsETH, Amount: 144175573728421110
BORROW: rsETH, Amount 288351147456842219
REPAY: rsETH, Amount: 288351147456842219

[FAIL: assertion failed: 250043757677725818637322 != 250002120391969614315368] test_stream() (gas: 531341)
Suite result: FAILED. 1 passed; 1 failed; 0 skipped; finished in 153.45s (157.76s CPU time)

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

Failing tests:
Encountered 1 failing test in src/20241231_AaveV3Ethereum_karpatkeyGhoGrowth/AaveV3Ethereum_karpatkeyGhoGrowth_20241231.t.sol:AaveV3Ethereum_karpatkeyGhoGrowth_20241231_Test
[FAIL: assertion failed: 250043757677725818637322 != 250002120391969614315368] test_stream() (gas: 531341)

Encountered a total of 1 failing tests, 1 tests succeeded

@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 517 files with Solc 0.8.20
Solc 0.8.20 finished in 310.75s
Compiler run successful with warnings:
Warning (5667): Unused function parameter. Remove or comment out the variable name to silence this warning.
   --> lib/aave-helpers/src/swaps/AaveSwapper.sol:138:5:
    |
138 |     address erc20Token
    |     ^^^^^^^^^^^^^^^^^^

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_GHOStewardV2Upgrade_20241007                                                 | 1,360            | 1,389             | 23,216             | 47,763              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Arbitrum_IncreaseBorrowSlope1ToAllStablecoinsAcrossAllAaveInstances_20241201          | 4,072            | 4,142             | 20,504             | 45,010              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| 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_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_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_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_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_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_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              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3ScrollEModes                                                                          | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3ScrollExternalLibraries                                                               | 44               | 94                | 24,532             | 49,058              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Scroll_IncreaseBorrowSlope1ToAllStablecoinsAcrossAllAaveInstances_20241201            | 3,228            | 3,298             | 21,348             | 45,854              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Scroll_OnboardSCRToAaveV3Scroll_20241203                                              | 5,065            | 5,136             | 19,511             | 44,016              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Scroll_RiskStewardPhase2_20240805                                                     | 178              | 206               | 24,398             | 48,946              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Scroll_UpdateLegacyGuardian_20241016                                                  | 1,062            | 1,393             | 23,514             | 47,759              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| AaveV3Scroll_UpdatePriceCapAdaptersCAPO_20241101                                            | 3,097            | 3,167             | 21,479             | 45,985              |
|---------------------------------------------------------------------------------------------+------------------+-------------------+--------------------+---------------------|
| Address                                                                                     | 44              

Please sign in to comment.