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)); 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);