@pwngh/economy-lab
    Preparing search index...

    Type Alias StoredLink

    One posting as lineage returns it, carrying the two hashes that tie it into the account's tamper-evident chain.

    Integrity for the hash chain.

    type StoredLink = {
        hash: string;
        legs: ReadonlyArray<Leg>;
        meta: Record<string, unknown>;
        prevHash: string;
        txnId: string;
    }
    Index
    hash: string

    The account's head hash after this posting; the prover's recompute must reproduce it.

    legs: ReadonlyArray<Leg>
    meta: Record<string, unknown>
    prevHash: string

    The account's head hash before this posting; a fixed all-zeros "genesis" hex for the first.

    txnId: string