We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36c7e27 commit c956d8dCopy full SHA for c956d8d
1 file changed
contracts/scripts/validator-registry/DeployForMockL1.s.sol
@@ -45,6 +45,10 @@ contract DeployForMockL1 is Script {
45
console.log("VanillaRegistry deployed at:", vanillaRegistryProxy);
46
VanillaRegistry vanillaRegistry = VanillaRegistry(payable(vanillaRegistryProxy));
47
48
+ address[] memory stakers = new address[](1);
49
+ stakers[0] = owner;
50
+ vanillaRegistry.whitelistStakers(stakers);
51
+
52
console.log("Deploying mock AVS and Middleware contracts...");
53
AlwaysFalseAVS mockAVS = new AlwaysFalseAVS();
54
AlwaysFalseMiddleware mockMiddleware = new AlwaysFalseMiddleware();
0 commit comments