Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Commit

Permalink
AURA OTC to GLC patch - Review (#341)
Browse files Browse the repository at this point in the history
* init

* lint + edited markdown

* payload deployed
  • Loading branch information
Marc Zeller authored Oct 23, 2023
1 parent 8f543e2 commit b2ad17f
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ contract DeployEthereum is EthereumScript {
contract CreateProposal is EthereumScript {
function run() external broadcast {
GovHelpers.Payload[] memory payloads = new GovHelpers.Payload[](1);
payloads[0] = GovHelpers.buildMainnet(0x8E6701Bfd7FACB64Fb0d6F368BeB5E1C3b13115E);
payloads[0] = GovHelpers.buildMainnet(0x20a067bF6956996c7c8b7a98073A9d260dB03b7a);
GovHelpers.createProposal(
payloads,
GovHelpers.ipfsHashFile(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,8 @@ contract AaveV3_Ethereum_EnhancingAaveDAOSLiquidityIncentiveStrategyOnBalancer_2
function execute() external {
// 1. AURA OTC DEAL

// pull AURA from AURA_DAO_TREASURY wallet to collector, this will fail if they don't approve Short_executor
IERC20(AURA_TOKEN).safeTransferFrom(
AURA_DAO_TREASURY,
address(AaveV2Ethereum.COLLECTOR),
AURA_AMOUNT
);
// pull AURA from AURA_DAO_TREASURY wallet to GLC, this will fail if they don't approve Short_executor
IERC20(AURA_TOKEN).safeTransferFrom(AURA_DAO_TREASURY, GLC, AURA_AMOUNT);

// Transfer V3 aUSDC from COLLECTOR to Short_Executor

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ contract AaveV3_Ethereum_EnhancingAaveDAOSLiquidityIncentiveStrategyOnBalancer_2
uint256 aUSDCV2BalanceBefore = IERC20(AaveV2EthereumAssets.USDC_A_TOKEN).balanceOf(
address(AaveV2Ethereum.COLLECTOR)
);
uint256 AURABalanceBefore = IERC20(AURA_TOKEN).balanceOf(address(AaveV2Ethereum.COLLECTOR));
uint256 GLCAURABalanceBefore = IERC20(AURA_TOKEN).balanceOf(GLC);

uint256 veBALBalanceBefore = IERC20(VEBAL_TOKEN).balanceOf(address(AaveV2Ethereum.COLLECTOR));
uint256 GLCVEBALBalanceBefore = IERC20(VEBAL_TOKEN).balanceOf(GLC);
Expand All @@ -55,8 +55,8 @@ contract AaveV3_Ethereum_EnhancingAaveDAOSLiquidityIncentiveStrategyOnBalancer_2
uint256 aUSDCV2BalanceAfter = IERC20(AaveV2EthereumAssets.USDC_A_TOKEN).balanceOf(
address(AaveV2Ethereum.COLLECTOR)
);
uint256 AURABalanceAfter = IERC20(AURA_TOKEN).balanceOf(address(AaveV2Ethereum.COLLECTOR));

uint256 GLCAURABalanceAfter = IERC20(AURA_TOKEN).balanceOf(GLC);
uint256 GLCUSDCBalance = IERC20(AaveV3EthereumAssets.USDC_UNDERLYING).balanceOf(GLC);
uint256 GLCVEBALBalanceAfter = IERC20(VEBAL_TOKEN).balanceOf(GLC);
uint256 veBALBalanceAfter = IERC20(VEBAL_TOKEN).balanceOf(address(AaveV2Ethereum.COLLECTOR));
Expand All @@ -72,13 +72,18 @@ contract AaveV3_Ethereum_EnhancingAaveDAOSLiquidityIncentiveStrategyOnBalancer_2
assertApproxEqAbs(
aUSDCV2BalanceAfter,
aUSDCV2BalanceBefore - USDC_AMOUNT_TO_GLC,
100 ether,
1 ether,
'aUSDC_V2_LEFTOVER'
);

assertApproxEqAbs(AURABalanceAfter, AURABalanceBefore + AURA_AMOUNT, 1500 wei, 'AURA_LEFTOVER');
assertApproxEqAbs(
GLCAURABalanceAfter,
GLCAURABalanceBefore + AURA_AMOUNT,
1500 wei,
'AURA_LEFTOVER'
);

assertApproxEqAbs(GLCUSDCBalance, USDC_AMOUNT_TO_GLC, 10 ether, 'GLC_USDC_LEFTOVER');
assertApproxEqAbs(GLCUSDCBalance, USDC_AMOUNT_TO_GLC, 1500 wei, 'GLC_USDC_LEFTOVER');

assertEq(veBALBalanceAfter, 0);
assertEq(GLCVEBALBalanceAfter, GLCVEBALBalanceBefore + veBALBalanceBefore);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@ discussions: "https://governance.aave.com/t/arfc-enhancing-aave-daos-liquidity-i
## Simple Summary

This AIP proposes Aave DAO to:

- Mint auraBAL using existing B-80BAL-20WETH holdings and stake it on Aura Finance's Classic Staking Pool;
- Buy 400,000 USDC worth of AURA OTM; and
- Buy 400,000 USDC worth of AURA OTM
- Swap $200,000 worth of AAVE for AURA and 200,000 USDC for AURA in an OTC deal with AURA DAO.
- Send the proceeds to the GHO Liquidity Commitee (GLC) to operate.

## Motivation

This AIP is part of the GHO overall support and aims at creating deeper GHO secondary liquidity in the balancer ecosystem. It also aims at providing funding to GLC to operate.
This AIP is part of the GHO overall support and aims at creating deeper GHO secondary liquidity in the balancer ecosystem. It also aims at providing funding to the GLC to operate.

## Specification

Expand All @@ -31,7 +33,7 @@ We recommend using [CowSwap's TWAP](https://swap.cow.fi/#/1/advanced/USDC/AURA?t

## 3. Swap $200,000 worth of AAVE for AURA and 200,000 USDC for AURA in an OTC deal with AURA DAO.

This action can be achieved by transferring 2,965.35 AAVE from the ecosystem reserve and 200,000 USDC from the collector to a token swap contract with properties similar to the one used for the [CRV OTC deal](https://github.com/bgd-labs/aave-proposals/blob/e77e5f1bdfd71970bbc752acbad6a1e46af3feaa/src/AaveV2_Eth_CRV_OTC_Deal_20230508/AaveV2_Eth_CRV_OTC_Deal_20230508.sol).
This action can be achieved by transferring 2,965.35 AAVE from the ecosystem reserve and 200,000 USDC from the collector to a token swap contract with properties similar to the one used for the [CRV OTC deal](https://github.com/bgd-labs/aave-proposals/blob/main/src/AaveV2_Eth_CRV_OTC_Deal_20230508/AaveV2_Eth_CRV_OTC_Deal_20230508.sol).

We'd be exchanging 2,965.35 AAVE and 200,000 USDC for 477,088.51 AURA with the AURA DAO. The TWAP prices for AURA and AAVE were calculated for the period from September 29th to October 6th and can be found [here](https://docs.google.com/spreadsheets/d/1_oogFs9V-fZQkxj-dBpO8YCLLHEI2YneFHeCtzL501s/edit?usp=sharing).

Expand All @@ -49,8 +51,8 @@ https://docs.google.com/spreadsheets/d/1_oogFs9V-fZQkxj-dBpO8YCLLHEI2YneFHeCtzL5

## References

- Implementation: [Ethereum](https://github.com/bgd-labs/aave-proposals/blob/e77e5f1bdfd71970bbc752acbad6a1e46af3feaa/src/20231017_AaveV3_Eth_EnhancingAaveDAOSLiquidityIncentiveStrategyOnBalancer/AaveV3_Ethereum_EnhancingAaveDAOSLiquidityIncentiveStrategyOnBalancer_20231017.sol)
- Tests: [Ethereum](https://github.com/bgd-labs/aave-proposals/blob/e77e5f1bdfd71970bbc752acbad6a1e46af3feaa/src/20231017_AaveV3_Eth_EnhancingAaveDAOSLiquidityIncentiveStrategyOnBalancer/AaveV3_Ethereum_EnhancingAaveDAOSLiquidityIncentiveStrategyOnBalancer_20231017.t.sol)
- Implementation: [Ethereum](https://github.com/bgd-labs/aave-proposals/blob/main/src/20231017_AaveV3_Eth_EnhancingAaveDAOSLiquidityIncentiveStrategyOnBalancer/AaveV3_Ethereum_EnhancingAaveDAOSLiquidityIncentiveStrategyOnBalancer_20231017.sol)
- Tests: [Ethereum](https://github.com/bgd-labs/aave-proposals/blob/main/src/20231017_AaveV3_Eth_EnhancingAaveDAOSLiquidityIncentiveStrategyOnBalancer/AaveV3_Ethereum_EnhancingAaveDAOSLiquidityIncentiveStrategyOnBalancer_20231017.t.sol)
- [Snapshot](https://snapshot.org/#/aave.eth/proposal/0xd1136b4db12346a95870f5a52ce02ef1bd4fb83cbbbf56c709aa14ae2d38659b)
- [Discussion](https://governance.aave.com/t/arfc-enhancing-aave-daos-liquidity-incentive-strategy-on-balancer/15061)

Expand Down

1 comment on commit b2ad17f

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

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

Foundry report

forge 0.2.0 (ba6c851 2023-10-23T00:16:57.028683040Z)
Build log
installing solc version "0.8.21"
Successfully installed solc 0.8.21
installing solc version "0.8.19"
Successfully installed solc 0.8.19
installing solc version "0.8.17"
Successfully installed solc 0.8.17
Compiling 120 files with 0.8.17
Compiling 168 files with 0.8.19
Solc 0.8.17 finished in 61.85s
Compiling 511 files with 0.8.21
Solc 0.8.19 finished in 103.13s
Solc 0.8.21 finished in 449.59s
Compiler run successful with warnings:
Warning (2072): Unused local variable.
  --> src/20230817_AaveV3_Eth_SDAIOnboarding/AaveV3_Ethereum_SDAIOnboarding_20230817.t.sol:24:5:
   |
24 |     ReserveConfig[] memory allConfigsBefore = createConfigurationSnapshot(
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Warning (2072): Unused local variable.
  --> src/20230825_AaveV3_Eth_GhoFreezing/AaveV3_Ethereum_GhoFreezing_20230825.t.sol:62:5:
   |
62 |     ReserveConfig[] memory allConfigsAfter2 = createConfigurationSnapshot(
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Warning (2072): Unused local variable.
  --> src/AaveV2EthBUSDIR_20230804/AaveV2EthBUSDIR_20230804Test.t.sol:32:5:
   |
32 |     ReserveConfig memory configBUSDBefore = _findReserveConfigBySymbol(
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Warning (2072): Unused local variable.
  --> src/AaveV3_Met_SetEmissionManager_20232607/AaveV3_Met_SetEmissionManager_20232607.t.sol:28:5:
   |
28 |     ReserveConfig[] memory allConfigsBefore = createConfigurationSnapshot(
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Warning (2072): Unused local variable.
  --> src/AaveV3_Met_SetEmissionManager_20232607/AaveV3_Met_SetEmissionManager_20232607.t.sol:37:5:
   |
37 |     ReserveConfig[] memory allConfigsAfter = createConfigurationSnapshot(
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

| Contract                                                                       | Size (kB) | Margin (kB) |
|--------------------------------------------------------------------------------|-----------|-------------|
| AaveAvalancheTreasuryMigration_20230903                                        | 3.335     | 21.241      |
| AaveGovernanceV2.0.8.17                                                        | 0.086     | 24.49       |
| AaveGovernanceV2.0.8.19                                                        | 0.086     | 24.49       |
| AaveGovernanceV2.0.8.21                                                        | 0.086     | 24.49       |
| AaveMisc.0.8.17                                                                | 0.086     | 24.49       |
| AaveMisc.0.8.19                                                                | 0.086     | 24.49       |
| AaveMisc.0.8.21                                                                | 0.086     | 24.49       |
| AavePolygonTreasuryMigration_20230801                                          | 4.221     | 20.355      |
| AaveSafetyModule                                                               | 0.086     | 24.49       |
| AaveSwapper                                                                    | 5.613     | 18.963      |
| AaveV2Avalanche.0.8.17                                                         | 0.086     | 24.49       |
| AaveV2Avalanche.0.8.19                                                         | 0.086     | 24.49       |
| AaveV2Avalanche.0.8.21                                                         | 0.086     | 24.49       |
| AaveV2AvalancheAssets.0.8.17                                                   | 0.086     | 24.49       |
| AaveV2AvalancheAssets.0.8.19                                                   | 0.086     | 24.49       |
| AaveV2AvalancheAssets.0.8.21                                                   | 0.086     | 24.49       |
| AaveV2CRVRiskParams_20230621                                                   | 0.336     | 24.24       |
| AaveV2DelegatesGasRebate_20230703                                              | 2.215     | 22.361      |
| AaveV2EthAGDGrantsPayload                                                      | 0.566     | 24.01       |
| AaveV2EthBUSDIR_20230602                                                       | 0.972     | 23.604      |
| AaveV2EthBUSDIR_20230804                                                       | 2.343     | 22.233      |
| AaveV2EthFEIRiskParams_20230703                                                | 2.251     | 22.325      |
| AaveV2EthRatesUpdates_20230328_Payload                                         | 0.326     | 24.25       |
| AaveV2EthRiskParams_20230702                                                   | 4.609     | 19.967      |
| AaveV2EthUnifyFallbackOracles20230507                                          | 0.483     | 24.093      |
| AaveV2Ethereum.0.8.17                                                          | 0.086     | 24.49       |
| AaveV2Ethereum.0.8.19                                                          | 0.086     | 24.49       |
| AaveV2Ethereum.0.8.21                                                          | 0.086     | 24.49       |
| AaveV2EthereumAMM.0.8.17                                                       | 0.086     | 24.49       |
| AaveV2EthereumAMM.0.8.19                                                       | 0.086     | 24.49       |
| AaveV2EthereumAMM.0.8.21                                                       | 0.086     | 24.49       |
| AaveV2EthereumAMMAssets.0.8.17                                                 | 0.086     | 24.49       |
| AaveV2EthereumAMMAssets.0.8.19                                                 | 0.086     | 24.49       |
| AaveV2EthereumAMMAssets.0.8.21                                                 | 0.086     | 24.49       |
| AaveV2EthereumArc                                                              | 0.086     | 24.49       |
| AaveV2EthereumArcAssets                                                        | 0.086     | 24.49       |
| AaveV2EthereumAssets.0.8.17                                                    | 0.086     | 24.49       |
| AaveV2EthereumAssets.0.8.19                                                    | 0.086     | 24.49       |
| AaveV2EthereumAssets.0.8.21                                                    | 0.086     | 24.49       |
| AaveV2EthereumRatesUpdates_20230627                                            | 3.273     | 21.303      |
| AaveV2EthereumUpdate20231009Payload                                            | 3.286     | 21.29       |
| AaveV2FreezeReserves_20230619                                                  | 1.106     | 23.47       |
| AaveV2FreezeReserves_20230627                                                  | 0.281     | 24.295      |
| AaveV2Fuji                                                                     | 0.086     | 24.49       |
| AaveV2FujiAssets                                                               | 0.086     | 24.49       |
| AaveV2Goerli                                                                   | 0.086     | 24.49       |
| AaveV2GoerliAssets                                                             | 0.086     | 24.49       |
| AaveV2Mumbai                                                                   | 0.086     | 24.49       |
| AaveV2MumbaiAssets                                                             | 0.086     | 24.49       |
| AaveV2PolRatesUpdates_20230328_Payload                                         | 0.326     | 24.25       |
| AaveV2Polygon.0.8.17                                                           | 0.086     | 24.49       |
| AaveV2Polygon.0.8.19                                                           | 0.086     | 24.49       |
| AaveV2Polygon.0.8.21                                                           | 0.086     | 24.49       |
| AaveV2PolygonAssets.0.8.17                                                     | 0.086     | 24.49       |
| AaveV2PolygonAssets.0.8.19                                                     | 0.086     | 24.49       |
| AaveV2PolygonAssets.0.8.21                                                     | 0.086     | 24.49       |
| AaveV2PolygonIR_20230519                                                       | 0.908     | 23.668      |
| AaveV2PolygonRatesUpdates_20230614                                             | 4.551     | 20.025      |
| AaveV2PolygonReserveFactorUpdate_20230717                                      | 2.322     | 22.254      |
| AaveV2PolygonReserveFactorUpdate_20230828                                      | 1.903     | 22.673      |
| AaveV2PolygonReserveFactorUpdate_20230920                                      | 1.01      | 23.566      |
| AaveV2PriceFeedsUpdate_20230504_Payload                                        | 0.63      | 23.946      |
| AaveV2PriceFeedsUpdate_20230613_Payload                                        | 0.63      | 23.946      |
| AaveV2_Eth_AURA_OTC_Deal_20230508                                              | 1.67      | 22.906      |
| AaveV2_Eth_CRVAaveV2Ethereum_LTReduction_20230822                              | 0.334     | 24.242      |
| AaveV2_Eth_CRVLTUpdate_20230806                                                | 0.334     | 24.242      |
| AaveV2_Eth_CRVRiskParamsUpdate_20232507                                        | 1.225     | 23.351      |
| AaveV2_Eth_CRV_OTC_Deal_20230508                                               | 2.015     | 22.561      |
| AaveV2_Eth_ServiceProviders_20231907                                           | 7.285     | 17.291      |
| AaveV2_Eth_TUSDOffboardingPlan_20233107                                        | 1.542     | 23.034      |
| AaveV2_Eth_TreasuryManagement_20230308                                         | 6.704     | 17.872      |
| AaveV2_Ethereum_AaveTreasuryRWAAllocationPartI_20230925                        | 1.044     | 23.532      |
| AaveV2_Ethereum_CRVAaveV2EthereumLTReduction_20230919                          | 0.334     | 24.242      |
| AaveV2_Ethereum_ChaosLabsRiskParameterUpdates_20230831                         | 5.232     | 19.344      |
| AaveV2_Ethereum_DAIParamsUpdates_20230817                                      | 1.766     | 22.81       |
| AaveV2_Ethereum_TUSDOffboardingPlanPartII_20230925                             | 2.525     | 22.051      |
| AaveV3ACIProposal_20230411                                                     | 0.705     | 23.871      |
| AaveV3ARBDFSFlashBorrowActivation                                              | 0.458     | 24.118      |
| AaveV3ARBMAIFixes_20230606                                                     | 1.662     | 22.914      |
| AaveV3ARBMAIListing_20230425                                                   | 3.596     | 20.98       |
| AaveV3ARBSupplyBorrowUpdate_20230427                                           | 3.019     | 21.557      |
| AaveV3AVASupplyBorrowUpdate_20230427                                           | 2.934     | 21.642      |
| AaveV3ArbCapsUpdates_20230508_Payload                                          | 2.953     | 21.623      |
| AaveV3ArbFraxListing_20230619                                                  | 3.746     | 20.83       |
| AaveV3ArbListings_20230523_Payload                                             | 3.741     | 20.835      |
| AaveV3ArbListings_20230524_Payload                                             | 3.743     | 20.833      |
| AaveV3ArbMAICapsUpdates_20230724                                               | 3.306     | 21.27       |
| AaveV3ArbNativeUSDCListing_20230621                                            | 3.748     | 20.828      |
| AaveV3ArbPriceFeedsUpdate_20230504_Payload                                     | 2.905     | 21.671      |
| AaveV3ArbPriceFeedsUpdate_20230613_Payload                                     | 2.905     | 21.671      |
| AaveV3ArbRatesUpdates_20230307                                                 | 4.564     | 20.012      |
| AaveV3ArbSupplyCapsUpdate_20230330                                             | 3.019     | 21.557      |
| AaveV3ArbUpdate20230327Payload                                                 | 2.929     | 21.647      |
| AaveV3Arbitrum.0.8.17                                                          | 0.086     | 24.49       |
| AaveV3Arbitrum.0.8.19                                                          | 0.086     | 24.49       |
| AaveV3Arbitrum.0.8.21                                                          | 0.086     | 24.49       |
| AaveV3ArbitrumAssets.0.8.17                                                    | 0.086     | 24.49       |
| AaveV3ArbitrumAssets.0.8.19                                                    | 0.086     | 24.49       |
| AaveV3ArbitrumAssets.0.8.21                                                    | 0.086     | 24.49       |
| AaveV3ArbitrumEModes.0.8.17                                                    | 0.086     | 24.49       |
| AaveV3ArbitrumEModes.0.8.19                                                    | 0.086     | 24.49       |
| AaveV3ArbitrumEModes.0.8.21                                                    | 0.086     | 24.49       |
| AaveV3ArbitrumGoerli                                                           | 0.086     | 24.49       |
| AaveV3ArbitrumGoerliAssets                                                     | 0.086     | 24.49       |
| AaveV3ArbitrumGoerliEModes                                                     | 0.086     | 24.49       |
| AaveV3ArbitrumUpdate20231002wethPayload                                        | 3.275     | 21.301      |
| AaveV3ArbwstETHCapsUpdates_20230703                                            | 2.953     | 21.623      |
| AaveV3AvaRatesUpdatesSteward_20230331                                          | 5.105     | 19.471      |
| AaveV3AvaRatesUpdates_20230322                                                 | 3.246     | 21.33       |
| AaveV3Avalanche.0.8.17                                                         | 0.086     | 24.49       |
| AaveV3Avalanche.0.8.19                                                         | 0.086     | 24.49       |
| AaveV3Avalanche.0.8.21                                                         | 0.086     | 24.49       |
| AaveV3AvalancheAssets.0.8.17                                                   | 0.086     | 24.49       |
| AaveV3AvalancheAssets.0.8.19                                                   | 0.086     | 24.49       |
| AaveV3AvalancheAssets.0.8.21                                                   | 0.086     | 24.49       |
| AaveV3AvalancheEModes.0.8.17                                                   | 0.086     | 24.49       |
| AaveV3AvalancheEModes.0.8.19                                                   | 0.086     | 24.49       |
| AaveV3AvalancheEModes.0.8.21                                                   | 0.086     | 24.49       |
| AaveV3AvaxMAICapsUpdates_20230724                                              | 3.292     | 21.284      |
| AaveV3AvaxretrofundingPayload                                                  | 1.123     | 23.453      |
| AaveV3Base                                                                     | 0.086     | 24.49       |
| AaveV3BaseAssets                                                               | 0.086     | 24.49       |
| AaveV3BaseEModes                                                               | 0.086     | 24.49       |
| AaveV3ChaosLabsPaymentCollection_20230626                                      | 0.411     | 24.165      |
| AaveV3ETHIsoMode_20230330                                                      | 3.549     | 21.027      |
| AaveV3ETHSupplyBorrowUpdate_20230427                                           | 2.932     | 21.644      |
| AaveV3ETHrETHEmode_20230522                                                    | 3.03      | 21.546      |
| AaveV3Eth1INCHListing_20230517_Payload                                         | 3.59      | 20.986      |
| AaveV3EthCBETHSupplyCapUpdate_20230328                                         | 2.929     | 21.647      |
| AaveV3EthDFSFlashBorrowActivation                                              | 0.458     | 24.118      |
| AaveV3EthENSListing_20230517_Payload                                           | 3.586     | 20.99       |
| AaveV3EthFraxListing_20230619                                                  | 3.548     | 21.028      |
| AaveV3EthNewListings_20230321                                                  | 5.149     | 19.427      |
| AaveV3EthRatesUpdates_20230328                                                 | 3.24      | 21.336      |
| AaveV3EthRiskParams_20230529                                                   | 3.832     | 20.744      |
| AaveV3EthUpdate20230322Payload                                                 | 3.033     | 21.543      |
| AaveV3EthUpdate20230327Payload                                                 | 3.032     | 21.544      |
| AaveV3Ethereum.0.8.17                                                          | 0.086     | 24.49       |
| AaveV3Ethereum.0.8.19                                                          | 0.086     | 24.49       |
| AaveV3Ethereum.0.8.21                                                          | 0.086     | 24.49       |
| AaveV3EthereumAssets.0.8.17                                                    | 0.086     | 24.49       |
| AaveV3EthereumAssets.0.8.19                                                    | 0.086     | 24.49       |
| AaveV3EthereumAssets.0.8.21                                                    | 0.086     | 24.49       |
| AaveV3EthereumEModes.0.8.17                                                    | 0.086     | 24.49       |
| AaveV3EthereumEModes.0.8.19                                                    | 0.086     | 24.49       |
| AaveV3EthereumEModes.0.8.21                                                    | 0.086     | 24.49       |
| AaveV3Fantom.0.8.17                                                            | 0.086     | 24.49       |
| AaveV3Fantom.0.8.19                                                            | 0.086     | 24.49       |
| AaveV3Fantom.0.8.21                                                            | 0.086     | 24.49       |
| AaveV3FantomAssets.0.8.17                                                      | 0.086     | 24.49       |
| AaveV3FantomAssets.0.8.19                                                      | 0.086     | 24.49       |
| AaveV3FantomAssets.0.8.21                                                      | 0.086     | 24.49       |
| AaveV3FantomEModes.0.8.17                                                      | 0.086     | 24.49       |
| AaveV3FantomEModes.0.8.19                                                      | 0.086     | 24.49       |
| AaveV3FantomEModes.0.8.21                                                      | 0.086     | 24.49       |
| AaveV3FantomTestnet                                                            | 0.086     | 24.49       |
| AaveV3FantomTestnetAssets                                                      | 0.086     | 24.49       |
| AaveV3FantomTestnetEModes                                                      | 0.086     | 24.49       |
| AaveV3Fuji                                                                     | 0.086     | 24.49       |
| AaveV3FujiAssets                                                               | 0.086     | 24.49       |
| AaveV3FujiEModes                                                               | 0.086     | 24.49       |
| AaveV3GoerliGho                                                                | 0.086     | 24.49       |
| AaveV3GoerliGhoAssets                                                          | 0.086     | 24.49       |
| AaveV3GoerliGhoEModes                                                          | 0.086     | 24.49       |
| AaveV3Harmony.0.8.17                                                           | 0.086     | 24.49       |
| AaveV3Harmony.0.8.19                                                           | 0.086     | 24.49       |
| AaveV3Harmony.0.8.21                                                           | 0.086     | 24.49       |
| AaveV3HarmonyAssets.0.8.17                                                     | 0.086     | 24.49       |
| AaveV3HarmonyAssets.0.8.19                                                     | 0.086     | 24.49       |
| AaveV3HarmonyAssets.0.8.21                                                     | 0.086     | 24.49       |
| AaveV3HarmonyEModes.0.8.17                                                     | 0.086     | 24.49       |
| AaveV3HarmonyEModes.0.8.19                                                     | 0.086     | 24.49       |
| AaveV3HarmonyEModes.0.8.21                                                     | 0.086     | 24.49       |
| AaveV3Listings_20230403_Payload                                                | 3.587     | 20.989      |
| AaveV3Listings_20230413_Payload                                                | 4.185     | 20.391      |
| AaveV3LlamaProposal_20230803                                                   | 1.385     | 23.191      |
| AaveV3Metis                                                                    | 0.086     | 24.49       |
| AaveV3MetisAssets                                                              | 0.086     | 24.49       |
| AaveV3MetisEModes                                                              | 0.086     | 24.49       |
| AaveV3Mumbai                                                                   | 0.086     | 24.49       |
| AaveV3MumbaiAssets                                                             | 0.086     | 24.49       |
| AaveV3MumbaiEModes                                                             | 0.086     | 24.49       |
| AaveV3OPEmode_20220622_Payload                                                 | 0.88      | 23.696      |
| AaveV3OPListings_20230710_Payload                                              | 3.744     | 20.832      |
| AaveV3OPMAIFixes_20230606                                                      | 1.662     | 22.914      |
| AaveV3OPMAIListing_20230425                                                    | 3.596     | 20.98       |
| AaveV3OPNewListings_20230327                                                   | 3.591     | 20.985      |
| AaveV3OPRiskParams_20230330                                                    | 3.184     | 21.392      |
| AaveV3OPSupplyBorrowUpdate_20230427                                            | 3.03      | 21.546      |
| AaveV3OptDFSFlashBorrowActivation                                              | 0.458     | 24.118      |
| AaveV3OptMAICapsUpdates_20230724                                               | 3.306     | 21.27       |
| AaveV3OptPriceFeedsSentinelUpdate_20230504_Payload                             | 3.073     | 21.503      |
| AaveV3OptPriceFeedsUpdate_20230613_Payload                                     | 2.905     | 21.671      |
| AaveV3OptRatesUpdates_20230307                                                 | 4.143     | 20.433      |
| AaveV3Optimism.0.8.17                                                          | 0.086     | 24.49       |
| AaveV3Optimism.0.8.19                                                          | 0.086     | 24.49       |
| AaveV3Optimism.0.8.21                                                          | 0.086     | 24.49       |
| AaveV3OptimismAssets.0.8.17                                                    | 0.086     | 24.49       |
| AaveV3OptimismAssets.0.8.19                                                    | 0.086     | 24.49       |
| AaveV3OptimismAssets.0.8.21                                                    | 0.086     | 24.49       |
| AaveV3OptimismEModes.0.8.17                                                    | 0.086     | 24.49       |
| AaveV3OptimismEModes.0.8.19                                                    | 0.086     | 24.49       |
| AaveV3OptimismEModes.0.8.21                                                    | 0.086     | 24.49       |
| AaveV3OptimismGoerli                                                           | 0.086     | 24.49       |
| AaveV3OptimismGoerliAssets                                                     | 0.086     | 24.49       |
| AaveV3OptimismGoerliEModes                                                     | 0.086     | 24.49       |
| AaveV3OptimismUpdate20231002wethPayload                                        | 3.262     | 21.314      |
| AaveV3POLSupplyBorrowUpdate_20230427                                           | 3.03      | 21.546      |
| AaveV3PolCRVRiskParams_20230702                                                | 3.03      | 21.546      |
| AaveV3PolCapsUpdate_20230421                                                   | 2.932     | 21.644      |
| AaveV3PolCapsUpdates_20230328                                                  | 3.079     | 21.497      |
| AaveV3PolCapsUpdates_20230418_Payload                                          | 2.956     | 21.62       |
| AaveV3PolCapsUpdates_20230503_Payload                                          | 2.956     | 21.62       |
| AaveV3PolCapsUpdates_20230508_Payload                                          | 3.144     | 21.432      |
| AaveV3PolCapsUpdates_20230518_Payload                                          | 2.946     | 21.63       |
| AaveV3PolCapsUpdates_20230610_Payload                                          | 3.081     | 21.495      |
| AaveV3PolMAICapsUpdates_20230724                                               | 3.305     | 21.271      |
| AaveV3PolPriceFeedsUpdate_20230504_Payload                                     | 3.05      | 21.526      |
| AaveV3PolPriceFeedsUpdate_20230626_Payload                                     | 2.904     | 21.672      |
| AaveV3PolRatesUpdates_20230307                                                 | 5.868     | 18.708      |
| AaveV3PolRatesUpdates_20230328                                                 | 3.239     | 21.337      |
| AaveV3PolRiskParams_20230423                                                   | 3.513     | 21.063      |
| AaveV3Polygon.0.8.17                                                           | 0.086     | 24.49       |
| AaveV3Polygon.0.8.19                                                           | 0.086     | 24.49       |
| AaveV3Polygon.0.8.21                                                           | 0.086     | 24.49       |
| AaveV3PolygonAssets.0.8.17                                                     | 0.086     | 24.49       |
| AaveV3PolygonAssets.0.8.19                                                     | 0.086     | 24.49       |
| AaveV3PolygonAssets.0.8.21                                                     | 0.086     | 24.49       |
| AaveV3PolygonEModes.0.8.17                                                     | 0.086     | 24.49       |
| AaveV3PolygonEModes.0.8.19                                                     | 0.086     | 24.49       |
| AaveV3PolygonEModes.0.8.21                                                     | 0.086     | 24.49       |
| AaveV3PolygonSupplyCapStmatic_20230810                                         | 2.93      | 21.646      |
| AaveV3PolygonUpdate20231002maticPayload                                        | 3.193     | 21.383      |
| AaveV3PriceFeedsUpdate_20230613_Payload                                        | 2.905     | 21.671      |
| AaveV3RiskParams_20230516                                                      | 3.031     | 21.545      |
| AaveV3RiskSteward_20230404                                                     | 0.397     | 24.179      |
| AaveV3ScrollAlpha                                                              | 0.086     | 24.49       |
| AaveV3ScrollAlphaAssets                                                        | 0.086     | 24.49       |
| AaveV3ScrollAlphaEModes                                                        | 0.086     | 24.49       |
| AaveV3ScrollSepolia                                                            | 0.086     | 24.49       |
| AaveV3ScrollSepoliaAssets                                                      | 0.086     | 24.49       |
| AaveV3ScrollSepoliaEModes                                                      | 0.086     | 24.49       |
| AaveV3Sepolia                                                                  | 0.086     | 24.49       |
| AaveV3SepoliaAssets                                                            | 0.086     | 24.49       |
| AaveV3SepoliaEModes                                                            | 0.086     | 24.49       |
| AaveV3StrategicAssets_20220622Payload                                          | 2.848     | 21.728      |
| AaveV3_Arb_ARBListing_20231207                                                 | 3.757     | 20.819      |
| AaveV3_Arb_wstETH_CapsIncrease_20230908                                        | 2.963     | 21.613      |
| AaveV3_Arbitrum_AddDebtSwapAdapterAsFlashBorrower_20230809                     | 0.291     | 24.285      |
| AaveV3_Arbitrum_FreezeStewards_20230907                                        | 0.333     | 24.243      |
| AaveV3_Arbitrum_StataTokenOperationalUpdate_20230815                           | 0.828     | 23.748      |
| AaveV3_Avalanche_AddDebtSwapAdapterAsFlashBorrower_20230809                    | 0.291     | 24.285      |
| AaveV3_Avalanche_ChaosLabsRiskParameterUpdatesAaveV3Avalanche_20230918         | 3.361     | 21.215      |
| AaveV3_Avalanche_EnablingUSDTAsCollateralOnAaveV3AVAXMarket_20230926           | 3.317     | 21.259      |
| AaveV3_Avalanche_FreezeStewards_20230907                                       | 0.333     | 24.243      |
| AaveV3_Avalanche_StataTokenOperationalUpdate_20230815                          | 0.828     | 23.748      |
| AaveV3_Base_AddDebtSwapAdapterAsFlashBorrower_20230809                         | 0.291     | 24.285      |
| AaveV3_Base_FreezeStewards_20230907                                            | 0.333     | 24.243      |
| AaveV3_Eth_AaveV3ListRPL_20230711                                              | 3.59      | 20.986      |
| AaveV3_Eth_AaveV3USDTRiskParams_20231107                                       | 3.011     | 21.565      |
| AaveV3_Eth_BugBounty_20230710                                                  | 1.095     | 23.481      |
| AaveV3_Eth_DisableCRVBorrows_20230508                                          | 3.026     | 21.55       |
| AaveV3_Ethereum_AaveBGDPhase2_20230828                                         | 3.272     | 21.304      |
| AaveV3_Ethereum_AaveImmunefiActivation_20230920                                | 0.274     | 24.302      |
| AaveV3_Ethereum_AddDebtSwapAdapterAsFlashBorrower_20230809                     | 0.291     | 24.285      |
| AaveV3_Ethereum_ChaosLabsRiskParameterUpdates_AaveV3Ethereum_20230828          | 3.524     | 21.052      |
| AaveV3_Ethereum_ChaosLabsScopeAndCompensationAmendment_20230816                | 2.417     | 22.159      |
| AaveV3_Ethereum_EnhancingAaveDAOSLiquidityIncentiveStrategyOnBalancer_20231017 | 2.451     | 22.125      |
| AaveV3_Ethereum_ExpansionOfOrbit_20230925                                      | 1.767     | 22.809      |
| AaveV3_Ethereum_FundGHOLiquidityCommittee_20230926                             | 1.747     | 22.829      |
| AaveV3_Ethereum_FutherIncreaseGHOBorrowRate_20231015                           | 0.326     | 24.25       |
| AaveV3_Ethereum_GHOBorrowRateUpdate_20230904                                   | 0.326     | 24.25       |
| AaveV3_Ethereum_GHOFunding_20230926                                            | 2.636     | 21.94       |
| AaveV3_Ethereum_GhoFreezing_20230825                                           | 0.587     | 23.989      |
| AaveV3_Ethereum_KNCOnboardingOnAaveV3EthereumMarket_20231008                   | 3.597     | 20.979      |
| AaveV3_Ethereum_LUSDCollateralActivation_20230811                              | 3.011     | 21.565      |
| AaveV3_Ethereum_MKRDebtCeiling_20230908                                        | 3.032     | 21.544      |
| AaveV3_Ethereum_QuarterlyGasRebateDistributionAugust2023_20230906              | 1.625     | 22.951      |
| AaveV3_Ethereum_SDAIOnboarding_20230817                                        | 4.189     | 20.387      |
| AaveV3_Ethereum_STGOnboardingOnAaveV3EthereumMarket_20231008                   | 3.597     | 20.979      |
| AaveV3_Ethereum_SigmaPrimeAuditBudgetExtension_20230830                        | 0.413     | 24.163      |
| AaveV3_Ethereum_StataTokenOperationalUpdate_20230815                           | 1.46      | 23.116      |
| AaveV3_Ethereum_TokenLogicHohmannTransfer_20231015                             | 0.72      | 23.856      |
| AaveV3_Ethereum_VGHOImprovement_20230826                                       | 3.835     | 20.741      |
| AaveV3_Met_SetEmissionManager_20232607                                         | 0.364     | 24.212      |
| AaveV3_Metis_FreezeStewards_20230907                                           | 0.333     | 24.243      |
| AaveV3_Opt_RiskParamsUpdate_20232408                                           | 3.194     | 21.382      |
| AaveV3_Opt_wstETH_CapsIncrease_20230908                                        | 2.963     | 21.613      |
| AaveV3_Optimism_AddDebtSwapAdapterAsFlashBorrower_20230809                     | 0.291     | 24.285      |
| AaveV3_Optimism_EnableBorrowOfOPToken_20231016                                 | 3.013     | 21.563      |
| AaveV3_Optimism_FreezeStewards_20230907                                        | 0.333     | 24.243      |
| AaveV3_Optimism_OPRiskParametersUpdate_20230924                                | 3.25      | 21.326      |
| AaveV3_Optimism_StataTokenOperationalUpdate_20230815                           | 0.828     | 23.748      |
| AaveV3_Pol_CapsUpdate_20230608                                                 | 2.966     | 21.61       |
| AaveV3_Pol_CapsUpdates_20231107_Payload                                        | 2.956     | 21.62       |
| AaveV3_Pol_DisableCRVBorrows_20230508                                          | 3.025     | 21.551      |
| AaveV3_Pol_wstETH_CapsIncrease_20230908                                        | 2.962     | 21.614      |
| AaveV3_Polygon_AddDebtSwapAdapterAsFlashBorrower_20230809                      | 0.291     | 24.285      |
| AaveV3_Polygon_FreezeStewards_20230907                                         | 0.333     | 24.243      |
| AaveV3_Polygon_StataTokenOperationalUpdate_20230815                            | 0.828     | 23.748      |
| AaveV3_Polygon_SupplyCapLSTs_20230831                                          | 3.031     | 21.545      |
| Address.0.8.17                                                                 | 0.086     | 24.49       |
| Address.0.8.19                                                                 | 0.086     | 24.49       |
| Address.0.8.21                                                                 | 0.086     | 24.49       |
| AgdAllowanceModification_20230817                                              | 1.848     | 22.728      |
| COWSwapper                                                                     | 3.88      | 20.696      |
| COWTrader                                                                      | 4.088     | 20.488      |
| CapsPlusRiskSteward                                                            | 2.609     | 21.967      |
| CapsPlusRiskStewardErrors                                                      | 0.556     | 24.02       |
| ChainIds.0.8.17                                                                | 0.086     | 24.49       |
| ChainIds.0.8.19                                                                | 0.086     | 24.49       |
| ChainIds.0.8.21                                                                | 0.086     | 24.49       |
| ConfiguratorInputTypes.0.8.17                                                  | 0.086     | 24.49       |
| ConfiguratorInputTypes.0.8.19                                                  | 0.086     | 24.49       |
| ConfiguratorInputTypes.0.8.21                                                  | 0.086     | 24.49       |
| DataTypes                                                                      | 0.086     | 24.49       |
| DataTypes.0.8.17                                                               | 0.086     | 24.49       |
| DataTypes.0.8.19                                                               | 0.086     | 24.49       |
| DataTypes.0.8.21                                                               | 0.086     | 24.49       |
| DeployMainnetProposal                                                          | 0.086     | 24.49       |
| ERC1967Proxy                                                                   | 0.177     | 24.399      |
| EngineFlags.0.8.17                                                             | 0.086     | 24.49       |
| EngineFlags.0.8.19                                                             | 0.086     | 24.49       |
| EngineFlags.0.8.21                                                             | 0.086     | 24.49       |
| Errors                                                                         | 4.714     | 19.862      |
| Errors.0.8.17                                                                  | 3.952     | 20.624      |
| Errors.0.8.19                                                                  | 3.952     | 20.624      |
| Errors.0.8.21                                                                  | 3.952     | 20.624      |
| FreezingSteward                                                                | 0.715     | 23.861      |
| GhoInterestRateStrategy                                                        | 0.724     | 23.852      |
| GovHelpers.0.8.17                                                              | 0.086     | 24.49       |
| GovHelpers.0.8.19                                                              | 0.086     | 24.49       |
| GovHelpers.0.8.21                                                              | 0.086     | 24.49       |
| GovernanceV3Arbitrum                                                           | 0.086     | 24.49       |
| GovernanceV3Avalanche                                                          | 0.086     | 24.49       |
| GovernanceV3Base                                                               | 0.086     | 24.49       |
| GovernanceV3Binance                                                            | 0.086     | 24.49       |
| GovernanceV3Ethereum                                                           | 0.086     | 24.49       |
| GovernanceV3Fuji                                                               | 0.086     | 24.49       |
| GovernanceV3Goerli                                                             | 0.086     | 24.49       |
| GovernanceV3Metis                                                              | 0.086     | 24.49       |
| GovernanceV3Mumbai                                                             | 0.086     | 24.49       |
| GovernanceV3Optimism                                                           | 0.086     | 24.49       |
| GovernanceV3Polygon                                                            | 0.086     | 24.49       |
| MockExecutor.0.8.17                                                            | 0.437     | 24.139      |
| MockExecutor.0.8.19                                                            | 0.437     | 24.139      |
| MockExecutor.0.8.21                                                            | 0.437     | 24.139      |
| MockReceiver                                                                   | 0.899     | 23.677      |
| PayloadsControllerUtils                                                        | 0.086     | 24.49       |
| ProxyAdmin                                                                     | 1.683     | 22.893      |
| ProxyHelpers.0.8.17                                                            | 0.086     | 24.49       |
| ProxyHelpers.0.8.19                                                            | 0.086     | 24.49       |
| ProxyHelpers.0.8.21                                                            | 0.086     | 24.49       |
| ReserveConfiguration.0.8.17                                                    | 0.171     | 24.405      |
| ReserveConfiguration.0.8.19                                                    | 0.171     | 24.405      |
| ReserveConfiguration.0.8.21                                                    | 0.171     | 24.405      |
| RewardsDataTypes                                                               | 0.086     | 24.49       |
| SafeERC20.0.8.17                                                               | 0.086     | 24.49       |
| SafeERC20.0.8.19                                                               | 0.086     | 24.49       |
| SafeERC20.0.8.21                                                               | 0.086     | 24.49       |
| StdStyle.0.8.17                                                                | 0.086     | 24.49       |
| StdStyle.0.8.19                                                                | 0.086     | 24.49       |
| StdStyle.0.8.21                                                                | 0.086     | 24.49       |
| StorageHelpers.0.8.17                                                          | 0.086     | 24.49       |
| StorageHelpers.0.8.19                                                          | 0.086     | 24.49       |
| StorageHelpers.0.8.21                                                          | 0.086     | 24.49       |
| StorageSlot                                                                    | 0.086     | 24.49       |
| SwapFor80BAL20WETHPayload                                                      | 5.788     | 18.788      |
| TokenAddresses                                                                 | 3.399     | 21.177      |
| TokenLogicFunding_20230919                                                     | 1.219     | 23.357      |
| TransparentUpgradeableProxy                                                    | 2.081     | 22.495      |
| WadRayMath.0.8.17                                                              | 0.086     | 24.49       |
| WadRayMath.0.8.19                                                              | 0.086     | 24.49       |
| WadRayMath.0.8.21                                                              | 0.086     | 24.49       |
| console                                                                        | 0.086     | 24.49       |
| console.0.8.17                                                                 | 0.086     | 24.49       |
| console.0.8.19                                                                 | 0.086     | 24.49       |
| console.0.8.21                                                                 | 0.086     | 24.49       |
| console2.0.8.17                                                                | 0.086     | 24.49       |
| console2.0.8.19                                                                | 0.086     | 24.49       |
| console2.0.8.21                                                                | 0.086     | 24.49       |
| safeconsole.0.8.17                                                             | 0.086     | 24.49       |
| safeconsole.0.8.19                                                             | 0.086     | 24.49       |
| safeconsole.0.8.21                                                             | 0.086     | 24.49       |
| stdError.0.8.17                                                                | 0.591     | 23.985      |
| stdError.0.8.19                                                                | 0.591     | 23.985      |
| stdError.0.8.21                                                                | 0.591     | 23.985      |
| stdJson.0.8.17                                                                 | 0.086     | 24.49       |
| stdJson.0.8.19                                                                 | 0.086     | 24.49       |
| stdJson.0.8.21                                                                 | 0.086     | 24.49       |
| stdMath.0.8.17                                                                 | 0.086     | 24.49       |
| stdMath.0.8.19                                                                 | 0.086     | 24.49       |
| stdMath.0.8.21                                                                 | 0.086     | 24.49       |
| stdStorage.0.8.17                                                              | 0.086     | 24.49       |
| stdStorage.0.8.19                                                              | 0.086     | 24.49       |
| stdStorage.0.8.21                                                              | 0.086     | 24.49       |
| stdStorageSafe.0.8.17                                                          | 0.086     | 24.49       |
| stdStorageSafe.0.8.19                                                          | 0.086     | 24.49       |
| stdStorageSafe.0.8.21                                                          | 0.086     | 24.49       |
Test success 🌈
No files changed, compilation skipped

Running 1 test for src/20231017_AaveV3_Eth_EnhancingAaveDAOSLiquidityIncentiveStrategyOnBalancer/AaveV3_Ethereum_EnhancingAaveDAOSLiquidityIncentiveStrategyOnBalancer_20231017.t.sol:AaveV3_Ethereum_EnhancingAaveDAOSLiquidityIncentiveStrategyOnBalancer_20231017_Test
[PASS] testProposalExecution() (gas: 1423325)
Test result: ok. 1 passed; 0 failed; 0 skipped; finished in 7.92s
 
Ran 1 test suites: 1 tests passed, 0 failed, 0 skipped (1 total tests)

Please sign in to comment.