Skip to content

Commit 83d273d

Browse files
committed
fix: add dustBin to report
1 parent 68b4639 commit 83d273d

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

src/deployments/contracts/utilities/MetadataReporter.sol

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,13 @@ contract MetadataReporter is IMetadataReporter {
3838
);
3939
vm.serializeAddress(jsonReport, 'aaveOracle', report.aaveOracle);
4040
vm.serializeAddress(jsonReport, 'treasury', report.treasury);
41+
vm.serializeAddress(jsonReport, 'dustBin', report.dustBin);
4142
vm.serializeAddress(jsonReport, 'wrappedTokenGateway', report.wrappedTokenGateway);
4243
vm.serializeAddress(jsonReport, 'walletBalanceProvider', report.walletBalanceProvider);
4344
vm.serializeAddress(jsonReport, 'uiIncentiveDataProvider', report.uiIncentiveDataProvider);
4445
vm.serializeAddress(jsonReport, 'uiPoolDataProvider', report.uiPoolDataProvider);
4546
vm.serializeAddress(jsonReport, 'treasuryImplementation', report.treasuryImplementation);
47+
vm.serializeAddress(jsonReport, 'emptyImplementation', report.emptyImplementation);
4648
vm.serializeAddress(jsonReport, 'l2Encoder', report.l2Encoder);
4749
vm.serializeAddress(jsonReport, 'aToken', report.aToken);
4850
vm.serializeAddress(jsonReport, 'variableDebtToken', report.variableDebtToken);

src/deployments/interfaces/IMarketReportTypes.sol

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ struct MarketReport {
8484
address staticATokenFactoryProxy;
8585
address staticATokenImplementation;
8686
address revenueSplitter;
87+
address dustBin;
88+
address emptyImplementation;
8789
}
8890

8991
struct LibrariesReport {

src/deployments/projects/aave-v3-batched/AaveV3BatchOrchestration.sol

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -314,6 +314,8 @@ library AaveV3BatchOrchestration {
314314
report.paraSwapWithdrawSwapAdapter = paraswapReport.paraSwapWithdrawSwapAdapter;
315315
report.treasuryImplementation = peripheryReport.treasuryImplementation;
316316
report.treasury = peripheryReport.treasury;
317+
report.dustBin = peripheryReport.dustBin;
318+
report.emptyImplementation = peripheryReport.emptyImplementation;
317319
report.poolProxy = setupReport.poolProxy;
318320
report.poolConfiguratorProxy = setupReport.poolConfiguratorProxy;
319321
report.rewardsControllerProxy = setupReport.rewardsControllerProxy;

0 commit comments

Comments
 (0)