Vana SDK - v4.1.0
    Preparing search index...

    Interface LineageReadResult

    A lineage read: the view plus the gateway's attestation over it.

    interface LineageReadResult {
        ownerAddress?: string;
        version: string;
        derivativesTruncated?: boolean;
        proof?: Record<string, unknown>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    ownerAddress?: string = ...

    The data point owner; every node in the view belongs to it.

    version: string = ViewVersionSchema

    The derived record's version whose lineage is shown: the requested one, else the current one, else (current is a tombstone) the last version that carried lineage.

    derivativesTruncated?: boolean = ...

    true when derivatives was cut at the server's cap (1000).

    proof?: Record<string, unknown>

    The gateway proof (GatewayAttestation over the served view, so a redacted view verifies on its own). Passed through as received; absent when the server sent none.