Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bolt-contracts/script/holesky/admin/Deploy.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down
2 changes: 1 addition & 1 deletion bolt-contracts/test/BoltManager.EigenLayer.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down