@aztec/sequencer-client 0.0.1-commit.4d79d1f2d → 0.0.1-commit.4d9804df

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (129) hide show
  1. package/README.md +281 -21
  2. package/dest/client/sequencer-client.d.ts +34 -11
  3. package/dest/client/sequencer-client.d.ts.map +1 -1
  4. package/dest/client/sequencer-client.js +77 -39
  5. package/dest/config.d.ts +32 -5
  6. package/dest/config.d.ts.map +1 -1
  7. package/dest/config.js +91 -39
  8. package/dest/global_variable_builder/fee_predictor.d.ts +37 -0
  9. package/dest/global_variable_builder/fee_predictor.d.ts.map +1 -0
  10. package/dest/global_variable_builder/fee_predictor.js +138 -0
  11. package/dest/global_variable_builder/fee_provider.d.ts +21 -0
  12. package/dest/global_variable_builder/fee_provider.d.ts.map +1 -0
  13. package/dest/global_variable_builder/fee_provider.js +80 -0
  14. package/dest/global_variable_builder/global_builder.d.ts +13 -28
  15. package/dest/global_variable_builder/global_builder.d.ts.map +1 -1
  16. package/dest/global_variable_builder/global_builder.js +9 -66
  17. package/dest/global_variable_builder/index.d.ts +4 -2
  18. package/dest/global_variable_builder/index.d.ts.map +1 -1
  19. package/dest/global_variable_builder/index.js +2 -0
  20. package/dest/publisher/config.d.ts +51 -17
  21. package/dest/publisher/config.d.ts.map +1 -1
  22. package/dest/publisher/config.js +131 -42
  23. package/dest/publisher/index.d.ts +2 -1
  24. package/dest/publisher/index.d.ts.map +1 -1
  25. package/dest/publisher/l1_to_l2_messaging.d.ts +21 -0
  26. package/dest/publisher/l1_to_l2_messaging.d.ts.map +1 -0
  27. package/dest/publisher/l1_to_l2_messaging.js +70 -0
  28. package/dest/publisher/l1_tx_failed_store/factory.d.ts +11 -0
  29. package/dest/publisher/l1_tx_failed_store/factory.d.ts.map +1 -0
  30. package/dest/publisher/l1_tx_failed_store/factory.js +22 -0
  31. package/dest/publisher/l1_tx_failed_store/failed_tx_store.d.ts +98 -0
  32. package/dest/publisher/l1_tx_failed_store/failed_tx_store.d.ts.map +1 -0
  33. package/dest/publisher/l1_tx_failed_store/failed_tx_store.js +68 -0
  34. package/dest/publisher/l1_tx_failed_store/file_store_failed_tx_store.d.ts +15 -0
  35. package/dest/publisher/l1_tx_failed_store/file_store_failed_tx_store.d.ts.map +1 -0
  36. package/dest/publisher/l1_tx_failed_store/file_store_failed_tx_store.js +36 -0
  37. package/dest/publisher/l1_tx_failed_store/index.d.ts +4 -0
  38. package/dest/publisher/l1_tx_failed_store/index.d.ts.map +1 -0
  39. package/dest/publisher/l1_tx_failed_store/index.js +3 -0
  40. package/dest/publisher/sequencer-bundle-simulator.d.ts +96 -0
  41. package/dest/publisher/sequencer-bundle-simulator.d.ts.map +1 -0
  42. package/dest/publisher/sequencer-bundle-simulator.js +198 -0
  43. package/dest/publisher/sequencer-publisher-factory.d.ts +11 -5
  44. package/dest/publisher/sequencer-publisher-factory.d.ts.map +1 -1
  45. package/dest/publisher/sequencer-publisher-factory.js +27 -3
  46. package/dest/publisher/sequencer-publisher.d.ts +122 -67
  47. package/dest/publisher/sequencer-publisher.d.ts.map +1 -1
  48. package/dest/publisher/sequencer-publisher.js +745 -380
  49. package/dest/publisher/write_json.d.ts +11 -0
  50. package/dest/publisher/write_json.d.ts.map +1 -0
  51. package/dest/publisher/write_json.js +57 -0
  52. package/dest/sequencer/automine/automine_factory.d.ts +56 -0
  53. package/dest/sequencer/automine/automine_factory.d.ts.map +1 -0
  54. package/dest/sequencer/automine/automine_factory.js +85 -0
  55. package/dest/sequencer/automine/automine_sequencer.d.ts +189 -0
  56. package/dest/sequencer/automine/automine_sequencer.d.ts.map +1 -0
  57. package/dest/sequencer/automine/automine_sequencer.js +690 -0
  58. package/dest/sequencer/automine/index.d.ts +3 -0
  59. package/dest/sequencer/automine/index.d.ts.map +1 -0
  60. package/dest/sequencer/automine/index.js +2 -0
  61. package/dest/sequencer/checkpoint_proposal_job.d.ts +75 -19
  62. package/dest/sequencer/checkpoint_proposal_job.d.ts.map +1 -1
  63. package/dest/sequencer/checkpoint_proposal_job.js +872 -262
  64. package/dest/sequencer/checkpoint_proposal_job_metrics.d.ts +34 -0
  65. package/dest/sequencer/checkpoint_proposal_job_metrics.d.ts.map +1 -0
  66. package/dest/sequencer/checkpoint_proposal_job_metrics.js +72 -0
  67. package/dest/sequencer/checkpoint_voter.d.ts +1 -2
  68. package/dest/sequencer/checkpoint_voter.d.ts.map +1 -1
  69. package/dest/sequencer/checkpoint_voter.js +2 -5
  70. package/dest/sequencer/events.d.ts +62 -5
  71. package/dest/sequencer/events.d.ts.map +1 -1
  72. package/dest/sequencer/metrics.d.ts +23 -8
  73. package/dest/sequencer/metrics.d.ts.map +1 -1
  74. package/dest/sequencer/metrics.js +117 -21
  75. package/dest/sequencer/requests_tracker.d.ts +22 -0
  76. package/dest/sequencer/requests_tracker.d.ts.map +1 -0
  77. package/dest/sequencer/requests_tracker.js +33 -0
  78. package/dest/sequencer/sequencer.d.ts +179 -44
  79. package/dest/sequencer/sequencer.d.ts.map +1 -1
  80. package/dest/sequencer/sequencer.js +612 -219
  81. package/dest/sequencer/types.d.ts +2 -2
  82. package/dest/sequencer/types.d.ts.map +1 -1
  83. package/dest/test/index.d.ts +5 -7
  84. package/dest/test/index.d.ts.map +1 -1
  85. package/dest/test/mock_checkpoint_builder.d.ts +11 -11
  86. package/dest/test/mock_checkpoint_builder.d.ts.map +1 -1
  87. package/dest/test/mock_checkpoint_builder.js +45 -34
  88. package/dest/test/utils.d.ts +17 -3
  89. package/dest/test/utils.d.ts.map +1 -1
  90. package/dest/test/utils.js +28 -9
  91. package/package.json +30 -29
  92. package/src/client/sequencer-client.ts +110 -47
  93. package/src/config.ts +111 -44
  94. package/src/global_variable_builder/README.md +44 -0
  95. package/src/global_variable_builder/fee_predictor.ts +182 -0
  96. package/src/global_variable_builder/fee_provider.ts +97 -0
  97. package/src/global_variable_builder/global_builder.ts +20 -89
  98. package/src/global_variable_builder/index.ts +3 -1
  99. package/src/publisher/config.ts +173 -40
  100. package/src/publisher/index.ts +3 -0
  101. package/src/publisher/l1_to_l2_messaging.ts +85 -0
  102. package/src/publisher/l1_tx_failed_store/factory.ts +32 -0
  103. package/src/publisher/l1_tx_failed_store/failed_tx_store.ts +164 -0
  104. package/src/publisher/l1_tx_failed_store/file_store_failed_tx_store.ts +47 -0
  105. package/src/publisher/l1_tx_failed_store/index.ts +3 -0
  106. package/src/publisher/sequencer-bundle-simulator.ts +254 -0
  107. package/src/publisher/sequencer-publisher-factory.ts +38 -9
  108. package/src/publisher/sequencer-publisher.ts +847 -470
  109. package/src/publisher/write_json.ts +78 -0
  110. package/src/sequencer/README.md +162 -450
  111. package/src/sequencer/automine/README.md +60 -0
  112. package/src/sequencer/automine/automine_factory.ts +152 -0
  113. package/src/sequencer/automine/automine_sequencer.ts +796 -0
  114. package/src/sequencer/automine/index.ts +6 -0
  115. package/src/sequencer/checkpoint_proposal_job.ts +1062 -287
  116. package/src/sequencer/checkpoint_proposal_job_metrics.ts +128 -0
  117. package/src/sequencer/checkpoint_voter.ts +1 -12
  118. package/src/sequencer/events.ts +66 -5
  119. package/src/sequencer/metrics.ts +132 -25
  120. package/src/sequencer/requests_tracker.ts +43 -0
  121. package/src/sequencer/sequencer.ts +724 -244
  122. package/src/sequencer/types.ts +1 -1
  123. package/src/test/index.ts +4 -6
  124. package/src/test/mock_checkpoint_builder.ts +63 -49
  125. package/src/test/utils.ts +64 -10
  126. package/dest/sequencer/timetable.d.ts +0 -87
  127. package/dest/sequencer/timetable.d.ts.map +0 -1
  128. package/dest/sequencer/timetable.js +0 -223
  129. package/src/sequencer/timetable.ts +0 -283
@@ -1,20 +1,35 @@
1
1
  import { getKzg } from '@aztec/blob-lib';
2
- import { INITIAL_L2_BLOCK_NUM } from '@aztec/constants';
3
- import type { EpochCache } from '@aztec/epoch-cache';
2
+ import { type EpochCache, PROPOSER_PIPELINING_SLOT_OFFSET } from '@aztec/epoch-cache';
4
3
  import { NoCommitteeError, type RollupContract } from '@aztec/ethereum/contracts';
5
4
  import { BlockNumber, CheckpointNumber, EpochNumber, SlotNumber } from '@aztec/foundation/branded-types';
6
5
  import { merge, omit, pick } from '@aztec/foundation/collection';
7
6
  import { Fr } from '@aztec/foundation/curves/bn254';
8
7
  import { EthAddress } from '@aztec/foundation/eth-address';
9
- import { createLogger } from '@aztec/foundation/log';
8
+ import { type Logger, createLogger } from '@aztec/foundation/log';
10
9
  import { RunningPromise } from '@aztec/foundation/running-promise';
11
10
  import type { DateProvider } from '@aztec/foundation/timer';
12
11
  import type { TypedEventEmitter } from '@aztec/foundation/types';
13
12
  import type { P2P } from '@aztec/p2p';
14
13
  import type { SlasherClientInterface } from '@aztec/slasher';
15
- import type { L2Block, L2BlockSink, L2BlockSource, ValidateCheckpointResult } from '@aztec/stdlib/block';
16
- import type { Checkpoint } from '@aztec/stdlib/checkpoint';
17
- import { getSlotAtTimestamp, getSlotStartBuildTimestamp } from '@aztec/stdlib/epoch-helpers';
14
+ import type {
15
+ BlockData,
16
+ L2BlockSink,
17
+ L2BlockSource,
18
+ ProposedCheckpointSink,
19
+ ValidateCheckpointResult,
20
+ } from '@aztec/stdlib/block';
21
+ import {
22
+ type Checkpoint,
23
+ type ProposedCheckpointData,
24
+ buildCheckpointSimulationOverridesPlan,
25
+ } from '@aztec/stdlib/checkpoint';
26
+ import type { ChainConfig } from '@aztec/stdlib/config';
27
+ import { getEpochAtSlot } from '@aztec/stdlib/epoch-helpers';
28
+ import {
29
+ MIN_PER_BLOCK_ALLOCATION_MULTIPLIER,
30
+ MIN_PER_BLOCK_DA_ALLOCATION_MULTIPLIER,
31
+ computeNetworkTxGasLimits,
32
+ } from '@aztec/stdlib/gas';
18
33
  import {
19
34
  type ResolvedSequencerConfig,
20
35
  type SequencerConfig,
@@ -22,10 +37,11 @@ import {
22
37
  type WorldStateSynchronizer,
23
38
  } from '@aztec/stdlib/interfaces/server';
24
39
  import type { L1ToL2MessageSource } from '@aztec/stdlib/messaging';
40
+ import type { CoordinationSignatureContext } from '@aztec/stdlib/p2p';
25
41
  import { pickFromSchema } from '@aztec/stdlib/schemas';
26
- import { MerkleTreeId } from '@aztec/stdlib/trees';
42
+ import { ProposerTimetable, buildProposerTimetable } from '@aztec/stdlib/timetable';
27
43
  import { Attributes, type TelemetryClient, type Tracer, getTelemetryClient, trackSpan } from '@aztec/telemetry-client';
28
- import { FullNodeCheckpointsBuilder, type ValidatorClient } from '@aztec/validator-client';
44
+ import { FullNodeCheckpointsBuilder, NodeKeystoreAdapter, type ValidatorClient } from '@aztec/validator-client';
29
45
 
30
46
  import EventEmitter from 'node:events';
31
47
 
@@ -34,16 +50,27 @@ import type { GlobalVariableBuilder } from '../global_variable_builder/global_bu
34
50
  import type { SequencerPublisherFactory } from '../publisher/sequencer-publisher-factory.js';
35
51
  import type { InvalidateCheckpointRequest, SequencerPublisher } from '../publisher/sequencer-publisher.js';
36
52
  import { CheckpointProposalJob } from './checkpoint_proposal_job.js';
53
+ import { CheckpointProposalJobMetrics } from './checkpoint_proposal_job_metrics.js';
37
54
  import { CheckpointVoter } from './checkpoint_voter.js';
38
- import { SequencerInterruptedError, SequencerTooSlowError } from './errors.js';
55
+ import { SequencerInterruptedError } from './errors.js';
39
56
  import type { SequencerEvents } from './events.js';
40
57
  import { SequencerMetrics } from './metrics.js';
41
- import { SequencerTimetable } from './timetable.js';
58
+ import { RequestsTracker } from './requests_tracker.js';
42
59
  import type { SequencerRollupConstants } from './types.js';
43
60
  import { SequencerState } from './utils.js';
44
61
 
45
62
  export { SequencerState };
46
63
 
64
+ /** Slot snapshot used to prepare a checkpoint proposal. */
65
+ type SequencerSlotContext = {
66
+ slot: SlotNumber;
67
+ targetSlot: SlotNumber;
68
+ epoch: EpochNumber;
69
+ targetEpoch: EpochNumber;
70
+ ts: bigint;
71
+ nowSeconds: bigint;
72
+ };
73
+
47
74
  /**
48
75
  * Sequencer client
49
76
  * - Checks whether it is elected as proposer for the next slot
@@ -53,18 +80,27 @@ export { SequencerState };
53
80
  * - Votes for proposals and slashes on L1
54
81
  */
55
82
  export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<SequencerEvents>) {
56
- private runningPromise?: RunningPromise;
83
+ protected runningPromise?: RunningPromise;
57
84
  private state = SequencerState.STOPPED;
85
+ private stateSlotNumber: SlotNumber | undefined;
86
+ /** Wall-clock time (ms, via the date provider) at which the current state was entered. */
87
+ private stateEnteredAtMs: number;
58
88
  private metrics: SequencerMetrics;
89
+ private checkpointProposalJobMetrics: CheckpointProposalJobMetrics;
90
+ private readonly stateLog: Logger;
91
+
92
+ /** The last slot for which we attempted to perform our fallback duties (votes and/or prune) with degraded block production */
93
+ private lastSlotForFallbackAction: SlotNumber | undefined;
59
94
 
60
- /** The last slot for which we attempted to perform our voting duties with degraded block production */
61
- private lastSlotForFallbackVote: SlotNumber | undefined;
95
+ /** The (checkpoint, slot) of the last invalidation request we successfully simulated, to prevent
96
+ * re-simulating and re-submitting the same invalidation across the many ticks within a single slot. */
97
+ private lastInvalidationAttempt: { slot: SlotNumber; checkpointNumber: CheckpointNumber } | undefined;
62
98
 
63
99
  /** The last slot for which we logged "no committee" warning, to avoid spam */
64
100
  private lastSlotForNoCommitteeWarning: SlotNumber | undefined;
65
101
 
66
102
  /** The last slot for which we triggered a checkpoint proposal job, to prevent duplicate attempts. */
67
- private lastSlotForCheckpointProposalJob: SlotNumber | undefined;
103
+ protected lastSlotForCheckpointProposalJob: SlotNumber | undefined;
68
104
 
69
105
  /** Last successful checkpoint proposed */
70
106
  private lastCheckpointProposed: Checkpoint | undefined;
@@ -72,19 +108,26 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
72
108
  /** The last epoch for which we logged strategy comparison in fisherman mode. */
73
109
  private lastEpochForStrategyComparison: EpochNumber | undefined;
74
110
 
75
- /** The maximum number of seconds that the sequencer can be into a slot to transition to a particular state. */
76
- protected timetable!: SequencerTimetable;
111
+ /** The last checkpoint proposal job, tracked so we can await its pending L1 submission during shutdown. */
112
+ protected lastCheckpointProposalJob: CheckpointProposalJob | undefined;
113
+
114
+ /**
115
+ * In-flight fire-and-forget requests that {@link stop} interrupts and drains, and {@link pause} awaits
116
+ * untouched: the checkpoint proposal jobs' backgrounded L1 submissions (each job is handed this shared
117
+ * tracker) plus the sequencer's own fallback submissions (votes/prune when we cannot build, or
118
+ * escape-hatch votes). Each fallback send is gated by its wrapper publisher's interruptible target-slot
119
+ * sleep; the tracked interrupt wakes that sleep so the send short-circuits without publishing. A wrapper
120
+ * is created for a single send and is never restarted, so once interrupted its sleeper can never publish
121
+ * a stale-slot tx, even after the pooled publishers are restarted by a later {@link start}.
122
+ */
123
+ protected readonly pendingRequests = new RequestsTracker();
77
124
 
78
- // This shouldn't be here as this gets re-created each time we build/propose a block.
79
- // But we have a number of tests that abuse/rely on this class having a permanent publisher.
80
- // As long as those tests only configure a single publisher they will continue to work.
81
- // This will get re-assigned every time the sequencer goes to build a new block to a publisher that is valid
82
- // for the block proposer.
83
- // TODO(palla/mbps): Remove this field and fix tests
84
- protected publisher: SequencerPublisher | undefined;
125
+ /** Proposer schedule and block sub-slot timetable for the sequencer, rebuilt on every config update. */
126
+ protected timetable!: ProposerTimetable;
85
127
 
86
128
  /** Config for the sequencer */
87
129
  protected config: ResolvedSequencerConfig = DefaultSequencerConfig;
130
+ private readonly signatureContext: CoordinationSignatureContext;
88
131
 
89
132
  constructor(
90
133
  protected publisherFactory: SequencerPublisherFactory,
@@ -93,55 +136,171 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
93
136
  protected p2pClient: P2P,
94
137
  protected worldState: WorldStateSynchronizer,
95
138
  protected slasherClient: SlasherClientInterface | undefined,
96
- protected l2BlockSource: L2BlockSource & L2BlockSink,
139
+ protected l2BlockSource: L2BlockSource & L2BlockSink & ProposedCheckpointSink,
97
140
  protected l1ToL2MessageSource: L1ToL2MessageSource,
98
141
  protected checkpointsBuilder: FullNodeCheckpointsBuilder,
99
142
  protected l1Constants: SequencerRollupConstants,
100
143
  protected dateProvider: DateProvider,
101
144
  protected epochCache: EpochCache,
102
145
  protected rollupContract: RollupContract,
103
- config: SequencerConfig,
146
+ config: SequencerConfig & Pick<ChainConfig, 'l1ChainId' | 'rollupAddress'>,
104
147
  protected telemetry: TelemetryClient = getTelemetryClient(),
105
148
  protected log = createLogger('sequencer'),
106
149
  ) {
107
150
  super();
151
+ this.stateLog = log.createChild('state');
152
+ this.stateEnteredAtMs = this.dateProvider.now();
108
153
 
109
154
  // Add [FISHERMAN] prefix to logger if in fisherman mode
110
155
  if (config.fishermanMode) {
111
156
  this.log = log.createChild('[FISHERMAN]');
112
157
  }
113
158
 
159
+ this.signatureContext = {
160
+ chainId: config.l1ChainId,
161
+ rollupAddress: config.rollupAddress,
162
+ };
114
163
  this.metrics = new SequencerMetrics(telemetry, this.rollupContract, 'Sequencer');
164
+ this.checkpointProposalJobMetrics = new CheckpointProposalJobMetrics(telemetry);
115
165
  this.updateConfig(config);
116
166
  }
117
167
 
118
- /** Updates sequencer config by the defined values and updates the timetable */
168
+ /**
169
+ * Updates sequencer config by the defined values and rebuilds the timetable.
170
+ *
171
+ * The merged config is validated against a candidate before being committed: {@link buildTimetable} may
172
+ * reject the candidate (invalid timing geometry, or per-block allocation multipliers below the network
173
+ * minimums). On rejection we leave `this.config` and `this.timetable` untouched and rethrow, so a bad update
174
+ * never leaves the sequencer running with a rejected config and a stale timetable.
175
+ */
119
176
  public updateConfig(config: Partial<SequencerConfig>) {
120
177
  const filteredConfig = pickFromSchema(config, SequencerConfigSchema);
121
- this.log.info(`Updated sequencer config`, omit(filteredConfig, 'txPublicSetupAllowList'));
122
- this.config = merge(this.config, filteredConfig);
123
- this.timetable = new SequencerTimetable(
124
- {
125
- ethereumSlotDuration: this.l1Constants.ethereumSlotDuration,
126
- aztecSlotDuration: this.aztecSlotDuration,
127
- l1PublishingTime: this.l1PublishingTime,
128
- p2pPropagationTime: this.config.attestationPropagationTime,
129
- blockDurationMs: this.config.blockDurationMs,
130
- enforce: this.config.enforceTimeTable,
131
- },
132
- this.metrics,
133
- this.log,
134
- );
178
+ const candidate = merge(this.config, filteredConfig);
179
+ let timetable: ProposerTimetable;
180
+ try {
181
+ timetable = this.buildTimetable(candidate);
182
+ } catch (err) {
183
+ this.log.warn(`Rejecting sequencer config update: ${(err as Error).message}`, {
184
+ rejectedConfig: omit(filteredConfig, 'txPublicSetupAllowListExtend'),
185
+ });
186
+ throw err;
187
+ }
188
+ this.config = candidate;
189
+ this.timetable = timetable;
190
+ this.log.info(`Updated sequencer config`, omit(filteredConfig, 'txPublicSetupAllowListExtend'));
135
191
  }
136
192
 
137
- /** Initializes the sequencer (precomputes tables and creates a publisher). Takes about 3s. */
138
- public async init() {
193
+ /**
194
+ * Builds the proposer timetable from the given config and L1 constants via the shared
195
+ * {@link buildProposerTimetable} helper, so the sequencer derives the same blocks-per-checkpoint as the p2p
196
+ * layer and `getNodeInfo`. The fast local/e2e profile and budget clamping happen inside
197
+ * {@link ProposerTimetable}.
198
+ *
199
+ * Throws if the timing geometry is invalid or the per-block allocation multipliers are below the network
200
+ * minimums; callers must treat a throw as a rejected config and not commit it.
201
+ */
202
+ private buildTimetable(config: ResolvedSequencerConfig): ProposerTimetable {
203
+ const timetable = buildProposerTimetable(config, this.l1Constants);
204
+
205
+ const maxNumberOfBlocks = timetable.getMaxBlocksPerCheckpoint();
206
+ this.log.info(`Sequencer timetable initialized with ${maxNumberOfBlocks} blocks per slot`, {
207
+ aztecSlotDuration: timetable.aztecSlotDuration,
208
+ ethereumSlotDuration: timetable.ethereumSlotDuration,
209
+ blockDuration: timetable.blockDuration,
210
+ minBlockDuration: timetable.minBlockDuration,
211
+ p2pPropagationTime: timetable.p2pPropagationTime,
212
+ checkpointProposalPrepareTime: timetable.checkpointProposalPrepareTime,
213
+ maxNumberOfBlocks,
214
+ });
215
+
216
+ this.assertConfigMeetsNetworkTxLimits(config, maxNumberOfBlocks);
217
+
218
+ return timetable;
219
+ }
220
+
221
+ /**
222
+ * Checks this node's configured per-block allocation against the network admission limit. A node
223
+ * advertises and admits txs up to the limit derived from the network-minimum multipliers (see
224
+ * {@link computeNetworkTxGasLimits}).
225
+ *
226
+ * Fails startup (and runtime config updates) only when the configured per-block allocation *multipliers*
227
+ * (`perBlockAllocationMultiplier` / `perBlockDAAllocationMultiplier`) are below the network minimums: such
228
+ * a node would accept txs over RPC/gossip that its builder can never pack into a block regardless of block
229
+ * size. Operators may configure a higher (more generous) multiplier, but not a lower one.
230
+ *
231
+ * When the multipliers meet the floor but an absolute per-block gas cap (`maxDABlockGas` / `maxL2BlockGas`)
232
+ * shrinks the builder's effective grant below the network limit, this is legitimate operator
233
+ * restrictiveness — the node simply builds smaller blocks and such txs stay in the pool for other
234
+ * proposers — so we only log a warning rather than failing startup. Restrictive tx-count caps
235
+ * (`maxTxsPerBlock` / `maxTxsPerCheckpoint`) can likewise make the builder skip admitted txs; they are
236
+ * intentionally not modeled here for the same reason.
237
+ */
238
+ private assertConfigMeetsNetworkTxLimits(config: ResolvedSequencerConfig, maxBlocksPerCheckpoint: number) {
239
+ // Mirror CheckpointBuilder.capLimitsByCheckpointBudgets: DA falls back to the general multiplier.
240
+ const l2Multiplier = config.perBlockAllocationMultiplier;
241
+ const daMultiplier = config.perBlockDAAllocationMultiplier ?? l2Multiplier;
242
+
243
+ // The allocation is monotonic in the multiplier, so a multiplier at or above the network minimum
244
+ // guarantees the builder grants at least the network admission limit. Checking the multipliers directly
245
+ // is sufficient (and strictly more conservative than modeling the resulting gas grant).
246
+ if (daMultiplier < MIN_PER_BLOCK_DA_ALLOCATION_MULTIPLIER) {
247
+ throw new Error(
248
+ `perBlockDAAllocationMultiplier (${daMultiplier}) is below the network minimum ` +
249
+ `${MIN_PER_BLOCK_DA_ALLOCATION_MULTIPLIER}; the node would admit txs its own builder can never include.`,
250
+ );
251
+ }
252
+ if (l2Multiplier < MIN_PER_BLOCK_ALLOCATION_MULTIPLIER) {
253
+ throw new Error(
254
+ `perBlockAllocationMultiplier (${l2Multiplier}) is below the network minimum ` +
255
+ `${MIN_PER_BLOCK_ALLOCATION_MULTIPLIER}; the node would admit txs its own builder can never include.`,
256
+ );
257
+ }
258
+
259
+ // Absolute per-block gas caps below the network admission limit are legitimate operator restrictiveness:
260
+ // the node simply builds smaller blocks and such txs stay in the pool for other proposers. Warn only.
261
+ const networkLimit = computeNetworkTxGasLimits({
262
+ maxBlocksPerCheckpoint,
263
+ manaCheckpointBudget: this.l1Constants.rollupManaLimit,
264
+ });
265
+ if (config.maxDABlockGas !== undefined && config.maxDABlockGas < networkLimit.daGas) {
266
+ this.log.warn(
267
+ `Sequencer maxDABlockGas (${config.maxDABlockGas}) is below the network DA admission limit ` +
268
+ `(${networkLimit.daGas}): txs declaring more DA gas are admitted over RPC/gossip but will be skipped ` +
269
+ `by this proposer's own blocks and left in the pool for other proposers.`,
270
+ { maxDABlockGas: config.maxDABlockGas, networkDaGas: networkLimit.daGas, maxBlocksPerCheckpoint },
271
+ );
272
+ }
273
+ if (config.maxL2BlockGas !== undefined && config.maxL2BlockGas < networkLimit.l2Gas) {
274
+ this.log.warn(
275
+ `Sequencer maxL2BlockGas (${config.maxL2BlockGas}) is below the network L2 admission limit ` +
276
+ `(${networkLimit.l2Gas}): txs declaring more L2 gas are admitted over RPC/gossip but will be skipped ` +
277
+ `by this proposer's own blocks and left in the pool for other proposers.`,
278
+ { maxL2BlockGas: config.maxL2BlockGas, networkL2Gas: networkLimit.l2Gas, maxBlocksPerCheckpoint },
279
+ );
280
+ }
281
+ }
282
+
283
+ /** Initializes the sequencer (precomputes tables). Takes about 3s. */
284
+ public init() {
139
285
  getKzg();
140
- this.publisher = (await this.publisherFactory.create(undefined)).publisher;
141
286
  }
142
287
 
143
- /** Starts the sequencer and moves to IDLE state. */
288
+ /**
289
+ * Starts (or restarts) the sequencer and moves it to the IDLE state. Idempotent: a start while already
290
+ * running is a no-op, so it never orphans the previous poll loop. A start while STOPPING throws, since the
291
+ * in-flight stop would mark the fresh loop's state STOPPED and orphan it — silently doing nothing would
292
+ * leave the caller believing the sequencer is running when it is on its way to STOPPED. Safe to call after
293
+ * a previous {@link stop} has resolved; the caller must also restart the publishers (see
294
+ * {@link SequencerClient.start}) so L1 publishing is re-enabled.
295
+ */
144
296
  public start() {
297
+ if (this.state === SequencerState.STOPPING) {
298
+ throw new Error('Cannot start sequencer while it is stopping');
299
+ }
300
+ if (this.runningPromise?.isRunning()) {
301
+ this.log.warn('Attempted to start sequencer that is already running');
302
+ return;
303
+ }
145
304
  this.runningPromise = new RunningPromise(
146
305
  this.safeWork.bind(this),
147
306
  this.log,
@@ -152,35 +311,68 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
152
311
  this.log.info('Started sequencer');
153
312
  }
154
313
 
155
- /** Stops the sequencer from building blocks and moves to STOPPED state. */
314
+ /** Triggers an immediate run of the sequencer, bypassing the polling interval. */
315
+ public trigger() {
316
+ return this.runningPromise?.trigger();
317
+ }
318
+
319
+ /**
320
+ * Stops the sequencer from building blocks and moves it to STOPPED state, interrupting the in-flight
321
+ * work() iteration and its pending L1 submissions for a fast shutdown, then draining before returning.
322
+ * Idempotent: a second call while already stopped or stopping is a no-op. Lifecycle calls are expected
323
+ * to be serialized by the caller. For a restartable pause that lets in-flight work finish untouched
324
+ * (e.g. around a test clock warp), use {@link pause} instead.
325
+ */
156
326
  public async stop(): Promise<void> {
327
+ if (this.state === SequencerState.STOPPED || this.state === SequencerState.STOPPING) {
328
+ this.log.debug(`Sequencer already ${this.state.toLowerCase()}, ignoring stop`);
329
+ return;
330
+ }
157
331
  this.log.info(`Stopping sequencer`);
158
332
  this.setState(SequencerState.STOPPING, undefined, { force: true });
159
- this.publisher?.interrupt();
333
+ this.lastCheckpointProposalJob?.interrupt();
334
+ await this.publisherFactory.stopAll();
335
+ // Stop the poll loop and await the in-flight work() iteration. work() registers its fire-and-forget
336
+ // requests synchronously before returning, so once the loop has stopped, pendingRequests holds every
337
+ // request that will ever exist. Interrupting any earlier could miss a request registered by the last
338
+ // in-flight iteration.
160
339
  await this.runningPromise?.stop();
340
+ this.pendingRequests.interruptRequests();
341
+ await this.pendingRequests.awaitRequests();
161
342
  this.setState(SequencerState.STOPPED, undefined, { force: true });
162
343
  this.log.info('Stopped sequencer');
163
344
  }
164
345
 
346
+ /**
347
+ * Gracefully pauses block production so the sequencer can later be resumed with {@link start}: halts the
348
+ * poll loop and waits for the in-flight work() iteration and every pending L1 submission / fallback send
349
+ * to finish, without interrupting them. No interrupt lands mid-build, so no spurious checkpoint-error is
350
+ * emitted and no enqueued checkpoint is dropped. Deliberately does not stop inner services (validator/HA
351
+ * signer, publishers), so the slashing-protection store stays open and the sequencer stays restartable.
352
+ * Used by tests that pause sequencers around an L1 clock warp. Idempotent.
353
+ */
354
+ public async pause(): Promise<void> {
355
+ if (!this.runningPromise?.isRunning()) {
356
+ this.log.debug('Sequencer not running, ignoring pause');
357
+ return;
358
+ }
359
+ this.log.info('Pausing sequencer');
360
+ // Halt the poll loop and let the in-flight iteration finish naturally — no interrupt, and no STOPPING
361
+ // state, since entering STOPPING would make the iteration's own setState calls throw and fail it.
362
+ // work() registers its fire-and-forget requests synchronously before returning, so once the loop has
363
+ // stopped pendingRequests holds every request that will ever exist; awaiting it lets them all finish.
364
+ await this.runningPromise.stop();
365
+ await this.pendingRequests.awaitRequests();
366
+ this.log.info('Paused sequencer');
367
+ }
368
+
165
369
  /** Main sequencer loop with a try/catch */
166
370
  protected async safeWork() {
167
371
  try {
168
372
  await this.work();
169
373
  } catch (err) {
170
374
  this.emit('checkpoint-error', { error: err as Error });
171
- if (err instanceof SequencerTooSlowError) {
172
- // TODO(palla/mbps): Add missing states
173
- // Log as warn only if we had to abort halfway through the block proposal
174
- const logLvl = [SequencerState.INITIALIZING_CHECKPOINT, SequencerState.PROPOSER_CHECK].includes(
175
- err.proposedState,
176
- )
177
- ? ('debug' as const)
178
- : ('warn' as const);
179
- this.log[logLvl](err.message, { now: this.dateProvider.nowInSeconds() });
180
- } else {
181
- // Re-throw other errors
182
- throw err;
183
- }
375
+ throw err;
184
376
  } finally {
185
377
  this.setState(SequencerState.IDLE, undefined);
186
378
  }
@@ -202,14 +394,24 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
202
394
  @trackSpan('Sequencer.work')
203
395
  protected async work() {
204
396
  this.setState(SequencerState.SYNCHRONIZING, undefined);
205
- const { slot, ts, now, epoch } = this.epochCache.getEpochAndSlotInNextL1Slot();
397
+ const { slot, targetSlot, epoch, targetEpoch, ts, nowSeconds } = this.getSlotContextInNextL1Slot();
206
398
 
207
399
  // Check if we are synced and it's our slot, grab a publisher, check previous block invalidation, etc
208
- const checkpointProposalJob = await this.prepareCheckpointProposal(epoch, slot, ts, now);
400
+ const checkpointProposalJob = await this.prepareCheckpointProposal(
401
+ slot,
402
+ targetSlot,
403
+ epoch,
404
+ targetEpoch,
405
+ ts,
406
+ nowSeconds,
407
+ );
209
408
  if (!checkpointProposalJob) {
210
409
  return;
211
410
  }
212
411
 
412
+ // Track the job so we can await its pending L1 submission during shutdown
413
+ this.lastCheckpointProposalJob = checkpointProposalJob;
414
+
213
415
  // Execute the checkpoint proposal job
214
416
  const checkpoint = await checkpointProposalJob.execute();
215
417
 
@@ -218,64 +420,76 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
218
420
  this.lastCheckpointProposed = checkpoint;
219
421
  }
220
422
 
221
- // Log fee strategy comparison if on fisherman
423
+ // Log fee strategy comparison if on fisherman (uses target epoch since we mirror the proposer's perspective)
222
424
  if (
223
425
  this.config.fishermanMode &&
224
- (this.lastEpochForStrategyComparison === undefined || epoch > this.lastEpochForStrategyComparison)
426
+ (this.lastEpochForStrategyComparison === undefined || targetEpoch > this.lastEpochForStrategyComparison)
225
427
  ) {
226
- this.logStrategyComparison(epoch, checkpointProposalJob.getPublisher());
227
- this.lastEpochForStrategyComparison = epoch;
428
+ this.logStrategyComparison(targetEpoch, checkpointProposalJob.getPublisher());
429
+ this.lastEpochForStrategyComparison = targetEpoch;
228
430
  }
229
431
 
230
432
  return checkpoint;
231
433
  }
232
434
 
435
+ /** Returns slot and target slot from a single clock snapshot. */
436
+ protected getSlotContextInNextL1Slot(): SequencerSlotContext {
437
+ const { slot, ts, nowSeconds, epoch } = this.epochCache.getEpochAndSlotInNextL1Slot();
438
+ const targetSlot = SlotNumber(slot + PROPOSER_PIPELINING_SLOT_OFFSET);
439
+ return { slot, targetSlot, epoch, targetEpoch: getEpochAtSlot(targetSlot, this.l1Constants), ts, nowSeconds };
440
+ }
441
+
233
442
  /**
234
443
  * Prepares the checkpoint proposal by performing all necessary checks and setup.
235
444
  * This is the initial step in the main loop.
236
445
  * @returns CheckpointProposalJob if successful, undefined if we are not yet synced or are not the proposer.
237
446
  */
238
447
  @trackSpan('Sequencer.prepareCheckpointProposal')
239
- private async prepareCheckpointProposal(
240
- epoch: EpochNumber,
448
+ protected async prepareCheckpointProposal(
241
449
  slot: SlotNumber,
450
+ targetSlot: SlotNumber,
451
+ epoch: EpochNumber,
452
+ targetEpoch: EpochNumber,
242
453
  ts: bigint,
243
- now: bigint,
454
+ nowSeconds: bigint,
244
455
  ): Promise<CheckpointProposalJob | undefined> {
245
- // Check we have not already processed this slot (cheapest check)
246
- // We only check this if enforce timetable is set, since we want to keep processing the same slot if we are not
247
- // running against actual time (eg when we use sandbox-style automining)
248
- if (
249
- this.lastSlotForCheckpointProposalJob &&
250
- this.lastSlotForCheckpointProposalJob >= slot &&
251
- this.config.enforceTimeTable
252
- ) {
253
- this.log.trace(`Slot ${slot} has already been processed`);
456
+ // Check we have not already processed this target slot (cheapest check).
457
+ if (this.lastSlotForCheckpointProposalJob && this.lastSlotForCheckpointProposalJob >= targetSlot) {
458
+ this.log.trace(`Target slot ${targetSlot} has already been processed`);
254
459
  return undefined;
255
460
  }
256
461
 
257
- // But if we have already proposed for this slot, the we definitely have to skip it, automining or not
258
- if (this.lastCheckpointProposed && this.lastCheckpointProposed.header.slotNumber >= slot) {
259
- this.log.trace(`Slot ${slot} has already been published as checkpoint ${this.lastCheckpointProposed.number}`);
462
+ // But if we have already proposed for this slot, then we definitely have to skip it, automining or not
463
+ if (this.lastCheckpointProposed && this.lastCheckpointProposed.header.slotNumber >= targetSlot) {
464
+ this.log.trace(
465
+ `Slot ${targetSlot} has already been published as checkpoint ${this.lastCheckpointProposed.number}`,
466
+ );
260
467
  return undefined;
261
468
  }
262
469
 
263
- // Check all components are synced to latest as seen by the archiver (queries all subsystems)
264
- const syncedTo = await this.checkSync({ ts, slot });
265
- if (!syncedTo) {
266
- await this.tryVoteWhenSyncFails({ slot, ts });
470
+ // Test-only: skip proposing for explicitly paused slots. Attestation paths run in the validator
471
+ // client and are not gated by this hook, so paused proposers still attest to others' proposals.
472
+ if (this.config.pauseProposingForSlots?.some(s => s === targetSlot)) {
473
+ this.log.warn(`Skipping proposal for paused slot ${targetSlot} (test-only pauseProposingForSlots hook)`, {
474
+ targetSlot,
475
+ });
267
476
  return undefined;
268
477
  }
269
478
 
270
- // If escape hatch is open for this epoch, do not start checkpoint proposal work and do not attempt invalidations.
479
+ // Cheap proposer check first: most nodes are not the proposer for most slots, so gate the
480
+ // expensive multi-subsystem checkSync (and the rest of the build path) behind it. Computed once
481
+ // here and reused for the escape-hatch voting path below. No setState/timing gate on this path:
482
+ // the build-start deadline gate runs only on the proposer build path after a successful checkSync.
483
+ const [canPropose, proposer] = await this.checkCanPropose(targetSlot);
484
+
485
+ // If escape hatch is open for the target epoch, do not start checkpoint proposal work and do not attempt invalidations.
271
486
  // Still perform governance/slashing voting (as proposer) once per slot.
272
- const isEscapeHatchOpen = await this.epochCache.isEscapeHatchOpen(epoch);
487
+ // When pipelining, we check the target epoch (slot+1's epoch) since that's the epoch we're building for.
488
+ const isEscapeHatchOpen = await this.epochCache.isEscapeHatchOpen(targetEpoch);
273
489
 
274
490
  if (isEscapeHatchOpen) {
275
- this.setState(SequencerState.PROPOSER_CHECK, slot);
276
- const [canPropose, proposer] = await this.checkCanPropose(slot);
277
491
  if (canPropose) {
278
- await this.tryVoteWhenEscapeHatchOpen({ slot, proposer });
492
+ await this.tryVoteWhenEscapeHatchOpen({ slot, targetSlot, proposer });
279
493
  } else {
280
494
  this.log.trace(`Escape hatch open but we are not proposer, skipping vote-only actions`, {
281
495
  slot,
@@ -286,36 +500,83 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
286
500
  return undefined;
287
501
  }
288
502
 
503
+ // If we are not the proposer, check whether we should invalidate an invalid pending chain (a
504
+ // liveness backstop) and bail before any sync work or build-timing gate. This reads only the
505
+ // archiver's pending-chain validation status, which is authoritative on its own, instead of
506
+ // running the full sync check. Wrapped in try/catch because this leaner path skips the broader
507
+ // proposed-checkpoint/tip coherence screen that checkSync applied, so transient archiver
508
+ // incoherence surfaces as a quiet skip rather than a work-loop error.
509
+ if (!canPropose) {
510
+ try {
511
+ const pendingChainValidationStatus = await this.l2BlockSource.getPendingChainValidationStatus();
512
+ await this.considerInvalidatingCheckpoint(pendingChainValidationStatus, slot);
513
+ } catch (err) {
514
+ this.log.warn(`Failed to consider invalidating checkpoint`, { err, slot, targetSlot });
515
+ }
516
+ return undefined;
517
+ }
518
+
519
+ // Explicit build-loop entry gate: if we are past the latest useful block-building start for the
520
+ // target slot, abandon building for this slot. The proposer prioritizes the ideal L1-publish path
521
+ // and does not plan around the late consensus-handoff path. This is the proposer build path's
522
+ // timing gate; it runs only after we know we are the synced proposer, so non-proposer invalidation
523
+ // and escape-hatch voting (which returned above) are never gated by build timing. Vote-only paths
524
+ // still run when block building is abandoned.
525
+ const startDeadline = this.timetable.getBuildStartDeadline(targetSlot);
526
+ const nowForStartGate = this.dateProvider.now() / 1000;
527
+ if (nowForStartGate > startDeadline) {
528
+ this.log.debug(`Past start deadline for slot ${targetSlot}, abandoning block building`, {
529
+ targetSlot,
530
+ nowForStartGate,
531
+ startDeadline,
532
+ });
533
+ // Mark the slot as attempted so a deadline abort is not retried within the same slot. Vote-only actions
534
+ // still need to run because sync can succeed even when it is too late to start building a checkpoint.
535
+ await this.tryVoteAndPruneWhenCannotBuild({ slot, targetSlot });
536
+ this.lastSlotForCheckpointProposalJob = targetSlot;
537
+ return undefined;
538
+ }
539
+
540
+ // We are the proposer, the escape hatch is closed, and we have time before the build start deadline.
541
+ // Now run the full sync check before building.
542
+ const syncedTo = await this.checkSync({ ts, slot });
543
+ if (!syncedTo) {
544
+ return undefined;
545
+ }
546
+
289
547
  // Next checkpoint follows from the last synced one
290
548
  const checkpointNumber = CheckpointNumber(syncedTo.checkpointNumber + 1);
291
549
 
292
550
  const logCtx = {
293
- now,
294
- syncedToL1Ts: syncedTo.l1Timestamp,
295
- syncedToL2Slot: getSlotAtTimestamp(syncedTo.l1Timestamp, this.l1Constants),
551
+ nowSeconds,
552
+ syncedToL2Slot: syncedTo.syncedL2Slot,
296
553
  slot,
554
+ targetSlot,
297
555
  slotTs: ts,
298
556
  checkpointNumber,
299
557
  isPendingChainValid: pick(syncedTo.pendingChainValidationStatus, 'valid', 'reason', 'invalidIndex'),
300
558
  };
301
559
 
302
- // Check that we are a proposer for the next slot
303
- this.setState(SequencerState.PROPOSER_CHECK, slot);
304
- const [canPropose, proposer] = await this.checkCanPropose(slot);
560
+ // We are the synced proposer within the build window; enter the proposer-check state and build.
561
+ this.setState(SequencerState.PROPOSER_CHECK, targetSlot);
305
562
 
306
- // If we are not a proposer check if we should invalidate an invalid checkpoint, and bail
307
- if (!canPropose) {
308
- await this.considerInvalidatingCheckpoint(syncedTo, slot);
563
+ // Guard: don't exceed 1-deep pipeline. Without a proposed checkpoint, we can only build
564
+ // confirmed + 1. With a proposed checkpoint, we can build confirmed + 2.
565
+ const confirmedCkpt = syncedTo.checkpointedCheckpointNumber;
566
+ if (checkpointNumber > confirmedCkpt + 2) {
567
+ this.log.verbose(
568
+ `Skipping slot ${targetSlot}: checkpoint ${checkpointNumber} exceeds max pipeline depth (confirmed=${confirmedCkpt})`,
569
+ );
309
570
  return undefined;
310
571
  }
311
572
 
312
- // Check that the slot is not taken by a block already (should never happen, since only us can propose for this slot)
313
- if (syncedTo.block && syncedTo.block.header.getSlot() >= slot) {
573
+ // Check that the target slot is not taken by a block already (should never happen, since only us can propose for this slot)
574
+ if (syncedTo.blockData && syncedTo.blockData.header.getSlot() >= targetSlot) {
314
575
  this.log.warn(
315
- `Cannot propose block at next L2 slot ${slot} since that slot was taken by block ${syncedTo.blockNumber}`,
316
- { ...logCtx, block: syncedTo.block.header.toInspect() },
576
+ `Cannot propose block at target slot ${targetSlot} since that slot was taken by block ${syncedTo.blockNumber}`,
577
+ { ...logCtx, block: syncedTo.blockData.header.toInspect() },
317
578
  );
318
- this.metrics.recordBlockProposalPrecheckFailed('slot_already_taken');
579
+ this.metrics.recordCheckpointPrecheckFailed('slot_already_taken');
319
580
  return undefined;
320
581
  }
321
582
 
@@ -326,87 +587,168 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
326
587
  const proposerForPublisher = this.config.fishermanMode ? undefined : proposer;
327
588
  const { attestorAddress, publisher } = await this.publisherFactory.create(proposerForPublisher);
328
589
  this.log.verbose(`Created publisher at address ${publisher.getSenderAddress()} for attestor ${attestorAddress}`);
329
- this.publisher = publisher;
330
590
 
331
- // In fisherman mode, set the actual proposer's address for simulations
332
- if (this.config.fishermanMode && proposer) {
333
- publisher.setProposerAddressForSimulation(proposer);
334
- this.log.debug(`Set proposer address ${proposer} for simulation in fisherman mode`);
591
+ // Prepare invalidation request if the pending chain is invalid (returns undefined if no need).
592
+ // Only simulate invalidation when there's no proposed parent, since we assume the proposed parent
593
+ // will invalidate the currently invalid checkpoint on L1.
594
+ const invalidateCheckpoint =
595
+ syncedTo.hasProposedCheckpoint || syncedTo.pendingChainValidationStatus.valid
596
+ ? undefined
597
+ : await publisher.simulateInvalidateCheckpoint(syncedTo.pendingChainValidationStatus);
598
+
599
+ // Determine the correct archive and L1 state overrides for the canProposeAt check.
600
+ // The L1 contract reads archives[proposedCheckpointNumber] and compares it with the provided archive.
601
+ // When invalidating or pipelining, the local archive may differ from L1's, so we adjust accordingly.
602
+ let archiveForCheck = syncedTo.archive;
603
+
604
+ if (syncedTo.hasProposedCheckpoint) {
605
+ this.metrics.recordPipelineDepth(syncedTo.checkpointNumber - syncedTo.checkpointedCheckpointNumber);
606
+ this.log.verbose(
607
+ `Building on top of proposed checkpoint (pending=${syncedTo.proposedCheckpointData?.checkpointNumber}) for target slot ${targetSlot}`,
608
+ { targetSlot, parentCheckpointNumber: CheckpointNumber(checkpointNumber - 1) },
609
+ );
610
+ // Match what L1 will see at archives[pending] once the proposed parent lands: the parent's
611
+ // own archive root from the gossiped proposal. `syncedTo.archive` is the world-state-local
612
+ // view and can transiently diverge from the proposed parent (e.g. before the proposed
613
+ // parent's blocks have been applied locally); diverging here would cause the canProposeAt
614
+ // override to set archives[pending] to one value while we present another for comparison.
615
+ archiveForCheck = syncedTo.proposedCheckpointData!.archive.root;
616
+ } else if (invalidateCheckpoint) {
617
+ // After invalidation, L1 will roll back to checkpoint N-1. The archive at N-1 already
618
+ // exists on L1, so we just pass the matching archive (the lastArchive of the invalid checkpoint).
619
+ archiveForCheck = invalidateCheckpoint.lastArchive;
620
+ this.metrics.recordPipelineDepth(0);
621
+ } else {
622
+ this.metrics.recordPipelineDepth(0);
335
623
  }
336
624
 
337
- // Prepare invalidation request if the pending chain is invalid (returns undefined if no need)
338
- const invalidateCheckpoint = await publisher.simulateInvalidateCheckpoint(syncedTo.pendingChainValidationStatus);
625
+ // Build the simulation plan: pending/proven override from pipelining or invalidation (or the
626
+ // current snapshot when neither applies, to short-circuit any pending prune in simulation),
627
+ // plus the parent checkpoint cell and fee header when pipelining.
628
+ const simulationOverridesPlan = await buildCheckpointSimulationOverridesPlan({
629
+ checkpointNumber,
630
+ proposedCheckpointData: syncedTo.hasProposedCheckpoint ? syncedTo.proposedCheckpointData : undefined,
631
+ invalidateToPendingCheckpointNumber: invalidateCheckpoint?.forcePendingCheckpointNumber,
632
+ checkpointedCheckpointNumber: syncedTo.checkpointedCheckpointNumber,
633
+ rollup: this.rollupContract,
634
+ signatureContext: this.signatureContext,
635
+ log: this.log,
636
+ });
637
+
638
+ // The plan always pins both pending/proven (to short-circuit `canPruneAtTime` in simulation),
639
+ // so `provenOverride` always reflects the assumed proven checkpoint we are pinning the
640
+ // simulation to. We additionally warn when the pin is load-bearing — i.e. when a prune would
641
+ // actually fire at the target slot without it — so observers can spot "we are building
642
+ // optimistically across a pruning boundary" in the logs.
643
+ const provenOverride = simulationOverridesPlan?.chainTipsOverride?.proven;
644
+ if (provenOverride !== undefined && (await this.l2BlockSource.isPruneDueAtSlot(targetSlot))) {
645
+ this.log.warn(
646
+ `Assuming proof for epoch ending at checkpoint ${provenOverride} lands by target slot ${targetSlot}`,
647
+ { checkpointNumber, slot, targetSlot, provenOverride },
648
+ );
649
+ }
339
650
 
340
- // Check with the rollup contract if we can indeed propose at the next L2 slot. This check should not fail
341
- // if all the previous checks are good, but we do it just in case.
342
- const canProposeCheck = await publisher.canProposeAtNextEthBlock(
343
- syncedTo.archive,
651
+ this.emit('preparing-checkpoint', {
652
+ targetSlot,
653
+ checkpointNumber,
654
+ hadProposedParent: syncedTo.hasProposedCheckpoint,
655
+ provenOverride,
656
+ simulatedPending: simulationOverridesPlan?.chainTipsOverride?.pending,
657
+ });
658
+
659
+ const canProposeCheck = await publisher.canProposeAt(
660
+ archiveForCheck,
344
661
  proposer ?? EthAddress.ZERO,
345
- invalidateCheckpoint,
662
+ simulationOverridesPlan,
346
663
  );
347
664
 
665
+ const proposeContext = {
666
+ hasProposedCheckpoint: syncedTo.hasProposedCheckpoint,
667
+ proposedCheckpointNumber: syncedTo.proposedCheckpointData?.checkpointNumber,
668
+ checkpointedCheckpointNumber: syncedTo.checkpointedCheckpointNumber,
669
+ isInvalidating: !!invalidateCheckpoint,
670
+ invalidatingCheckpointNumber: invalidateCheckpoint?.checkpointNumber,
671
+ archiveForCheck: archiveForCheck.toString(),
672
+ overridePendingCheckpointNumber: simulationOverridesPlan?.chainTipsOverride?.pending,
673
+ overrideArchive: simulationOverridesPlan?.pendingCheckpointState?.archive,
674
+ overrideFeeHeader: simulationOverridesPlan?.pendingCheckpointState?.feeHeader,
675
+ };
676
+
348
677
  if (canProposeCheck === undefined) {
349
678
  this.log.warn(
350
679
  `Cannot propose checkpoint ${checkpointNumber} at slot ${slot} due to failed rollup contract check`,
351
- logCtx,
680
+ { ...logCtx, ...proposeContext },
352
681
  );
353
682
  this.emit('proposer-rollup-check-failed', { reason: 'Rollup contract check failed', slot });
354
- this.metrics.recordBlockProposalPrecheckFailed('rollup_contract_check_failed');
683
+ this.metrics.recordCheckpointPrecheckFailed('rollup_contract_check_failed');
355
684
  return undefined;
356
685
  }
357
686
 
358
- if (canProposeCheck.slot !== slot) {
687
+ if (canProposeCheck.slot !== targetSlot) {
359
688
  this.log.warn(
360
- `Cannot propose block due to slot mismatch with rollup contract (this can be caused by a clock out of sync). Expected slot ${slot} but got ${canProposeCheck.slot}.`,
361
- { ...logCtx, rollup: canProposeCheck, expectedSlot: slot },
689
+ `Cannot propose block due to slot mismatch with rollup contract (this can be caused by a clock out of sync). Expected slot ${targetSlot} but got ${canProposeCheck.slot}.`,
690
+ { ...logCtx, ...proposeContext, rollup: canProposeCheck, expectedSlot: targetSlot },
362
691
  );
363
692
  this.emit('proposer-rollup-check-failed', { reason: 'Slot mismatch', slot });
364
- this.metrics.recordBlockProposalPrecheckFailed('slot_mismatch');
693
+ this.metrics.recordCheckpointPrecheckFailed('slot_mismatch');
365
694
  return undefined;
366
695
  }
367
696
 
368
697
  if (canProposeCheck.checkpointNumber !== checkpointNumber) {
369
698
  this.log.warn(
370
699
  `Cannot propose due to block mismatch with rollup contract (this can be caused by a pending archiver sync). Expected checkpoint ${checkpointNumber} but got ${canProposeCheck.checkpointNumber}.`,
371
- { ...logCtx, rollup: canProposeCheck, expectedSlot: slot },
700
+ { ...logCtx, ...proposeContext, rollup: canProposeCheck, expectedSlot: slot },
372
701
  );
373
702
  this.emit('proposer-rollup-check-failed', { reason: 'Block mismatch', slot });
374
- this.metrics.recordBlockProposalPrecheckFailed('block_number_mismatch');
703
+ this.metrics.recordCheckpointPrecheckFailed('block_number_mismatch');
375
704
  return undefined;
376
705
  }
377
706
 
378
- this.lastSlotForCheckpointProposalJob = slot;
379
- await this.p2pClient.prepareForSlot(slot);
380
- this.log.info(`Preparing checkpoint proposal ${checkpointNumber} at slot ${slot}`, { ...logCtx, proposer });
707
+ this.lastSlotForCheckpointProposalJob = targetSlot;
708
+
709
+ await this.p2pClient.prepareForSlot(targetSlot);
710
+ this.log.info(
711
+ `Preparing checkpoint proposal ${checkpointNumber} for target slot ${targetSlot} during wall-clock slot ${slot}`,
712
+ {
713
+ ...logCtx,
714
+ ...proposeContext,
715
+ proposer,
716
+ },
717
+ );
381
718
 
382
719
  // Create and return the checkpoint proposal job
383
720
  return this.createCheckpointProposalJob(
384
- epoch,
385
- slot,
721
+ targetSlot,
722
+ targetEpoch,
386
723
  checkpointNumber,
387
724
  syncedTo.blockNumber,
725
+ syncedTo.checkpointedCheckpointNumber,
388
726
  proposer,
389
727
  publisher,
390
728
  attestorAddress,
391
729
  invalidateCheckpoint,
730
+ syncedTo.proposedCheckpointData,
392
731
  );
393
732
  }
394
733
 
395
734
  protected createCheckpointProposalJob(
396
- epoch: EpochNumber,
397
- slot: SlotNumber,
735
+ targetSlot: SlotNumber,
736
+ targetEpoch: EpochNumber,
398
737
  checkpointNumber: CheckpointNumber,
399
738
  syncedToBlockNumber: BlockNumber,
739
+ checkpointedCheckpointNumber: CheckpointNumber,
400
740
  proposer: EthAddress | undefined,
401
741
  publisher: SequencerPublisher,
402
742
  attestorAddress: EthAddress,
403
743
  invalidateCheckpoint: InvalidateCheckpointRequest | undefined,
744
+ proposedCheckpointData?: ProposedCheckpointData,
404
745
  ): CheckpointProposalJob {
405
746
  return new CheckpointProposalJob(
406
- epoch,
407
- slot,
747
+ targetSlot,
748
+ targetEpoch,
408
749
  checkpointNumber,
409
750
  syncedToBlockNumber,
751
+ checkpointedCheckpointNumber,
410
752
  proposer,
411
753
  publisher,
412
754
  attestorAddress,
@@ -420,23 +762,36 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
420
762
  this.checkpointsBuilder,
421
763
  this.l2BlockSource,
422
764
  this.l1Constants,
765
+ this.signatureContext,
423
766
  this.config,
424
767
  this.timetable,
425
768
  this.slasherClient,
426
769
  this.epochCache,
427
770
  this.dateProvider,
428
771
  this.metrics,
772
+ this.checkpointProposalJobMetrics.createRecorder(),
429
773
  this,
774
+ this.pendingRequests,
430
775
  this.setState.bind(this),
431
776
  this.tracer,
432
777
  this.log.getBindings(),
778
+ proposedCheckpointData,
433
779
  );
434
780
  }
435
781
 
436
782
  /**
437
- * Internal helper for setting the sequencer state and checks if we have enough time left in the slot to transition to the new state.
783
+ * Returns the current sequencer state.
784
+ */
785
+ public getState(): SequencerState {
786
+ return this.state;
787
+ }
788
+
789
+ /**
790
+ * Internal helper for setting the sequencer state. Pure: sets the state, emits `state-changed`, and
791
+ * records metrics. Timing deadlines are queried explicitly at the relevant call sites, not gated here.
438
792
  * @param proposedState - The new state to transition to.
439
- * @param slotNumber - The current slot number.
793
+ * @param slotNumber - The target slot being proposed for, emitted as `targetSlot` on the event payload
794
+ * and used to anchor `secondsIntoBuildFrame`. Undefined for lifecycle states with no associated slot.
440
795
  * @param force - Whether to force the transition even if the sequencer is stopped.
441
796
  */
442
797
  protected setState(
@@ -452,25 +807,39 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
452
807
  this.log.warn(`Cannot set sequencer from ${this.state} to ${proposedState} as it is stopped.`);
453
808
  return;
454
809
  }
455
- let secondsIntoSlot = undefined;
456
- if (slotNumber !== undefined) {
457
- secondsIntoSlot = this.getSecondsIntoSlot(slotNumber);
458
- this.timetable.assertTimeLeft(proposedState, secondsIntoSlot);
459
- }
810
+ const secondsIntoBuildFrame = slotNumber !== undefined ? this.getSecondsIntoBuildFrame(slotNumber) : undefined;
811
+
812
+ const oldState = this.state;
813
+ const oldStateSlotNumber = this.stateSlotNumber;
814
+ const stateChanged = proposedState !== oldState;
815
+ // Wall-clock time spent in the previous state: the delta between consecutive state-changing setState
816
+ // calls, read from the date provider so it tracks simulated time under a test/manual clock.
817
+ const transitionAtMs = this.dateProvider.now();
818
+ const stateDurationMs = transitionAtMs - this.stateEnteredAtMs;
460
819
 
461
820
  const boringStates = [SequencerState.IDLE, SequencerState.SYNCHRONIZING];
462
821
  const logLevel =
463
- boringStates.includes(proposedState) && boringStates.includes(this.state)
464
- ? ('trace' as const)
465
- : ('debug' as const);
466
- this.log[logLevel](`Transitioning from ${this.state} to ${proposedState}`, { slotNumber, secondsIntoSlot });
822
+ boringStates.includes(proposedState) && boringStates.includes(oldState) ? ('trace' as const) : ('debug' as const);
823
+ this.stateLog[logLevel](`Transitioning from ${oldState} to ${proposedState}`, {
824
+ oldState,
825
+ newState: proposedState,
826
+ slotNumber,
827
+ stateSlotNumber: oldStateSlotNumber,
828
+ secondsIntoBuildFrame,
829
+ ...(stateChanged && { stateDurationMs: Math.ceil(stateDurationMs) }),
830
+ });
467
831
 
468
832
  this.emit('state-changed', {
469
- oldState: this.state,
833
+ oldState,
470
834
  newState: proposedState,
471
- secondsIntoSlot,
472
- slot: slotNumber,
835
+ secondsIntoBuildFrame,
836
+ targetSlot: slotNumber,
473
837
  });
838
+ if (stateChanged) {
839
+ this.metrics.recordStateDuration(stateDurationMs, oldState);
840
+ this.stateEnteredAtMs = transitionAtMs;
841
+ this.stateSlotNumber = slotNumber;
842
+ }
474
843
  this.state = proposedState;
475
844
  }
476
845
 
@@ -479,16 +848,15 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
479
848
  * We don't check against the previous block submitted since it may have been reorg'd out.
480
849
  */
481
850
  protected async checkSync(args: { ts: bigint; slot: SlotNumber }): Promise<SequencerSyncCheckResult | undefined> {
482
- // Check that the archiver and dependencies have synced to the previous L1 slot at least
483
- // TODO(#14766): Archiver reports L1 timestamp based on L1 blocks seen, which means that a missed L1 block will
484
- // cause the archiver L1 timestamp to fall behind, and cause this sequencer to start processing one L1 slot later.
485
- const l1Timestamp = await this.l2BlockSource.getL1Timestamp();
486
- const { slot, ts } = args;
487
- if (l1Timestamp === undefined || l1Timestamp + BigInt(this.l1Constants.ethereumSlotDuration) < ts) {
851
+ // Check that the archiver has fully synced the L2 slot before the one we want to propose in.
852
+ // The archiver reports sync progress via L1 block timestamps and synced checkpoint slots.
853
+ // See getSyncedL2SlotNumber for how missed L1 blocks are handled.
854
+ const syncedL2Slot = await this.l2BlockSource.getSyncedL2SlotNumber();
855
+ const { slot } = args;
856
+ if (syncedL2Slot === undefined || syncedL2Slot + 1 < slot) {
488
857
  this.log.debug(`Cannot propose block at next L2 slot ${slot} due to pending sync from L1`, {
489
858
  slot,
490
- ts,
491
- l1Timestamp,
859
+ syncedL2Slot,
492
860
  });
493
861
  return undefined;
494
862
  }
@@ -498,54 +866,95 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
498
866
  number: syncSummary.latestBlockNumber,
499
867
  hash: syncSummary.latestBlockHash,
500
868
  })),
501
- this.l2BlockSource.getL2Tips().then(t => t.proposed),
869
+ this.l2BlockSource.getL2Tips().then(t => ({ proposed: t.proposed, checkpointed: t.checkpointed })),
502
870
  this.p2pClient.getStatus().then(p2p => p2p.syncedToL2Block),
503
- this.l1ToL2MessageSource.getL2Tips().then(t => t.proposed),
871
+ this.l1ToL2MessageSource.getL2Tips().then(t => ({ proposed: t.proposed, checkpointed: t.checkpointed })),
504
872
  this.l2BlockSource.getPendingChainValidationStatus(),
873
+ this.l2BlockSource.getProposedCheckpointData(),
505
874
  ] as const);
506
875
 
507
- const [worldState, l2BlockSource, p2p, l1ToL2MessageSource, pendingChainValidationStatus] = syncedBlocks;
876
+ const [worldState, l2Tips, p2p, l1ToL2MessageSourceTips, pendingChainValidationStatus, proposedCheckpointData] =
877
+ syncedBlocks;
508
878
 
509
- // Handle zero as a special case, since the block hash won't match across services if we're changing the prefilled data for the genesis block,
510
- // as the world state can compute the new genesis block hash, but other components use the hardcoded constant.
511
- // TODO(palla/mbps): Fix the above. All components should be able to handle dynamic genesis block hashes.
512
879
  const result =
513
- (l2BlockSource.number === 0 && worldState.number === 0 && p2p.number === 0 && l1ToL2MessageSource.number === 0) ||
514
- (worldState.hash === l2BlockSource.hash &&
515
- p2p.hash === l2BlockSource.hash &&
516
- l1ToL2MessageSource.hash === l2BlockSource.hash);
880
+ worldState.hash === l2Tips.proposed.hash &&
881
+ p2p.hash === l2Tips.proposed.hash &&
882
+ l1ToL2MessageSourceTips.proposed.hash === l2Tips.proposed.hash &&
883
+ l1ToL2MessageSourceTips.checkpointed.block.hash === l2Tips.checkpointed.block.hash &&
884
+ l1ToL2MessageSourceTips.checkpointed.checkpoint.hash === l2Tips.checkpointed.checkpoint.hash;
517
885
 
518
886
  if (!result) {
519
- this.log.debug(`Sequencer sync check failed`, { worldState, l2BlockSource, p2p, l1ToL2MessageSource });
887
+ this.log.debug(`Sequencer sync check failed`, {
888
+ worldState,
889
+ l2BlockSource: l2Tips.proposed,
890
+ p2p,
891
+ l1ToL2MessageSourceTips,
892
+ });
520
893
  return undefined;
521
894
  }
522
895
 
523
- // Special case for genesis state
524
896
  const blockNumber = worldState.number;
525
- if (blockNumber < INITIAL_L2_BLOCK_NUM) {
526
- const archive = new Fr((await this.worldState.getCommitted().getTreeInfo(MerkleTreeId.ARCHIVE)).root);
527
- return {
528
- checkpointNumber: CheckpointNumber.ZERO,
529
- blockNumber: BlockNumber.ZERO,
530
- archive,
531
- l1Timestamp,
532
- pendingChainValidationStatus,
897
+ const blockData = await this.l2BlockSource.getBlockData({ number: blockNumber });
898
+ if (!blockData) {
899
+ this.log.warn(`Sequencer sync check failed: failed to get L2 block data ${blockNumber} from the archiver`, {
900
+ blockNumber,
901
+ l2Tips,
902
+ syncedL2Slot,
903
+ ...args,
904
+ });
905
+ return undefined;
906
+ }
907
+
908
+ // Refuse to build a checkpoint on top of a proposed block whose enclosing checkpoint was never
909
+ // proposed. Under pipelining we may have received and reexecuted such a block locally — advancing
910
+ // our world-state tip past the checkpointed tip — while the proposing node never published the
911
+ // matching proposed checkpoint (e.g. it crashed before assembling it). Building on this orphan block
912
+ // would fork the chain off a tip no other node can follow. The archiver prunes these orphan blocks
913
+ // once their build slot ends; this guard is the correctness barrier during the grace window before.
914
+ // `getProposedCheckpointData()` returns the latest proposed checkpoint payload, which is always
915
+ // the leading one (a proposed entry is only stored beyond the confirmed frontier and is deleted
916
+ // on confirmation). It carries no tip, so there is no tip-vs-payload split read to reconcile.
917
+ if (
918
+ blockData.checkpointNumber > l2Tips.checkpointed.checkpoint.number &&
919
+ proposedCheckpointData?.checkpointNumber !== blockData.checkpointNumber
920
+ ) {
921
+ const logCtx = {
922
+ blockCheckpointNumber: blockData.checkpointNumber,
923
+ checkpointedCheckpointNumber: l2Tips.checkpointed.checkpoint.number,
924
+ proposedCheckpointTipNumber: proposedCheckpointData?.checkpointNumber,
925
+ blockNumber: blockData.header.getBlockNumber(),
926
+ blockSlot: blockData.header.getSlot(),
927
+ syncedL2Slot,
928
+ ...args,
533
929
  };
930
+
931
+ this.log.debug(`Waiting for proposed checkpoint to catch up with reexecuted block`, logCtx);
932
+ return undefined;
534
933
  }
535
934
 
536
- const block = await this.l2BlockSource.getL2Block(blockNumber);
537
- if (!block) {
538
- // this shouldn't really happen because a moment ago we checked that all components were in sync
539
- this.log.error(`Failed to get L2 block ${blockNumber} from the archiver with all components in sync`);
935
+ const hasProposedCheckpoint = proposedCheckpointData !== undefined;
936
+
937
+ // Check that the proposed checkpoint is indeed the parent of the checkpoint we'll be building
938
+ // The checkpoint number to build is derived as blockData.checkpointNumber + 1
939
+ if (proposedCheckpointData && proposedCheckpointData.checkpointNumber !== blockData.checkpointNumber) {
940
+ this.log.warn(`Sequencer sync check failed: proposed checkpoint number mismatch`, {
941
+ proposedCheckpointNumber: proposedCheckpointData.checkpointNumber,
942
+ blockCheckpointNumber: blockData.checkpointNumber,
943
+ syncedL2Slot,
944
+ ...args,
945
+ });
540
946
  return undefined;
541
947
  }
542
948
 
543
949
  return {
544
- block,
545
- blockNumber: block.number,
546
- checkpointNumber: block.checkpointNumber,
547
- archive: block.archive.root,
548
- l1Timestamp,
950
+ blockData,
951
+ blockNumber: blockData.header.getBlockNumber(),
952
+ checkpointNumber: blockData.checkpointNumber,
953
+ checkpointedCheckpointNumber: l2Tips.checkpointed.checkpoint.number,
954
+ archive: blockData.archive.root,
955
+ hasProposedCheckpoint,
956
+ proposedCheckpointData,
957
+ syncedL2Slot,
549
958
  pendingChainValidationStatus,
550
959
  };
551
960
  }
@@ -554,20 +963,20 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
554
963
  * Checks if we are the proposer for the next slot.
555
964
  * @returns True if we can propose, and the proposer address (undefined if anyone can propose)
556
965
  */
557
- protected async checkCanPropose(slot: SlotNumber): Promise<[boolean, EthAddress | undefined]> {
966
+ protected async checkCanPropose(targetSlot: SlotNumber): Promise<[boolean, EthAddress | undefined]> {
558
967
  let proposer: EthAddress | undefined;
559
968
 
560
969
  try {
561
- proposer = await this.epochCache.getProposerAttesterAddressInSlot(slot);
970
+ proposer = await this.epochCache.getProposerAttesterAddressInSlot(targetSlot);
562
971
  } catch (e) {
563
972
  if (e instanceof NoCommitteeError) {
564
- if (this.lastSlotForNoCommitteeWarning !== slot) {
565
- this.lastSlotForNoCommitteeWarning = slot;
566
- this.log.warn(`Cannot propose at next L2 slot ${slot} since the committee does not exist on L1`);
973
+ if (this.lastSlotForNoCommitteeWarning !== targetSlot) {
974
+ this.lastSlotForNoCommitteeWarning = targetSlot;
975
+ this.log.warn(`Cannot propose at target slot ${targetSlot} since the committee does not exist on L1`);
567
976
  }
568
977
  return [false, undefined];
569
978
  }
570
- this.log.error(`Error getting proposer for slot ${slot}`, e);
979
+ this.log.error(`Error getting proposer for target slot ${targetSlot}`, e);
571
980
  return [false, undefined];
572
981
  }
573
982
 
@@ -584,55 +993,56 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
584
993
  const weAreProposer = validatorAddresses.some(addr => addr.equals(proposer));
585
994
 
586
995
  if (!weAreProposer) {
587
- this.log.debug(`Cannot propose at slot ${slot} since we are not a proposer`, { validatorAddresses, proposer });
996
+ this.log.debug(`Cannot propose at target slot ${targetSlot} since we are not a proposer`, {
997
+ targetSlot,
998
+ validatorAddresses,
999
+ proposer,
1000
+ });
588
1001
  return [false, proposer];
589
1002
  }
590
1003
 
1004
+ this.log.info(`We are the proposer for pipeline slot ${targetSlot}`, {
1005
+ targetSlot,
1006
+ proposer,
1007
+ });
591
1008
  return [true, proposer];
592
1009
  }
593
1010
 
594
1011
  /**
595
- * Tries to vote on slashing actions and governance when the sync check fails but we're past the max time for initializing a proposal.
596
- * This allows the sequencer to participate in governance/slashing votes even when it cannot build blocks.
1012
+ * Tries to vote on slashing actions and governance and to prune when we cannot build and are past the
1013
+ * block-building window. This allows the sequencer to participate in governance/slashing votes even when it
1014
+ * cannot build blocks, and to prune the pending chain so it can recover from bad data that is blocking sync.
597
1015
  */
598
- @trackSpan('Seqeuencer.tryVoteWhenSyncFails', ({ slot }) => ({ [Attributes.SLOT_NUMBER]: slot }))
599
- protected async tryVoteWhenSyncFails(args: { slot: SlotNumber; ts: bigint }): Promise<void> {
600
- const { slot } = args;
1016
+ @trackSpan('Sequencer.tryVoteAndPruneWhenCannotBuild', ({ slot }) => ({ [Attributes.SLOT_NUMBER]: slot }))
1017
+ protected async tryVoteAndPruneWhenCannotBuild(args: { slot: SlotNumber; targetSlot: SlotNumber }): Promise<void> {
1018
+ const { slot, targetSlot } = args;
601
1019
 
602
1020
  // Prevent duplicate attempts in the same slot
603
- if (this.lastSlotForFallbackVote === slot) {
604
- this.log.trace(`Already attempted to vote in slot ${slot} (skipping)`);
1021
+ if (this.lastSlotForFallbackAction === slot) {
1022
+ this.log.trace(`Already attempted fallback actions in slot ${slot} (skipping)`);
605
1023
  return;
606
1024
  }
607
1025
 
608
- // Check if we're past the max time for initializing a proposal
609
- const secondsIntoSlot = this.getSecondsIntoSlot(slot);
610
- const maxAllowedTime = this.timetable.getMaxAllowedTime(SequencerState.INITIALIZING_CHECKPOINT);
611
-
612
- // If we haven't exceeded the time limit for initializing a proposal, don't proceed with voting
613
- // We use INITIALIZING_PROPOSAL time limit because if we're past that, we can't build a block anyway
614
- if (maxAllowedTime === undefined || secondsIntoSlot <= maxAllowedTime) {
615
- this.log.trace(`Not attempting to vote since there is still time for block building`, {
616
- secondsIntoSlot,
617
- maxAllowedTime,
618
- });
619
- return;
620
- }
1026
+ // Vote-only actions do not give up the slot: if sync recovers, a later work-loop iteration can still build.
1027
+ // Under proposer pipelining the work loop reasons about the next L1 slot, so waiting for the target slot's
1028
+ // build-start deadline can miss the whole fallback window when the target advances with the clock.
1029
+ const nowSeconds = this.dateProvider.now() / 1000;
1030
+ const startDeadline = this.timetable.getBuildStartDeadline(targetSlot);
621
1031
 
622
- this.log.trace(`Sync for slot ${slot} failed, checking for voting opportunities`, {
623
- secondsIntoSlot,
624
- maxAllowedTime,
1032
+ this.log.trace(`Cannot build for slot ${slot}, checking for voting opportunities`, {
1033
+ nowSeconds,
1034
+ startDeadline,
625
1035
  });
626
1036
 
627
1037
  // Check if we're a proposer or proposal is open
628
- const [canPropose, proposer] = await this.checkCanPropose(slot);
1038
+ const [canPropose, proposer] = await this.checkCanPropose(targetSlot);
629
1039
  if (!canPropose) {
630
1040
  this.log.trace(`Cannot vote in slot ${slot} since we are not a proposer`, { slot, proposer });
631
1041
  return;
632
1042
  }
633
1043
 
634
1044
  // Mark this slot as attempted
635
- this.lastSlotForFallbackVote = slot;
1045
+ this.lastSlotForFallbackAction = slot;
636
1046
 
637
1047
  // Get a publisher for voting
638
1048
  const { attestorAddress, publisher } = await this.publisherFactory.create(proposer);
@@ -642,9 +1052,9 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
642
1052
  slot,
643
1053
  });
644
1054
 
645
- // Enqueue governance and slashing votes
1055
+ // Enqueue governance and slashing votes (voter uses the target slot for L1 submission)
646
1056
  const voter = new CheckpointVoter(
647
- slot,
1057
+ targetSlot,
648
1058
  publisher,
649
1059
  attestorAddress,
650
1060
  this.validatorClient,
@@ -657,13 +1067,41 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
657
1067
  const votesPromises = voter.enqueueVotes();
658
1068
  const votes = await Promise.all(votesPromises);
659
1069
 
660
- if (votes.every(p => !p)) {
661
- this.log.debug(`No votes to enqueue for slot ${slot}`);
1070
+ // Even if we cannot build, try to prune so a stuck pending chain (e.g. bad data blocking sync) can
1071
+ // recover. prune() is permissionless, so it rides the same fallback multicall as the votes.
1072
+ const pruneEnqueued = await this.tryEnqueuePruneIfPrunable(targetSlot, publisher);
1073
+
1074
+ // Bail if nothing to do
1075
+ if (votes.every(p => !p) && !pruneEnqueued) {
1076
+ this.log.debug(`Nothing to enqueue for slot ${slot} (no votes, not prunable)`);
662
1077
  return;
663
1078
  }
664
1079
 
665
- this.log.info(`Voting in slot ${slot} despite sync failure`, { slot });
666
- await publisher.sendRequests();
1080
+ const [governanceVoteEnqueued, slashingVoteEnqueued] = votes;
1081
+ this.log.info(`Submitting fallback requests in slot ${slot} despite sync failure`, {
1082
+ slot,
1083
+ pruneEnqueued,
1084
+ governanceVoteEnqueued: !!governanceVoteEnqueued,
1085
+ slashingVoteEnqueued: !!slashingVoteEnqueued,
1086
+ });
1087
+
1088
+ // Votes are EIP-712-signed for `targetSlot` (the pipelined slot in which the multicall is
1089
+ // expected to mine). Delay submission to the start of `targetSlot` so the tx mines in the
1090
+ // slot the votes were signed for. We fire-and-forget so we don't block the sequencer's
1091
+ // work loop while waiting for the target slot to start, but track it so stop() can drain it.
1092
+ const send = publisher.sendRequestsAt(targetSlot).catch(err => {
1093
+ this.log.error(`Failed to publish fallback requests despite sync failure for slot ${slot}`, err, { slot });
1094
+ });
1095
+ this.pendingRequests.trackRequest(send, () => publisher.interrupt());
1096
+ }
1097
+
1098
+ private async tryEnqueuePruneIfPrunable(targetSlot: SlotNumber, publisher: SequencerPublisher): Promise<boolean> {
1099
+ try {
1100
+ return await publisher.enqueuePruneIfPrunable(targetSlot);
1101
+ } catch (err) {
1102
+ this.log.error(`Failed to enqueue rollup prune for slot ${targetSlot}`, err, { targetSlot });
1103
+ return false;
1104
+ }
667
1105
  }
668
1106
 
669
1107
  /**
@@ -673,25 +1111,34 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
673
1111
  @trackSpan('Sequencer.tryVoteWhenEscapeHatchOpen', ({ slot }) => ({ [Attributes.SLOT_NUMBER]: slot }))
674
1112
  protected async tryVoteWhenEscapeHatchOpen(args: {
675
1113
  slot: SlotNumber;
1114
+ targetSlot: SlotNumber;
676
1115
  proposer: EthAddress | undefined;
677
1116
  }): Promise<void> {
678
- const { slot, proposer } = args;
1117
+ const { slot, targetSlot, proposer } = args;
679
1118
 
680
1119
  // Prevent duplicate attempts in the same slot
681
- if (this.lastSlotForFallbackVote === slot) {
1120
+ if (this.lastSlotForFallbackAction === slot) {
682
1121
  this.log.trace(`Already attempted to vote in slot ${slot} (escape hatch open, skipping)`);
683
1122
  return;
684
1123
  }
685
1124
 
686
1125
  // Mark this slot as attempted
687
- this.lastSlotForFallbackVote = slot;
1126
+ this.lastSlotForFallbackAction = slot;
688
1127
 
689
1128
  const { attestorAddress, publisher } = await this.publisherFactory.create(proposer);
690
1129
 
691
- this.log.debug(`Escape hatch open for slot ${slot}, attempting vote-only actions`, { slot, attestorAddress });
1130
+ this.log.debug(`Escape hatch open for slot ${slot}, attempting vote-only actions`, {
1131
+ slot,
1132
+ targetSlot,
1133
+ attestorAddress,
1134
+ });
692
1135
 
1136
+ // Under proposer pipelining, the multicall is expected to mine in `targetSlot` (slot + 1).
1137
+ // Governance and slashing votes are EIP-712-signed against the slot they will mine in, and the
1138
+ // L1 contract checks `msg.sender == getCurrentProposer()` using the mining slot. So we must
1139
+ // sign for `targetSlot` and delay submission to the start of `targetSlot`.
693
1140
  const voter = new CheckpointVoter(
694
- slot,
1141
+ targetSlot,
695
1142
  publisher,
696
1143
  attestorAddress,
697
1144
  this.validatorClient,
@@ -710,8 +1157,17 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
710
1157
  return;
711
1158
  }
712
1159
 
713
- this.log.info(`Voting in slot ${slot} (escape hatch open)`, { slot });
714
- await publisher.sendRequests();
1160
+ this.log.info(`Voting in slot ${slot} (escape hatch open)`, { slot, targetSlot });
1161
+ // Votes are EIP-712-signed for `targetSlot`. Delay submission to the start of `targetSlot` so
1162
+ // the multicall mines in the slot the votes were signed for; otherwise the L1 contract reads
1163
+ // `signaler = getCurrentProposer()` against the wrong slot and signature verification fails
1164
+ // silently inside Multicall3. Fire-and-forget so we don't block the sequencer's work loop while
1165
+ // waiting for the target slot to start, mirroring tryVoteAndPruneWhenCannotBuild, but tracked so
1166
+ // stop() can drain it.
1167
+ const send = publisher.sendRequestsAt(targetSlot).catch(err => {
1168
+ this.log.error(`Failed to publish escape-hatch votes for slot ${slot}`, err, { slot, targetSlot });
1169
+ });
1170
+ this.pendingRequests.trackRequest(send, () => publisher.interrupt());
715
1171
  }
716
1172
 
717
1173
  /**
@@ -719,17 +1175,34 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
719
1175
  * has been there without being invalidated and whether the sequencer is in the committee or not. We always
720
1176
  * have the proposer try to invalidate, but if they fail, the sequencers in the committee are expected to try,
721
1177
  * and if they fail, any sequencer will try as well.
1178
+ * @param pendingChainValidationStatus - The archiver's pending-chain validation status, authoritative on its own.
1179
+ * @param currentSlot - The wall-clock slot, used for committee lookup, the per-(checkpoint, slot) dedup guard, and logging.
722
1180
  */
723
1181
  protected async considerInvalidatingCheckpoint(
724
- syncedTo: SequencerSyncCheckResult,
1182
+ pendingChainValidationStatus: ValidateCheckpointResult,
725
1183
  currentSlot: SlotNumber,
726
1184
  ): Promise<void> {
727
- const { pendingChainValidationStatus, l1Timestamp } = syncedTo;
728
1185
  if (pendingChainValidationStatus.valid) {
729
1186
  return;
730
1187
  }
731
1188
 
732
1189
  const invalidCheckpointNumber = pendingChainValidationStatus.checkpoint.checkpointNumber;
1190
+
1191
+ // Avoid re-running the committee lookup, simulation, and submission on every tick within a slot.
1192
+ // The guard is keyed by (checkpoint, slot) — so a different invalid checkpoint surfacing later in
1193
+ // the same slot is not suppressed — and is set only after a request is successfully simulated below,
1194
+ // so a transient simulation failure (or thresholds not yet met) still retries on the next tick.
1195
+ if (
1196
+ this.lastInvalidationAttempt?.slot === currentSlot &&
1197
+ this.lastInvalidationAttempt.checkpointNumber === invalidCheckpointNumber
1198
+ ) {
1199
+ this.log.trace(`Already attempted to invalidate checkpoint ${invalidCheckpointNumber} in slot ${currentSlot}`, {
1200
+ currentSlot,
1201
+ invalidCheckpointNumber,
1202
+ });
1203
+ return;
1204
+ }
1205
+
733
1206
  const invalidCheckpointTimestamp = pendingChainValidationStatus.checkpoint.timestamp;
734
1207
  const timeSinceChainInvalid = this.dateProvider.nowInSeconds() - Number(invalidCheckpointTimestamp);
735
1208
  const ourValidatorAddresses = this.validatorClient.getValidatorAddresses();
@@ -739,7 +1212,6 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
739
1212
 
740
1213
  const logData = {
741
1214
  invalidL1Timestamp: invalidCheckpointTimestamp,
742
- l1Timestamp,
743
1215
  invalidCheckpoint: pendingChainValidationStatus.checkpoint,
744
1216
  secondsBeforeInvalidatingBlockAsCommitteeMember,
745
1217
  secondsBeforeInvalidatingBlockAsNonCommitteeMember,
@@ -792,6 +1264,10 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
792
1264
  return;
793
1265
  }
794
1266
 
1267
+ // We produced a valid invalidation request; record it so further ticks within this slot skip the
1268
+ // committee lookup, simulation, and submission above for this same invalid checkpoint.
1269
+ this.lastInvalidationAttempt = { slot: currentSlot, checkpointNumber: invalidCheckpointNumber };
1270
+
795
1271
  this.log.info(
796
1272
  invalidateAsCommitteeMember
797
1273
  ? `Invalidating checkpoint ${invalidCheckpointNumber} as committee member`
@@ -838,13 +1314,13 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
838
1314
  });
839
1315
  }
840
1316
 
841
- private getSlotStartBuildTimestamp(slotNumber: SlotNumber): number {
842
- return getSlotStartBuildTimestamp(slotNumber, this.l1Constants);
843
- }
844
-
845
- private getSecondsIntoSlot(slotNumber: SlotNumber): number {
846
- const slotStartTimestamp = this.getSlotStartBuildTimestamp(slotNumber);
847
- return Number((this.dateProvider.now() / 1000 - slotStartTimestamp).toFixed(3));
1317
+ /**
1318
+ * Wall-clock seconds elapsed since the build-frame start of the given target slot
1319
+ * (`now − getBuildFrameStart(targetSlot)`). May be negative if called before the build frame opens.
1320
+ */
1321
+ private getSecondsIntoBuildFrame(targetSlot: SlotNumber): number {
1322
+ const buildFrameStart = this.timetable.getBuildFrameStart(targetSlot);
1323
+ return Number((this.dateProvider.now() / 1000 - buildFrameStart).toFixed(3));
848
1324
  }
849
1325
 
850
1326
  public get aztecSlotDuration() {
@@ -867,20 +1343,24 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
867
1343
  return this.validatorClient?.getValidatorAddresses();
868
1344
  }
869
1345
 
870
- public getConfig() {
871
- return this.config;
1346
+ /** Updates the publisher factory's node keystore adapter after a keystore reload. */
1347
+ public updatePublisherNodeKeyStore(adapter: NodeKeystoreAdapter): void {
1348
+ this.publisherFactory.updateNodeKeyStore(adapter);
872
1349
  }
873
1350
 
874
- private get l1PublishingTime(): number {
875
- return this.config.l1PublishingTime ?? this.l1Constants.ethereumSlotDuration;
1351
+ public getConfig() {
1352
+ return this.config;
876
1353
  }
877
1354
  }
878
1355
 
879
1356
  type SequencerSyncCheckResult = {
880
- block?: L2Block;
1357
+ blockData?: BlockData;
881
1358
  checkpointNumber: CheckpointNumber;
1359
+ checkpointedCheckpointNumber: CheckpointNumber;
882
1360
  blockNumber: BlockNumber;
883
1361
  archive: Fr;
884
- l1Timestamp: bigint;
1362
+ hasProposedCheckpoint: boolean;
1363
+ proposedCheckpointData?: ProposedCheckpointData;
1364
+ syncedL2Slot: SlotNumber;
885
1365
  pendingChainValidationStatus: ValidateCheckpointResult;
886
1366
  };