Title
Add Relay Existence Verification for Nostr Events
Component
Relay Management
Description
Description:
Once an event is verified as cryptographically valid, users should also be able to confirm that the event exists on one or more Nostr relays. This ticket adds a relay query feature that checks for the event’s presence and reports which relays have it stored.
Acceptance Criteria:
User can input or select the relay(s) to verify against.
System queries each relay by event ID and determines if the event is found.
UI displays a summary such as “Found on 2 of 3 relays” or “Not found on any relays.”
Any relay query errors are handled gracefully and shown in the status list.
Technical Notes:
Use Nostr subscription filter: { "ids": ["<event_id>"] } to check for existence.
Results should update dynamically once all relays respond.
Consider caching recent relay responses to reduce duplicate queries.
Title
Add Relay Existence Verification for Nostr Events
Component
Relay Management
Description
Description:
Once an event is verified as cryptographically valid, users should also be able to confirm that the event exists on one or more Nostr relays. This ticket adds a relay query feature that checks for the event’s presence and reports which relays have it stored.
Acceptance Criteria:
User can input or select the relay(s) to verify against.
System queries each relay by event ID and determines if the event is found.
UI displays a summary such as “Found on 2 of 3 relays” or “Not found on any relays.”
Any relay query errors are handled gracefully and shown in the status list.
Technical Notes:
Use Nostr subscription filter: { "ids": ["<event_id>"] } to check for existence.
Results should update dynamically once all relays respond.
Consider caching recent relay responses to reduce duplicate queries.