Marmot-TS
    Preparing search index...

    Interface PooledEntry<TEnvelope>

    One pooled envelope awaiting a retained state that can decrypt it.

    interface PooledEntry<TEnvelope> {
        arrivalEpoch: number;
        envelope: TEnvelope;
        id: string;
        triedTags: Set<string>;
    }

    Type Parameters

    • TEnvelope
    Index

    Engine

    arrivalEpoch: number

    The canonical tip epoch when the envelope was first pooled.

    envelope: TEnvelope

    The raw undecryptable envelope.

    id: string

    Stable transport id (kind-445 event id) — the pool key.

    triedTags: Set<string>

    History-tree node tags this entry has already been peeled against without success, so the tree-targeted sweep tries each (event, node) pair once.