nostr-websocket-utils

nostr-websocket-utils v0.3.0


nostr-websocket-utils / NostrEvent

Interface: NostrEvent

Base Nostr event interface following NIP-01 specification

See

https://github.com/nostr-protocol/nips/blob/master/01.md

Extended by

Properties

id

id: string

Event ID in hex format

Defined in

types/events.ts:12


pubkey

pubkey: string

Public key of the event creator in hex format

Defined in

types/events.ts:15


created_at

created_at: number

Unix timestamp in seconds

Defined in

types/events.ts:18


kind

kind: number

Event kind number

Defined in

types/events.ts:21


tags

tags: string[][]

Array of tags

Defined in

types/events.ts:24


content

content: string

Event content

Defined in

types/events.ts:27


sig

sig: string

Signature of the event data in hex format

Defined in

types/events.ts:30