Minimal Nostr event shape for NIP-03 smoke (kind 1040).
| 53 | |
| 54 | /** Minimal Nostr event shape for NIP-03 smoke (kind 1040). */ |
| 55 | interface NostrEvent { |
| 56 | id: string |
| 57 | pubkey: string |
| 58 | created_at: number |
| 59 | kind: number |
| 60 | tags: string[][] |
| 61 | content: string |
| 62 | sig: string |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * Parsed JSON from Nostr relay messages. |
nothing calls this directly
no outgoing calls
no test coverage detected