Documentation
    Preparing search index...

    Interface NostrEvent

    Standard NIP-01 nostr event.

    const event: NostrEvent = {
    id: '...', pubkey: '...', created_at: 1234567890,
    kind: 1, tags: [['t', 'topic']], content: 'Hello', sig: '...',
    };
    interface NostrEvent {
        content: string;
        created_at: number;
        id: string;
        kind: number;
        pubkey: string;
        sig: string;
        tags: string[][];
    }
    Index

    Properties

    content: string
    created_at: number
    id: string
    kind: number
    pubkey: string
    sig: string
    tags: string[][]