interface TaggedNostrEvent {
    content: string;
    context?: object;
    created_at: number;
    id: string;
    kind: number;
    pubkey: string;
    relays: string[];
    sig: string;
    tags: string[][];
}

Hierarchy (view full)

Properties

content: string
context?: object

Additional context

created_at: number
id: string
kind: number
pubkey: string
relays: string[]

A list of relays this event was seen on

sig: string
tags: string[][]

Generated using TypeDoc