RLock
Docs
Observability
Event Schema

Event Schema

The submitters return:

type SubmitResult = {
  signature: string;
  lane: 'l1' | 'router';
  preflightSkipped: boolean;
  attempts: number;
}

Recommended log line

type SubmitLog = {
  at: string; // ISO timestamp
  signature: string;
  lane: 'l1' | 'router';
  preflightSkipped: boolean;
  attempts: number;
  msToConfirm?: number;
};
Edit on GitHub