Documentation
    Preparing search index...

    Interface NappletAggregateIndexEntry

    Metadata tracked for one verified aggregate cache record.

    interface NappletAggregateIndexEntry {
        aggregateHash: string;
        blobHashes: string[];
        coordinateKey?: string;
        dTag: string;
        key: string;
        lastAccessed: number;
        pinned?: boolean;
        size: number;
    }
    Index

    Properties

    aggregateHash: string

    Verified NIP-5A aggregate hash.

    blobHashes: string[]

    SHA-256 hashes of blobs referenced by this aggregate.

    coordinateKey?: string

    Coordinate cache key that currently points at this aggregate, if any.

    dTag: string

    Manifest d tag.

    key: string

    Internal cache key derived from dTag and aggregateHash.

    lastAccessed: number

    Last read or write timestamp in milliseconds.

    pinned?: boolean

    Reserved pin marker for hosts that want to protect an aggregate.

    size: number

    Approximate stored aggregate-record byte size.