Skip to content

Commit 6b2f0b6

Browse files
committed
ci
1 parent 0eef062 commit 6b2f0b6

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

script/utils/ExistingDeploymentParser.sol

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import "../../src/contracts/core/DelegationManager.sol";
1010
import "../../src/contracts/core/AVSDirectory.sol";
1111
import "../../src/contracts/core/RewardsCoordinator.sol";
1212
import "../../src/contracts/core/AllocationManager.sol";
13+
import "../../src/contracts/core/AllocationManagerView.sol";
1314
import "../../src/contracts/permissions/PermissionController.sol";
1415

1516
import "../../src/contracts/strategies/StrategyFactory.sol";
@@ -237,9 +238,12 @@ contract ExistingDeploymentParser is Script, Logger {
237238
allocationManagerImplementation =
238239
IAllocationManager(json.readAddress(".addresses.allocationManagerImplementation"));
239240

240-
allocationManagerView = IAllocationManagerView(json.readAddress(".addresses.allocationManagerView"));
241-
allocationManagerViewImplementation =
242-
IAllocationManagerView(json.readAddress(".addresses.allocationManagerViewImplementation"));
241+
// allocationManagerView = IAllocationManagerView(json.readAddress(".addresses.allocationManagerView"));
242+
243+
// FIXME: hotfix - remove later...
244+
allocationManagerView = new AllocationManagerView(
245+
delegationManager, eigenStrategy, DEALLOCATION_DELAY, ALLOCATION_CONFIGURATION_DELAY
246+
);
243247

244248
// AVSDirectory
245249
avsDirectory = AVSDirectory(json.readAddress(".addresses.avsDirectory"));

0 commit comments

Comments
 (0)