diff --git a/src/SocketRegistry.sol b/src/SocketRegistry.sol index ebedc464..919ee5e5 100644 --- a/src/SocketRegistry.sol +++ b/src/SocketRegistry.sol @@ -21,7 +21,7 @@ contract SocketRegistry is SocketRegistryStorage { ISlashingRegistryCoordinator _slashingRegistryCoordinator ) SocketRegistryStorage(address(_slashingRegistryCoordinator)) {} - /// @notice sets the socket for an operator only callable by the SlashingRegistryCoordinator + /// @inheritdoc ISocketRegistry function setOperatorSocket( bytes32 _operatorId, string memory _socket @@ -29,7 +29,7 @@ contract SocketRegistry is SocketRegistryStorage { operatorIdToSocket[_operatorId] = _socket; } - /// @notice gets the stored socket for an operator + /// @inheritdoc ISocketRegistry function getOperatorSocket( bytes32 _operatorId ) external view returns (string memory) { diff --git a/src/SocketRegistryStorage.sol b/src/SocketRegistryStorage.sol index 6a228e4c..41d7d3b3 100644 --- a/src/SocketRegistryStorage.sol +++ b/src/SocketRegistryStorage.sol @@ -13,10 +13,10 @@ abstract contract SocketRegistryStorage is ISocketRegistry { * CONSTANTS AND IMMUTABLES * */ - + /// @notice The address of the SlashingRegistryCoordinator address public immutable slashingRegistryCoordinator; - + /** * * STATE diff --git a/src/interfaces/ISlashingRegistryCoordinator.sol b/src/interfaces/ISlashingRegistryCoordinator.sol index dd058773..c91fbbce 100644 --- a/src/interfaces/ISlashingRegistryCoordinator.sol +++ b/src/interfaces/ISlashingRegistryCoordinator.sol @@ -232,7 +232,7 @@ interface ISlashingRegistryCoordinator is * @dev This is only relevant for Slashing AVSs */ function allocationManager() external view returns (IAllocationManager); - + /** * @notice Reference to the SocketRegistry contract. * @return The SocketRegistry contract interface.