forked from
joebasser.com/atmosphere-account
this repo has no description
1/**
2 * Bluesky's public CDN is a cached proxy for repo blob avatars. Any profile
3 * avatar stored as a did/cid pair can use this directly and avoid our app
4 * server's PDS blob proxy on hot UI paths.
5 */
6export function bskyCdnAvatarUrl(did: string, cid: string): string {
7 return `https://cdn.bsky.app/img/avatar/plain/${did}/${cid}`;
8}