From d643f3ba95d17d019bb007922d27521e3a1b119a Mon Sep 17 00:00:00 2001 From: Samuel Laferriere Date: Tue, 25 Jun 2024 14:39:03 -0700 Subject: [PATCH] fix: comment typos in IServiceManagerUI (#278) --- src/interfaces/IServiceManagerUI.sol | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/interfaces/IServiceManagerUI.sol b/src/interfaces/IServiceManagerUI.sol index 9f06766c..92cdce9c 100644 --- a/src/interfaces/IServiceManagerUI.sol +++ b/src/interfaces/IServiceManagerUI.sol @@ -2,7 +2,6 @@ pragma solidity >=0.5.0; import {ISignatureUtils} from "eigenlayer-contracts/src/contracts/interfaces/ISignatureUtils.sol"; -import {IDelegationManager} from "eigenlayer-contracts/src/contracts/interfaces/IDelegationManager.sol"; /** * @title Minimal interface for a ServiceManager-type contract that AVS ServiceManager contracts must implement @@ -25,7 +24,7 @@ interface IServiceManagerUI { function updateAVSMetadataURI(string memory _metadataURI) external; /** - * @notice Forwards a call to EigenLayer's DelegationManager contract to confirm operator registration with the AVS + * @notice Forwards a call to EigenLayer's AVSDirectory contract to confirm operator registration with the AVS * @param operator The address of the operator to register. * @param operatorSignature The signature, salt, and expiry of the operator's signature. */ @@ -35,7 +34,7 @@ interface IServiceManagerUI { ) external; /** - * @notice Forwards a call to EigenLayer's DelegationManager contract to confirm operator deregistration from the AVS + * @notice Forwards a call to EigenLayer's AVSDirectory contract to confirm operator deregistration from the AVS * @param operator The address of the operator to deregister. */ function deregisterOperatorFromAVS(address operator) external;