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

    Function isRedactedLineageNode

    • true when the entry was redacted (the caller holds no grant for it).

      Parameters

      • entry:
            | { redacted: true }
            | {
                dataPointId: `0x${string}`;
                scope: string;
                version: string;
                deletedAt: string | null;
                redacted?: undefined;
            }
        • { redacted: true }
        • {
              dataPointId: `0x${string}`;
              scope: string;
              version: string;
              deletedAt: string | null;
              redacted?: undefined;
          }
          • dataPointId: `0x${string}`
          • scope: string
          • version: string

            The node's current version, decimal string; "0" for a source that no longer resolves to a registered data point.

          • deletedAt: string | null

            The node's tombstone time, or null when live.

          • Optionalredacted?: undefined

            Never present on a visible node. Declared so a node that carries redacted: true next to an id, scope and version cannot slip through this branch of LineageEntrySchema with the key stripped.

      Returns entry is { redacted: true }