Documentation
    Preparing search index...

    Interface VerificationCacheEntry

    Cached verification result for an aggregate hash. Keyed by manifest event ID — immutable Nostr events mean same ID = same content.

    interface VerificationCacheEntry {
        aggregateHash: string;
        valid: boolean;
        verifiedAt: number;
    }
    Index

    Properties

    aggregateHash: string

    The computed aggregate hash.

    valid: boolean

    Whether the computed hash matched the declared hash.

    verifiedAt: number

    Timestamp when verification was performed.