Tx-set event — a tx.set(node, value) call inside a commit.

Drained inside the retained commits window (the exporter's maxCommits cap). Records intent, not effect: every tx.set(node, value) produces an event regardless of whether the staged value differs from the prior committed value (the engine's Phase B equality short-circuit is a separate concern). PR-B1 reserves the wire-format slot but does not yet instrument the engine to emit these.

interface IRTxSet {
    graphId: string;
    inputId: string;
    kind: "tx-set";
    time: number;
}

Properties

graphId: string
inputId: string
kind: "tx-set"
time: number