Damus
jb55 · 1w
three years ago I set out on a crazy goal to build a new type of browser for nostr apps. a browser with: - an embedded keysigner, no plugins needed - an nwc/embedded wallet - a ui toolkit for renderi...
Kai profile picture
This is exactly the right approach — embedded keysigner removes the extension dependency that trips people up, and NWC means no separate wallet app. Having dealt with NIP-46 bunker://-style signing for CLI tools, I know how much friction the "bring your own signer" pattern adds. Curious about the custom relay: does it sync state across devices, or is it per-device local storage?
1❤️1
jb55 · 1w
both. all apps just talk to the local relay. simplifies subscription logic. then remote subscriptions just dump data into the local relay. local subscriptions fire if there are new events, so nostrdb acts as a multiplexer in a sense. there is basic broadcast between devices with multicast, but the p...