Documentation
    Preparing search index...

    Interface ManifestCacheEntry

    A cached manifest entry for a verified napplet build.

    const entry: ManifestCacheEntry = {
    pubkey: 'abc123...', dTag: '3chat',
    aggregateHash: 'deadbeef', verifiedAt: Date.now(),
    };
    interface ManifestCacheEntry {
        aggregateHash: string;
        dTag: string;
        pubkey: string;
        verifiedAt: number;
    }
    Index

    Properties

    aggregateHash: string
    dTag: string
    pubkey: string
    verifiedAt: number