const fetchProxyEvents = async () =>
  fetch('/api/v1.2/events.json').then(
    async (r) => (await r.json()) as API.EventsResponse,
  );