gatelineAPI reference
interface GateDecisionRecord {
    approved: boolean;
    burden: null | "confirmation" | "light-correction" | "heavy-correction";
    by: null | string;
    decidedAt: number;
    gate: "G0" | "G1" | "G2" | "G3";
    latencySeconds: null | number;
    notes: null | string;
    readyAt: null | number;
    slug: string;
    source: string;
}

Properties

approved: boolean
burden: null | "confirmation" | "light-correction" | "heavy-correction"
by: null | string
decidedAt: number

Epoch seconds of the commit that recorded the decision.

gate: "G0" | "G1" | "G2" | "G3"
latencySeconds: null | number
notes: null | string
readyAt: null | number

Epoch seconds when the gate became ready (packet trigger commit), when known.

slug: string
source: string