Select the types of activity you want to include in your feed.
1// the service wants signed urls and the secret is server side, so this points 2// at the route that signs 3export const avatarUrl = (did: string, width?: number): string => 4 `/avatar/${encodeURIComponent(did)}${width ? `?size=${width}` : ""}`;