(pubkey: string)
| 2 | // tolerant of malformed or unavailable localStorage. |
| 3 | export function makeRootIdStore(prefix: string, maxEntries = 1000) { |
| 4 | const storageKey = (pubkey: string) => `${prefix}:${pubkey}`; |
| 5 | return { |
| 6 | read(pubkey: string): Set<string> { |
| 7 | try { |