From a3ca663358059164258ffa1c967ff07d73a61e48 Mon Sep 17 00:00:00 2001 From: Maxim Evtush <154841002+maximevtush@users.noreply.github.com> Date: Fri, 7 Feb 2025 21:13:21 +0100 Subject: [PATCH 1/2] Update BoltManager.EigenLayer.t.sol --- bolt-contracts/test/BoltManager.EigenLayer.t.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bolt-contracts/test/BoltManager.EigenLayer.t.sol b/bolt-contracts/test/BoltManager.EigenLayer.t.sol index 52f85d7c9..e76923f49 100644 --- a/bolt-contracts/test/BoltManager.EigenLayer.t.sol +++ b/bolt-contracts/test/BoltManager.EigenLayer.t.sol @@ -106,7 +106,7 @@ contract BoltManagerEigenLayerTest is Test { // PART 1: External EigenLayer opt-in to BOLT AVS - // 1. As a staker, I deposit some LSTs into a Stategy via the StrategyManager.depositIntoStrategy function. + // 1. As a staker, I deposit some LSTs into a Strategy via the StrategyManager.depositIntoStrategy function. // After this, I get back some shares that I can use at a later time for withdrawal vm.startPrank(staker); From 829d70386d34dd0f37eb211a3606a41f1c16fbf2 Mon Sep 17 00:00:00 2001 From: Maxim Evtush <154841002+maximevtush@users.noreply.github.com> Date: Fri, 7 Feb 2025 21:14:04 +0100 Subject: [PATCH 2/2] Update Deploy.s.sol --- bolt-contracts/script/holesky/admin/Deploy.s.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bolt-contracts/script/holesky/admin/Deploy.s.sol b/bolt-contracts/script/holesky/admin/Deploy.s.sol index 447c077cd..2c2bdec0d 100644 --- a/bolt-contracts/script/holesky/admin/Deploy.s.sol +++ b/bolt-contracts/script/holesky/admin/Deploy.s.sol @@ -94,7 +94,7 @@ contract DeployBolt is Script { Upgrades.deployUUPSProxy("BoltSymbioticMiddlewareV1.sol", initSymbioticMiddleware, opts); console.log("BoltSymbioticMiddlewareV1 proxy deployed at", address(symbioticMiddlewareProxy)); - console.log("Core contracts deployed succesfully, whitelisting middleware contracts in BoltManager..."); + console.log("Core contracts deployed successfully, whitelisting middleware contracts in BoltManager..."); console.log("EigenLayer middleware:", address(eigenLayerMiddlewareProxy)); console.log("Symbiotic middleware:", address(symbioticMiddlewareProxy)); BoltManagerV1(managerProxy).addRestakingProtocol(address(eigenLayerMiddlewareProxy));