@aztec/sequencer-client 0.0.1-commit.f504929 → 0.0.1-commit.f5a9928
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.
- package/README.md +283 -21
- package/dest/client/sequencer-client.d.ts +23 -5
- package/dest/client/sequencer-client.d.ts.map +1 -1
- package/dest/client/sequencer-client.js +63 -36
- package/dest/config.d.ts +32 -3
- package/dest/config.d.ts.map +1 -1
- package/dest/config.js +81 -31
- package/dest/global_variable_builder/fee_predictor.d.ts +37 -0
- package/dest/global_variable_builder/fee_predictor.d.ts.map +1 -0
- package/dest/global_variable_builder/fee_predictor.js +138 -0
- package/dest/global_variable_builder/fee_provider.d.ts +21 -0
- package/dest/global_variable_builder/fee_provider.d.ts.map +1 -0
- package/dest/global_variable_builder/fee_provider.js +80 -0
- package/dest/global_variable_builder/global_builder.d.ts +13 -26
- package/dest/global_variable_builder/global_builder.d.ts.map +1 -1
- package/dest/global_variable_builder/global_builder.js +9 -66
- package/dest/global_variable_builder/index.d.ts +4 -2
- package/dest/global_variable_builder/index.d.ts.map +1 -1
- package/dest/global_variable_builder/index.js +2 -0
- package/dest/publisher/config.d.ts +19 -3
- package/dest/publisher/config.d.ts.map +1 -1
- package/dest/publisher/config.js +30 -5
- package/dest/publisher/l1_to_l2_messaging.d.ts +21 -0
- package/dest/publisher/l1_to_l2_messaging.d.ts.map +1 -0
- package/dest/publisher/l1_to_l2_messaging.js +70 -0
- package/dest/publisher/l1_tx_failed_store/failed_tx_store.d.ts +3 -4
- package/dest/publisher/l1_tx_failed_store/failed_tx_store.d.ts.map +1 -1
- package/dest/publisher/sequencer-bundle-simulator.d.ts +96 -0
- package/dest/publisher/sequencer-bundle-simulator.d.ts.map +1 -0
- package/dest/publisher/sequencer-bundle-simulator.js +198 -0
- package/dest/publisher/sequencer-publisher-factory.d.ts +3 -5
- package/dest/publisher/sequencer-publisher-factory.d.ts.map +1 -1
- package/dest/publisher/sequencer-publisher-factory.js +2 -3
- package/dest/publisher/sequencer-publisher.d.ts +91 -69
- package/dest/publisher/sequencer-publisher.d.ts.map +1 -1
- package/dest/publisher/sequencer-publisher.js +445 -535
- package/dest/publisher/write_json.d.ts +11 -0
- package/dest/publisher/write_json.d.ts.map +1 -0
- package/dest/publisher/write_json.js +57 -0
- package/dest/sequencer/automine/automine_factory.d.ts +56 -0
- package/dest/sequencer/automine/automine_factory.d.ts.map +1 -0
- package/dest/sequencer/automine/automine_factory.js +85 -0
- package/dest/sequencer/automine/automine_sequencer.d.ts +189 -0
- package/dest/sequencer/automine/automine_sequencer.d.ts.map +1 -0
- package/dest/sequencer/automine/automine_sequencer.js +696 -0
- package/dest/sequencer/automine/index.d.ts +3 -0
- package/dest/sequencer/automine/index.d.ts.map +1 -0
- package/dest/sequencer/automine/index.js +2 -0
- package/dest/sequencer/checkpoint_proposal_job.d.ts +75 -19
- package/dest/sequencer/checkpoint_proposal_job.d.ts.map +1 -1
- package/dest/sequencer/checkpoint_proposal_job.js +831 -256
- package/dest/sequencer/checkpoint_proposal_job_metrics.d.ts +34 -0
- package/dest/sequencer/checkpoint_proposal_job_metrics.d.ts.map +1 -0
- package/dest/sequencer/checkpoint_proposal_job_metrics.js +72 -0
- package/dest/sequencer/checkpoint_voter.d.ts +1 -2
- package/dest/sequencer/checkpoint_voter.d.ts.map +1 -1
- package/dest/sequencer/checkpoint_voter.js +2 -5
- package/dest/sequencer/errors.d.ts +1 -8
- package/dest/sequencer/errors.d.ts.map +1 -1
- package/dest/sequencer/errors.js +0 -9
- package/dest/sequencer/events.d.ts +62 -5
- package/dest/sequencer/events.d.ts.map +1 -1
- package/dest/sequencer/metrics.d.ts +14 -11
- package/dest/sequencer/metrics.d.ts.map +1 -1
- package/dest/sequencer/metrics.js +45 -20
- package/dest/sequencer/requests_tracker.d.ts +22 -0
- package/dest/sequencer/requests_tracker.d.ts.map +1 -0
- package/dest/sequencer/requests_tracker.js +33 -0
- package/dest/sequencer/sequencer.d.ts +166 -39
- package/dest/sequencer/sequencer.d.ts.map +1 -1
- package/dest/sequencer/sequencer.js +616 -198
- package/dest/sequencer/types.d.ts +2 -2
- package/dest/sequencer/types.d.ts.map +1 -1
- package/dest/test/index.d.ts +3 -3
- package/dest/test/index.d.ts.map +1 -1
- package/dest/test/mock_checkpoint_builder.d.ts +7 -9
- package/dest/test/mock_checkpoint_builder.d.ts.map +1 -1
- package/dest/test/mock_checkpoint_builder.js +39 -30
- package/dest/test/utils.d.ts +15 -1
- package/dest/test/utils.d.ts.map +1 -1
- package/dest/test/utils.js +25 -7
- package/package.json +28 -28
- package/src/client/sequencer-client.ts +90 -45
- package/src/config.ts +98 -31
- package/src/global_variable_builder/README.md +44 -0
- package/src/global_variable_builder/fee_predictor.ts +182 -0
- package/src/global_variable_builder/fee_provider.ts +97 -0
- package/src/global_variable_builder/global_builder.ts +19 -88
- package/src/global_variable_builder/index.ts +3 -1
- package/src/publisher/config.ts +62 -7
- package/src/publisher/l1_to_l2_messaging.ts +85 -0
- package/src/publisher/l1_tx_failed_store/failed_tx_store.ts +3 -1
- package/src/publisher/sequencer-bundle-simulator.ts +254 -0
- package/src/publisher/sequencer-publisher-factory.ts +3 -6
- package/src/publisher/sequencer-publisher.ts +510 -584
- package/src/publisher/write_json.ts +78 -0
- package/src/sequencer/automine/README.md +60 -0
- package/src/sequencer/automine/automine_factory.ts +152 -0
- package/src/sequencer/automine/automine_sequencer.ts +800 -0
- package/src/sequencer/automine/index.ts +6 -0
- package/src/sequencer/checkpoint_proposal_job.ts +993 -294
- package/src/sequencer/checkpoint_proposal_job_metrics.ts +128 -0
- package/src/sequencer/checkpoint_voter.ts +1 -12
- package/src/sequencer/errors.ts +0 -15
- package/src/sequencer/events.ts +66 -5
- package/src/sequencer/metrics.ts +63 -25
- package/src/sequencer/requests_tracker.ts +43 -0
- package/src/sequencer/sequencer.ts +720 -220
- package/src/sequencer/types.ts +1 -1
- package/src/test/index.ts +2 -2
- package/src/test/mock_checkpoint_builder.ts +51 -48
- package/src/test/utils.ts +61 -10
- package/dest/sequencer/timetable.d.ts +0 -87
- package/dest/sequencer/timetable.d.ts.map +0 -1
- package/dest/sequencer/timetable.js +0 -223
- package/src/sequencer/README.md +0 -531
- package/src/sequencer/timetable.ts +0 -283
|
@@ -1,20 +1,35 @@
|
|
|
1
1
|
import { getKzg } from '@aztec/blob-lib';
|
|
2
|
-
import {
|
|
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 {
|
|
16
|
-
|
|
17
|
-
|
|
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,8 +37,9 @@ 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 {
|
|
42
|
+
import { ProposerTimetable, buildProposerTimetable } from '@aztec/stdlib/timetable';
|
|
27
43
|
import { Attributes, type TelemetryClient, type Tracer, getTelemetryClient, trackSpan } from '@aztec/telemetry-client';
|
|
28
44
|
import { FullNodeCheckpointsBuilder, NodeKeystoreAdapter, type ValidatorClient } from '@aztec/validator-client';
|
|
29
45
|
|
|
@@ -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
|
|
55
|
+
import { SequencerInterruptedError } from './errors.js';
|
|
39
56
|
import type { SequencerEvents } from './events.js';
|
|
40
57
|
import { SequencerMetrics } from './metrics.js';
|
|
41
|
-
import {
|
|
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
|
-
|
|
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
|
|
61
|
-
|
|
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
|
-
|
|
103
|
+
protected lastSlotForCheckpointProposalJob: SlotNumber | undefined;
|
|
68
104
|
|
|
69
105
|
/** Last successful checkpoint proposed */
|
|
70
106
|
private lastCheckpointProposed: Checkpoint | undefined;
|
|
@@ -72,11 +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
|
|
76
|
-
protected
|
|
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();
|
|
124
|
+
|
|
125
|
+
/** Proposer schedule and block sub-slot timetable for the sequencer, rebuilt on every config update. */
|
|
126
|
+
protected timetable!: ProposerTimetable;
|
|
77
127
|
|
|
78
128
|
/** Config for the sequencer */
|
|
79
129
|
protected config: ResolvedSequencerConfig = DefaultSequencerConfig;
|
|
130
|
+
private readonly signatureContext: CoordinationSignatureContext;
|
|
80
131
|
|
|
81
132
|
constructor(
|
|
82
133
|
protected publisherFactory: SequencerPublisherFactory,
|
|
@@ -85,45 +136,148 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
|
|
|
85
136
|
protected p2pClient: P2P,
|
|
86
137
|
protected worldState: WorldStateSynchronizer,
|
|
87
138
|
protected slasherClient: SlasherClientInterface | undefined,
|
|
88
|
-
protected l2BlockSource: L2BlockSource & L2BlockSink,
|
|
139
|
+
protected l2BlockSource: L2BlockSource & L2BlockSink & ProposedCheckpointSink,
|
|
89
140
|
protected l1ToL2MessageSource: L1ToL2MessageSource,
|
|
90
141
|
protected checkpointsBuilder: FullNodeCheckpointsBuilder,
|
|
91
142
|
protected l1Constants: SequencerRollupConstants,
|
|
92
143
|
protected dateProvider: DateProvider,
|
|
93
144
|
protected epochCache: EpochCache,
|
|
94
145
|
protected rollupContract: RollupContract,
|
|
95
|
-
config: SequencerConfig,
|
|
146
|
+
config: SequencerConfig & Pick<ChainConfig, 'l1ChainId' | 'rollupAddress'>,
|
|
96
147
|
protected telemetry: TelemetryClient = getTelemetryClient(),
|
|
97
148
|
protected log = createLogger('sequencer'),
|
|
98
149
|
) {
|
|
99
150
|
super();
|
|
151
|
+
this.stateLog = log.createChild('state');
|
|
152
|
+
this.stateEnteredAtMs = this.dateProvider.now();
|
|
100
153
|
|
|
101
154
|
// Add [FISHERMAN] prefix to logger if in fisherman mode
|
|
102
155
|
if (config.fishermanMode) {
|
|
103
156
|
this.log = log.createChild('[FISHERMAN]');
|
|
104
157
|
}
|
|
105
158
|
|
|
159
|
+
this.signatureContext = {
|
|
160
|
+
chainId: config.l1ChainId,
|
|
161
|
+
rollupAddress: config.rollupAddress,
|
|
162
|
+
};
|
|
106
163
|
this.metrics = new SequencerMetrics(telemetry, this.rollupContract, 'Sequencer');
|
|
164
|
+
this.checkpointProposalJobMetrics = new CheckpointProposalJobMetrics(telemetry);
|
|
107
165
|
this.updateConfig(config);
|
|
108
166
|
}
|
|
109
167
|
|
|
110
|
-
/**
|
|
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
|
+
*/
|
|
111
176
|
public updateConfig(config: Partial<SequencerConfig>) {
|
|
112
177
|
const filteredConfig = pickFromSchema(config, SequencerConfigSchema);
|
|
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;
|
|
113
190
|
this.log.info(`Updated sequencer config`, omit(filteredConfig, 'txPublicSetupAllowListExtend'));
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
);
|
|
191
|
+
}
|
|
192
|
+
|
|
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
|
+
}
|
|
127
281
|
}
|
|
128
282
|
|
|
129
283
|
/** Initializes the sequencer (precomputes tables). Takes about 3s. */
|
|
@@ -131,8 +285,22 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
|
|
|
131
285
|
getKzg();
|
|
132
286
|
}
|
|
133
287
|
|
|
134
|
-
/**
|
|
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
|
+
*/
|
|
135
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
|
+
}
|
|
136
304
|
this.runningPromise = new RunningPromise(
|
|
137
305
|
this.safeWork.bind(this),
|
|
138
306
|
this.log,
|
|
@@ -143,34 +311,68 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
|
|
|
143
311
|
this.log.info('Started sequencer');
|
|
144
312
|
}
|
|
145
313
|
|
|
146
|
-
/**
|
|
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
|
+
*/
|
|
147
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
|
+
}
|
|
148
331
|
this.log.info(`Stopping sequencer`);
|
|
149
332
|
this.setState(SequencerState.STOPPING, undefined, { force: true });
|
|
150
|
-
this.
|
|
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.
|
|
151
339
|
await this.runningPromise?.stop();
|
|
340
|
+
this.pendingRequests.interruptRequests();
|
|
341
|
+
await this.pendingRequests.awaitRequests();
|
|
152
342
|
this.setState(SequencerState.STOPPED, undefined, { force: true });
|
|
153
343
|
this.log.info('Stopped sequencer');
|
|
154
344
|
}
|
|
155
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
|
+
|
|
156
369
|
/** Main sequencer loop with a try/catch */
|
|
157
370
|
protected async safeWork() {
|
|
158
371
|
try {
|
|
159
372
|
await this.work();
|
|
160
373
|
} catch (err) {
|
|
161
374
|
this.emit('checkpoint-error', { error: err as Error });
|
|
162
|
-
|
|
163
|
-
// Log as warn only if we had to abort halfway through the block proposal
|
|
164
|
-
const logLvl = [SequencerState.INITIALIZING_CHECKPOINT, SequencerState.PROPOSER_CHECK].includes(
|
|
165
|
-
err.proposedState,
|
|
166
|
-
)
|
|
167
|
-
? ('debug' as const)
|
|
168
|
-
: ('warn' as const);
|
|
169
|
-
this.log[logLvl](err.message, { now: this.dateProvider.nowInSeconds() });
|
|
170
|
-
} else {
|
|
171
|
-
// Re-throw other errors
|
|
172
|
-
throw err;
|
|
173
|
-
}
|
|
375
|
+
throw err;
|
|
174
376
|
} finally {
|
|
175
377
|
this.setState(SequencerState.IDLE, undefined);
|
|
176
378
|
}
|
|
@@ -192,14 +394,24 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
|
|
|
192
394
|
@trackSpan('Sequencer.work')
|
|
193
395
|
protected async work() {
|
|
194
396
|
this.setState(SequencerState.SYNCHRONIZING, undefined);
|
|
195
|
-
const { slot,
|
|
397
|
+
const { slot, targetSlot, epoch, targetEpoch, ts, nowSeconds } = this.getSlotContextInNextL1Slot();
|
|
196
398
|
|
|
197
399
|
// Check if we are synced and it's our slot, grab a publisher, check previous block invalidation, etc
|
|
198
|
-
const checkpointProposalJob = await this.prepareCheckpointProposal(
|
|
400
|
+
const checkpointProposalJob = await this.prepareCheckpointProposal(
|
|
401
|
+
slot,
|
|
402
|
+
targetSlot,
|
|
403
|
+
epoch,
|
|
404
|
+
targetEpoch,
|
|
405
|
+
ts,
|
|
406
|
+
nowSeconds,
|
|
407
|
+
);
|
|
199
408
|
if (!checkpointProposalJob) {
|
|
200
409
|
return;
|
|
201
410
|
}
|
|
202
411
|
|
|
412
|
+
// Track the job so we can await its pending L1 submission during shutdown
|
|
413
|
+
this.lastCheckpointProposalJob = checkpointProposalJob;
|
|
414
|
+
|
|
203
415
|
// Execute the checkpoint proposal job
|
|
204
416
|
const checkpoint = await checkpointProposalJob.execute();
|
|
205
417
|
|
|
@@ -208,64 +420,76 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
|
|
|
208
420
|
this.lastCheckpointProposed = checkpoint;
|
|
209
421
|
}
|
|
210
422
|
|
|
211
|
-
// 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)
|
|
212
424
|
if (
|
|
213
425
|
this.config.fishermanMode &&
|
|
214
|
-
(this.lastEpochForStrategyComparison === undefined ||
|
|
426
|
+
(this.lastEpochForStrategyComparison === undefined || targetEpoch > this.lastEpochForStrategyComparison)
|
|
215
427
|
) {
|
|
216
|
-
this.logStrategyComparison(
|
|
217
|
-
this.lastEpochForStrategyComparison =
|
|
428
|
+
this.logStrategyComparison(targetEpoch, checkpointProposalJob.getPublisher());
|
|
429
|
+
this.lastEpochForStrategyComparison = targetEpoch;
|
|
218
430
|
}
|
|
219
431
|
|
|
220
432
|
return checkpoint;
|
|
221
433
|
}
|
|
222
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
|
+
|
|
223
442
|
/**
|
|
224
443
|
* Prepares the checkpoint proposal by performing all necessary checks and setup.
|
|
225
444
|
* This is the initial step in the main loop.
|
|
226
445
|
* @returns CheckpointProposalJob if successful, undefined if we are not yet synced or are not the proposer.
|
|
227
446
|
*/
|
|
228
447
|
@trackSpan('Sequencer.prepareCheckpointProposal')
|
|
229
|
-
|
|
230
|
-
epoch: EpochNumber,
|
|
448
|
+
protected async prepareCheckpointProposal(
|
|
231
449
|
slot: SlotNumber,
|
|
450
|
+
targetSlot: SlotNumber,
|
|
451
|
+
epoch: EpochNumber,
|
|
452
|
+
targetEpoch: EpochNumber,
|
|
232
453
|
ts: bigint,
|
|
233
|
-
|
|
454
|
+
nowSeconds: bigint,
|
|
234
455
|
): Promise<CheckpointProposalJob | undefined> {
|
|
235
|
-
// Check we have not already processed this slot (cheapest check)
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
if (
|
|
239
|
-
this.lastSlotForCheckpointProposalJob &&
|
|
240
|
-
this.lastSlotForCheckpointProposalJob >= slot &&
|
|
241
|
-
this.config.enforceTimeTable
|
|
242
|
-
) {
|
|
243
|
-
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`);
|
|
244
459
|
return undefined;
|
|
245
460
|
}
|
|
246
461
|
|
|
247
|
-
// But if we have already proposed for this slot,
|
|
248
|
-
if (this.lastCheckpointProposed && this.lastCheckpointProposed.header.slotNumber >=
|
|
249
|
-
this.log.trace(
|
|
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
|
+
);
|
|
250
467
|
return undefined;
|
|
251
468
|
}
|
|
252
469
|
|
|
253
|
-
//
|
|
254
|
-
|
|
255
|
-
if (
|
|
256
|
-
|
|
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
|
+
});
|
|
257
476
|
return undefined;
|
|
258
477
|
}
|
|
259
478
|
|
|
260
|
-
//
|
|
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.
|
|
261
486
|
// Still perform governance/slashing voting (as proposer) once per slot.
|
|
262
|
-
|
|
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);
|
|
263
489
|
|
|
264
490
|
if (isEscapeHatchOpen) {
|
|
265
|
-
this.setState(SequencerState.PROPOSER_CHECK, slot);
|
|
266
|
-
const [canPropose, proposer] = await this.checkCanPropose(slot);
|
|
267
491
|
if (canPropose) {
|
|
268
|
-
await this.tryVoteWhenEscapeHatchOpen({ slot, proposer });
|
|
492
|
+
await this.tryVoteWhenEscapeHatchOpen({ slot, targetSlot, proposer });
|
|
269
493
|
} else {
|
|
270
494
|
this.log.trace(`Escape hatch open but we are not proposer, skipping vote-only actions`, {
|
|
271
495
|
slot,
|
|
@@ -276,33 +500,101 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
|
|
|
276
500
|
return undefined;
|
|
277
501
|
}
|
|
278
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
|
+
// A proposal that cannot reach the committee is worse than not proposing: the slot is burned, and a
|
|
541
|
+
// node holding enough committee seats to reach quorum on its own would publish a checkpoint whose tx
|
|
542
|
+
// data was never gossiped to anyone, which is indistinguishable from data withholding. Skip building
|
|
543
|
+
// while peerless, but keep the vote/prune duties below. Only applies when p2p is enabled: setups that
|
|
544
|
+
// disable it (sandbox, single node, automine) legitimately propose with no peers.
|
|
545
|
+
const connectivity = await this.p2pClient.getP2PConnectivity();
|
|
546
|
+
const minPeersToPropose = this.config.minPeersToPropose;
|
|
547
|
+
if (connectivity.enabled && connectivity.connectedPeers < minPeersToPropose) {
|
|
548
|
+
this.log.warn(`Skipping checkpoint proposal for slot ${targetSlot} since we have too few connected peers`, {
|
|
549
|
+
targetSlot,
|
|
550
|
+
connectedPeers: connectivity.connectedPeers,
|
|
551
|
+
minPeersToPropose,
|
|
552
|
+
});
|
|
553
|
+
this.metrics.recordCheckpointPrecheckFailed('no_peers');
|
|
554
|
+
// Mark the slot as attempted so the gate is not re-evaluated on every tick within the slot. Vote-only
|
|
555
|
+
// actions still run: L1 duties (governance/slashing votes, prune) do not depend on gossip.
|
|
556
|
+
await this.tryVoteAndPruneWhenCannotBuild({ slot, targetSlot });
|
|
557
|
+
this.lastSlotForCheckpointProposalJob = targetSlot;
|
|
558
|
+
return undefined;
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
// We are the proposer, the escape hatch is closed, and we have time before the build start deadline.
|
|
562
|
+
// Now run the full sync check before building.
|
|
563
|
+
const syncedTo = await this.checkSync({ ts, slot });
|
|
564
|
+
if (!syncedTo) {
|
|
565
|
+
return undefined;
|
|
566
|
+
}
|
|
567
|
+
|
|
279
568
|
// Next checkpoint follows from the last synced one
|
|
280
569
|
const checkpointNumber = CheckpointNumber(syncedTo.checkpointNumber + 1);
|
|
281
570
|
|
|
282
571
|
const logCtx = {
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
syncedToL2Slot: getSlotAtTimestamp(syncedTo.l1Timestamp, this.l1Constants),
|
|
572
|
+
nowSeconds,
|
|
573
|
+
syncedToL2Slot: syncedTo.syncedL2Slot,
|
|
286
574
|
slot,
|
|
575
|
+
targetSlot,
|
|
287
576
|
slotTs: ts,
|
|
288
577
|
checkpointNumber,
|
|
289
578
|
isPendingChainValid: pick(syncedTo.pendingChainValidationStatus, 'valid', 'reason', 'invalidIndex'),
|
|
290
579
|
};
|
|
291
580
|
|
|
292
|
-
//
|
|
293
|
-
this.setState(SequencerState.PROPOSER_CHECK,
|
|
294
|
-
const [canPropose, proposer] = await this.checkCanPropose(slot);
|
|
581
|
+
// We are the synced proposer within the build window; enter the proposer-check state and build.
|
|
582
|
+
this.setState(SequencerState.PROPOSER_CHECK, targetSlot);
|
|
295
583
|
|
|
296
|
-
//
|
|
297
|
-
|
|
298
|
-
|
|
584
|
+
// Guard: don't exceed 1-deep pipeline. Without a proposed checkpoint, we can only build
|
|
585
|
+
// confirmed + 1. With a proposed checkpoint, we can build confirmed + 2.
|
|
586
|
+
const confirmedCkpt = syncedTo.checkpointedCheckpointNumber;
|
|
587
|
+
if (checkpointNumber > confirmedCkpt + 2) {
|
|
588
|
+
this.log.verbose(
|
|
589
|
+
`Skipping slot ${targetSlot}: checkpoint ${checkpointNumber} exceeds max pipeline depth (confirmed=${confirmedCkpt})`,
|
|
590
|
+
);
|
|
299
591
|
return undefined;
|
|
300
592
|
}
|
|
301
593
|
|
|
302
|
-
// Check that the slot is not taken by a block already (should never happen, since only us can propose for this slot)
|
|
303
|
-
if (syncedTo.blockData && syncedTo.blockData.header.getSlot() >=
|
|
594
|
+
// Check that the target slot is not taken by a block already (should never happen, since only us can propose for this slot)
|
|
595
|
+
if (syncedTo.blockData && syncedTo.blockData.header.getSlot() >= targetSlot) {
|
|
304
596
|
this.log.warn(
|
|
305
|
-
`Cannot propose block at
|
|
597
|
+
`Cannot propose block at target slot ${targetSlot} since that slot was taken by block ${syncedTo.blockNumber}`,
|
|
306
598
|
{ ...logCtx, block: syncedTo.blockData.header.toInspect() },
|
|
307
599
|
);
|
|
308
600
|
this.metrics.recordCheckpointPrecheckFailed('slot_already_taken');
|
|
@@ -317,37 +609,106 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
|
|
|
317
609
|
const { attestorAddress, publisher } = await this.publisherFactory.create(proposerForPublisher);
|
|
318
610
|
this.log.verbose(`Created publisher at address ${publisher.getSenderAddress()} for attestor ${attestorAddress}`);
|
|
319
611
|
|
|
320
|
-
//
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
612
|
+
// Prepare invalidation request if the pending chain is invalid (returns undefined if no need).
|
|
613
|
+
// Only simulate invalidation when there's no proposed parent, since we assume the proposed parent
|
|
614
|
+
// will invalidate the currently invalid checkpoint on L1.
|
|
615
|
+
const invalidateCheckpoint =
|
|
616
|
+
syncedTo.hasProposedCheckpoint || syncedTo.pendingChainValidationStatus.valid
|
|
617
|
+
? undefined
|
|
618
|
+
: await publisher.simulateInvalidateCheckpoint(syncedTo.pendingChainValidationStatus);
|
|
619
|
+
|
|
620
|
+
// Determine the correct archive and L1 state overrides for the canProposeAt check.
|
|
621
|
+
// The L1 contract reads archives[proposedCheckpointNumber] and compares it with the provided archive.
|
|
622
|
+
// When invalidating or pipelining, the local archive may differ from L1's, so we adjust accordingly.
|
|
623
|
+
let archiveForCheck = syncedTo.archive;
|
|
624
|
+
|
|
625
|
+
if (syncedTo.hasProposedCheckpoint) {
|
|
626
|
+
this.metrics.recordPipelineDepth(syncedTo.checkpointNumber - syncedTo.checkpointedCheckpointNumber);
|
|
627
|
+
this.log.verbose(
|
|
628
|
+
`Building on top of proposed checkpoint (pending=${syncedTo.proposedCheckpointData?.checkpointNumber}) for target slot ${targetSlot}`,
|
|
629
|
+
{ targetSlot, parentCheckpointNumber: CheckpointNumber(checkpointNumber - 1) },
|
|
630
|
+
);
|
|
631
|
+
// Match what L1 will see at archives[pending] once the proposed parent lands: the parent's
|
|
632
|
+
// own archive root from the gossiped proposal. `syncedTo.archive` is the world-state-local
|
|
633
|
+
// view and can transiently diverge from the proposed parent (e.g. before the proposed
|
|
634
|
+
// parent's blocks have been applied locally); diverging here would cause the canProposeAt
|
|
635
|
+
// override to set archives[pending] to one value while we present another for comparison.
|
|
636
|
+
archiveForCheck = syncedTo.proposedCheckpointData!.archive.root;
|
|
637
|
+
} else if (invalidateCheckpoint) {
|
|
638
|
+
// After invalidation, L1 will roll back to checkpoint N-1. The archive at N-1 already
|
|
639
|
+
// exists on L1, so we just pass the matching archive (the lastArchive of the invalid checkpoint).
|
|
640
|
+
archiveForCheck = invalidateCheckpoint.lastArchive;
|
|
641
|
+
this.metrics.recordPipelineDepth(0);
|
|
642
|
+
} else {
|
|
643
|
+
this.metrics.recordPipelineDepth(0);
|
|
324
644
|
}
|
|
325
645
|
|
|
326
|
-
//
|
|
327
|
-
|
|
646
|
+
// Build the simulation plan: pending/proven override from pipelining or invalidation (or the
|
|
647
|
+
// current snapshot when neither applies, to short-circuit any pending prune in simulation),
|
|
648
|
+
// plus the parent checkpoint cell and fee header when pipelining.
|
|
649
|
+
const simulationOverridesPlan = await buildCheckpointSimulationOverridesPlan({
|
|
650
|
+
checkpointNumber,
|
|
651
|
+
proposedCheckpointData: syncedTo.hasProposedCheckpoint ? syncedTo.proposedCheckpointData : undefined,
|
|
652
|
+
invalidateToPendingCheckpointNumber: invalidateCheckpoint?.forcePendingCheckpointNumber,
|
|
653
|
+
checkpointedCheckpointNumber: syncedTo.checkpointedCheckpointNumber,
|
|
654
|
+
rollup: this.rollupContract,
|
|
655
|
+
signatureContext: this.signatureContext,
|
|
656
|
+
log: this.log,
|
|
657
|
+
});
|
|
328
658
|
|
|
329
|
-
//
|
|
330
|
-
//
|
|
331
|
-
|
|
332
|
-
|
|
659
|
+
// The plan always pins both pending/proven (to short-circuit `canPruneAtTime` in simulation),
|
|
660
|
+
// so `provenOverride` always reflects the assumed proven checkpoint we are pinning the
|
|
661
|
+
// simulation to. We additionally warn when the pin is load-bearing — i.e. when a prune would
|
|
662
|
+
// actually fire at the target slot without it — so observers can spot "we are building
|
|
663
|
+
// optimistically across a pruning boundary" in the logs.
|
|
664
|
+
const provenOverride = simulationOverridesPlan?.chainTipsOverride?.proven;
|
|
665
|
+
if (provenOverride !== undefined && (await this.l2BlockSource.isPruneDueAtSlot(targetSlot))) {
|
|
666
|
+
this.log.warn(
|
|
667
|
+
`Assuming proof for epoch ending at checkpoint ${provenOverride} lands by target slot ${targetSlot}`,
|
|
668
|
+
{ checkpointNumber, slot, targetSlot, provenOverride },
|
|
669
|
+
);
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
this.emit('preparing-checkpoint', {
|
|
673
|
+
targetSlot,
|
|
674
|
+
checkpointNumber,
|
|
675
|
+
hadProposedParent: syncedTo.hasProposedCheckpoint,
|
|
676
|
+
provenOverride,
|
|
677
|
+
simulatedPending: simulationOverridesPlan?.chainTipsOverride?.pending,
|
|
678
|
+
});
|
|
679
|
+
|
|
680
|
+
const canProposeCheck = await publisher.canProposeAt(
|
|
681
|
+
archiveForCheck,
|
|
333
682
|
proposer ?? EthAddress.ZERO,
|
|
334
|
-
|
|
683
|
+
simulationOverridesPlan,
|
|
335
684
|
);
|
|
336
685
|
|
|
686
|
+
const proposeContext = {
|
|
687
|
+
hasProposedCheckpoint: syncedTo.hasProposedCheckpoint,
|
|
688
|
+
proposedCheckpointNumber: syncedTo.proposedCheckpointData?.checkpointNumber,
|
|
689
|
+
checkpointedCheckpointNumber: syncedTo.checkpointedCheckpointNumber,
|
|
690
|
+
isInvalidating: !!invalidateCheckpoint,
|
|
691
|
+
invalidatingCheckpointNumber: invalidateCheckpoint?.checkpointNumber,
|
|
692
|
+
archiveForCheck: archiveForCheck.toString(),
|
|
693
|
+
overridePendingCheckpointNumber: simulationOverridesPlan?.chainTipsOverride?.pending,
|
|
694
|
+
overrideArchive: simulationOverridesPlan?.pendingCheckpointState?.archive,
|
|
695
|
+
overrideFeeHeader: simulationOverridesPlan?.pendingCheckpointState?.feeHeader,
|
|
696
|
+
};
|
|
697
|
+
|
|
337
698
|
if (canProposeCheck === undefined) {
|
|
338
699
|
this.log.warn(
|
|
339
700
|
`Cannot propose checkpoint ${checkpointNumber} at slot ${slot} due to failed rollup contract check`,
|
|
340
|
-
logCtx,
|
|
701
|
+
{ ...logCtx, ...proposeContext },
|
|
341
702
|
);
|
|
342
703
|
this.emit('proposer-rollup-check-failed', { reason: 'Rollup contract check failed', slot });
|
|
343
704
|
this.metrics.recordCheckpointPrecheckFailed('rollup_contract_check_failed');
|
|
344
705
|
return undefined;
|
|
345
706
|
}
|
|
346
707
|
|
|
347
|
-
if (canProposeCheck.slot !==
|
|
708
|
+
if (canProposeCheck.slot !== targetSlot) {
|
|
348
709
|
this.log.warn(
|
|
349
|
-
`Cannot propose block due to slot mismatch with rollup contract (this can be caused by a clock out of sync). Expected slot ${
|
|
350
|
-
{ ...logCtx, rollup: canProposeCheck, expectedSlot:
|
|
710
|
+
`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}.`,
|
|
711
|
+
{ ...logCtx, ...proposeContext, rollup: canProposeCheck, expectedSlot: targetSlot },
|
|
351
712
|
);
|
|
352
713
|
this.emit('proposer-rollup-check-failed', { reason: 'Slot mismatch', slot });
|
|
353
714
|
this.metrics.recordCheckpointPrecheckFailed('slot_mismatch');
|
|
@@ -357,45 +718,58 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
|
|
|
357
718
|
if (canProposeCheck.checkpointNumber !== checkpointNumber) {
|
|
358
719
|
this.log.warn(
|
|
359
720
|
`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}.`,
|
|
360
|
-
{ ...logCtx, rollup: canProposeCheck, expectedSlot: slot },
|
|
721
|
+
{ ...logCtx, ...proposeContext, rollup: canProposeCheck, expectedSlot: slot },
|
|
361
722
|
);
|
|
362
723
|
this.emit('proposer-rollup-check-failed', { reason: 'Block mismatch', slot });
|
|
363
724
|
this.metrics.recordCheckpointPrecheckFailed('block_number_mismatch');
|
|
364
725
|
return undefined;
|
|
365
726
|
}
|
|
366
727
|
|
|
367
|
-
this.lastSlotForCheckpointProposalJob =
|
|
368
|
-
|
|
369
|
-
this.
|
|
728
|
+
this.lastSlotForCheckpointProposalJob = targetSlot;
|
|
729
|
+
|
|
730
|
+
await this.p2pClient.prepareForSlot(targetSlot);
|
|
731
|
+
this.log.info(
|
|
732
|
+
`Preparing checkpoint proposal ${checkpointNumber} for target slot ${targetSlot} during wall-clock slot ${slot}`,
|
|
733
|
+
{
|
|
734
|
+
...logCtx,
|
|
735
|
+
...proposeContext,
|
|
736
|
+
proposer,
|
|
737
|
+
},
|
|
738
|
+
);
|
|
370
739
|
|
|
371
740
|
// Create and return the checkpoint proposal job
|
|
372
741
|
return this.createCheckpointProposalJob(
|
|
373
|
-
|
|
374
|
-
|
|
742
|
+
targetSlot,
|
|
743
|
+
targetEpoch,
|
|
375
744
|
checkpointNumber,
|
|
376
745
|
syncedTo.blockNumber,
|
|
746
|
+
syncedTo.checkpointedCheckpointNumber,
|
|
377
747
|
proposer,
|
|
378
748
|
publisher,
|
|
379
749
|
attestorAddress,
|
|
380
750
|
invalidateCheckpoint,
|
|
751
|
+
syncedTo.proposedCheckpointData,
|
|
381
752
|
);
|
|
382
753
|
}
|
|
383
754
|
|
|
384
755
|
protected createCheckpointProposalJob(
|
|
385
|
-
|
|
386
|
-
|
|
756
|
+
targetSlot: SlotNumber,
|
|
757
|
+
targetEpoch: EpochNumber,
|
|
387
758
|
checkpointNumber: CheckpointNumber,
|
|
388
759
|
syncedToBlockNumber: BlockNumber,
|
|
760
|
+
checkpointedCheckpointNumber: CheckpointNumber,
|
|
389
761
|
proposer: EthAddress | undefined,
|
|
390
762
|
publisher: SequencerPublisher,
|
|
391
763
|
attestorAddress: EthAddress,
|
|
392
764
|
invalidateCheckpoint: InvalidateCheckpointRequest | undefined,
|
|
765
|
+
proposedCheckpointData?: ProposedCheckpointData,
|
|
393
766
|
): CheckpointProposalJob {
|
|
394
767
|
return new CheckpointProposalJob(
|
|
395
|
-
|
|
396
|
-
|
|
768
|
+
targetSlot,
|
|
769
|
+
targetEpoch,
|
|
397
770
|
checkpointNumber,
|
|
398
771
|
syncedToBlockNumber,
|
|
772
|
+
checkpointedCheckpointNumber,
|
|
399
773
|
proposer,
|
|
400
774
|
publisher,
|
|
401
775
|
attestorAddress,
|
|
@@ -409,16 +783,20 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
|
|
|
409
783
|
this.checkpointsBuilder,
|
|
410
784
|
this.l2BlockSource,
|
|
411
785
|
this.l1Constants,
|
|
786
|
+
this.signatureContext,
|
|
412
787
|
this.config,
|
|
413
788
|
this.timetable,
|
|
414
789
|
this.slasherClient,
|
|
415
790
|
this.epochCache,
|
|
416
791
|
this.dateProvider,
|
|
417
792
|
this.metrics,
|
|
793
|
+
this.checkpointProposalJobMetrics.createRecorder(),
|
|
418
794
|
this,
|
|
795
|
+
this.pendingRequests,
|
|
419
796
|
this.setState.bind(this),
|
|
420
797
|
this.tracer,
|
|
421
798
|
this.log.getBindings(),
|
|
799
|
+
proposedCheckpointData,
|
|
422
800
|
);
|
|
423
801
|
}
|
|
424
802
|
|
|
@@ -430,9 +808,11 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
|
|
|
430
808
|
}
|
|
431
809
|
|
|
432
810
|
/**
|
|
433
|
-
* Internal helper for setting the sequencer state
|
|
811
|
+
* Internal helper for setting the sequencer state. Pure: sets the state, emits `state-changed`, and
|
|
812
|
+
* records metrics. Timing deadlines are queried explicitly at the relevant call sites, not gated here.
|
|
434
813
|
* @param proposedState - The new state to transition to.
|
|
435
|
-
* @param slotNumber - The
|
|
814
|
+
* @param slotNumber - The target slot being proposed for, emitted as `targetSlot` on the event payload
|
|
815
|
+
* and used to anchor `secondsIntoBuildFrame`. Undefined for lifecycle states with no associated slot.
|
|
436
816
|
* @param force - Whether to force the transition even if the sequencer is stopped.
|
|
437
817
|
*/
|
|
438
818
|
protected setState(
|
|
@@ -448,25 +828,39 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
|
|
|
448
828
|
this.log.warn(`Cannot set sequencer from ${this.state} to ${proposedState} as it is stopped.`);
|
|
449
829
|
return;
|
|
450
830
|
}
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
831
|
+
const secondsIntoBuildFrame = slotNumber !== undefined ? this.getSecondsIntoBuildFrame(slotNumber) : undefined;
|
|
832
|
+
|
|
833
|
+
const oldState = this.state;
|
|
834
|
+
const oldStateSlotNumber = this.stateSlotNumber;
|
|
835
|
+
const stateChanged = proposedState !== oldState;
|
|
836
|
+
// Wall-clock time spent in the previous state: the delta between consecutive state-changing setState
|
|
837
|
+
// calls, read from the date provider so it tracks simulated time under a test/manual clock.
|
|
838
|
+
const transitionAtMs = this.dateProvider.now();
|
|
839
|
+
const stateDurationMs = transitionAtMs - this.stateEnteredAtMs;
|
|
456
840
|
|
|
457
841
|
const boringStates = [SequencerState.IDLE, SequencerState.SYNCHRONIZING];
|
|
458
842
|
const logLevel =
|
|
459
|
-
boringStates.includes(proposedState) && boringStates.includes(
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
843
|
+
boringStates.includes(proposedState) && boringStates.includes(oldState) ? ('trace' as const) : ('debug' as const);
|
|
844
|
+
this.stateLog[logLevel](`Transitioning from ${oldState} to ${proposedState}`, {
|
|
845
|
+
oldState,
|
|
846
|
+
newState: proposedState,
|
|
847
|
+
slotNumber,
|
|
848
|
+
stateSlotNumber: oldStateSlotNumber,
|
|
849
|
+
secondsIntoBuildFrame,
|
|
850
|
+
...(stateChanged && { stateDurationMs: Math.ceil(stateDurationMs) }),
|
|
851
|
+
});
|
|
463
852
|
|
|
464
853
|
this.emit('state-changed', {
|
|
465
|
-
oldState
|
|
854
|
+
oldState,
|
|
466
855
|
newState: proposedState,
|
|
467
|
-
|
|
468
|
-
|
|
856
|
+
secondsIntoBuildFrame,
|
|
857
|
+
targetSlot: slotNumber,
|
|
469
858
|
});
|
|
859
|
+
if (stateChanged) {
|
|
860
|
+
this.metrics.recordStateDuration(stateDurationMs, oldState);
|
|
861
|
+
this.stateEnteredAtMs = transitionAtMs;
|
|
862
|
+
this.stateSlotNumber = slotNumber;
|
|
863
|
+
}
|
|
470
864
|
this.state = proposedState;
|
|
471
865
|
}
|
|
472
866
|
|
|
@@ -475,16 +869,15 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
|
|
|
475
869
|
* We don't check against the previous block submitted since it may have been reorg'd out.
|
|
476
870
|
*/
|
|
477
871
|
protected async checkSync(args: { ts: bigint; slot: SlotNumber }): Promise<SequencerSyncCheckResult | undefined> {
|
|
478
|
-
// Check that the archiver
|
|
479
|
-
//
|
|
480
|
-
//
|
|
481
|
-
const
|
|
482
|
-
const { slot
|
|
483
|
-
if (
|
|
872
|
+
// Check that the archiver has fully synced the L2 slot before the one we want to propose in.
|
|
873
|
+
// The archiver reports sync progress via L1 block timestamps and synced checkpoint slots.
|
|
874
|
+
// See getSyncedL2SlotNumber for how missed L1 blocks are handled.
|
|
875
|
+
const syncedL2Slot = await this.l2BlockSource.getSyncedL2SlotNumber();
|
|
876
|
+
const { slot } = args;
|
|
877
|
+
if (syncedL2Slot === undefined || syncedL2Slot + 1 < slot) {
|
|
484
878
|
this.log.debug(`Cannot propose block at next L2 slot ${slot} due to pending sync from L1`, {
|
|
485
879
|
slot,
|
|
486
|
-
|
|
487
|
-
l1Timestamp,
|
|
880
|
+
syncedL2Slot,
|
|
488
881
|
});
|
|
489
882
|
return undefined;
|
|
490
883
|
}
|
|
@@ -494,45 +887,83 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
|
|
|
494
887
|
number: syncSummary.latestBlockNumber,
|
|
495
888
|
hash: syncSummary.latestBlockHash,
|
|
496
889
|
})),
|
|
497
|
-
this.l2BlockSource.getL2Tips().then(t => t.proposed),
|
|
890
|
+
this.l2BlockSource.getL2Tips().then(t => ({ proposed: t.proposed, checkpointed: t.checkpointed })),
|
|
498
891
|
this.p2pClient.getStatus().then(p2p => p2p.syncedToL2Block),
|
|
499
|
-
this.l1ToL2MessageSource.getL2Tips().then(t => t.proposed),
|
|
892
|
+
this.l1ToL2MessageSource.getL2Tips().then(t => ({ proposed: t.proposed, checkpointed: t.checkpointed })),
|
|
500
893
|
this.l2BlockSource.getPendingChainValidationStatus(),
|
|
894
|
+
this.l2BlockSource.getProposedCheckpointData(),
|
|
501
895
|
] as const);
|
|
502
896
|
|
|
503
|
-
const [worldState,
|
|
897
|
+
const [worldState, l2Tips, p2p, l1ToL2MessageSourceTips, pendingChainValidationStatus, proposedCheckpointData] =
|
|
898
|
+
syncedBlocks;
|
|
504
899
|
|
|
505
|
-
// 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,
|
|
506
|
-
// as the world state can compute the new genesis block hash, but other components use the hardcoded constant.
|
|
507
|
-
// TODO(palla/mbps): Fix the above. All components should be able to handle dynamic genesis block hashes.
|
|
508
900
|
const result =
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
901
|
+
worldState.hash === l2Tips.proposed.hash &&
|
|
902
|
+
p2p.hash === l2Tips.proposed.hash &&
|
|
903
|
+
l1ToL2MessageSourceTips.proposed.hash === l2Tips.proposed.hash &&
|
|
904
|
+
l1ToL2MessageSourceTips.checkpointed.block.hash === l2Tips.checkpointed.block.hash &&
|
|
905
|
+
l1ToL2MessageSourceTips.checkpointed.checkpoint.hash === l2Tips.checkpointed.checkpoint.hash;
|
|
513
906
|
|
|
514
907
|
if (!result) {
|
|
515
|
-
this.log.debug(`Sequencer sync check failed`, {
|
|
908
|
+
this.log.debug(`Sequencer sync check failed`, {
|
|
909
|
+
worldState,
|
|
910
|
+
l2BlockSource: l2Tips.proposed,
|
|
911
|
+
p2p,
|
|
912
|
+
l1ToL2MessageSourceTips,
|
|
913
|
+
});
|
|
516
914
|
return undefined;
|
|
517
915
|
}
|
|
518
916
|
|
|
519
|
-
// Special case for genesis state
|
|
520
917
|
const blockNumber = worldState.number;
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
918
|
+
const blockData = await this.l2BlockSource.getBlockData({ number: blockNumber });
|
|
919
|
+
if (!blockData) {
|
|
920
|
+
this.log.warn(`Sequencer sync check failed: failed to get L2 block data ${blockNumber} from the archiver`, {
|
|
921
|
+
blockNumber,
|
|
922
|
+
l2Tips,
|
|
923
|
+
syncedL2Slot,
|
|
924
|
+
...args,
|
|
925
|
+
});
|
|
926
|
+
return undefined;
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
// Refuse to build a checkpoint on top of a proposed block whose enclosing checkpoint was never
|
|
930
|
+
// proposed. Under pipelining we may have received and reexecuted such a block locally — advancing
|
|
931
|
+
// our world-state tip past the checkpointed tip — while the proposing node never published the
|
|
932
|
+
// matching proposed checkpoint (e.g. it crashed before assembling it). Building on this orphan block
|
|
933
|
+
// would fork the chain off a tip no other node can follow. The archiver prunes these orphan blocks
|
|
934
|
+
// once their build slot ends; this guard is the correctness barrier during the grace window before.
|
|
935
|
+
// `getProposedCheckpointData()` returns the latest proposed checkpoint payload, which is always
|
|
936
|
+
// the leading one (a proposed entry is only stored beyond the confirmed frontier and is deleted
|
|
937
|
+
// on confirmation). It carries no tip, so there is no tip-vs-payload split read to reconcile.
|
|
938
|
+
if (
|
|
939
|
+
blockData.checkpointNumber > l2Tips.checkpointed.checkpoint.number &&
|
|
940
|
+
proposedCheckpointData?.checkpointNumber !== blockData.checkpointNumber
|
|
941
|
+
) {
|
|
942
|
+
const logCtx = {
|
|
943
|
+
blockCheckpointNumber: blockData.checkpointNumber,
|
|
944
|
+
checkpointedCheckpointNumber: l2Tips.checkpointed.checkpoint.number,
|
|
945
|
+
proposedCheckpointTipNumber: proposedCheckpointData?.checkpointNumber,
|
|
946
|
+
blockNumber: blockData.header.getBlockNumber(),
|
|
947
|
+
blockSlot: blockData.header.getSlot(),
|
|
948
|
+
syncedL2Slot,
|
|
949
|
+
...args,
|
|
529
950
|
};
|
|
951
|
+
|
|
952
|
+
this.log.debug(`Waiting for proposed checkpoint to catch up with reexecuted block`, logCtx);
|
|
953
|
+
return undefined;
|
|
530
954
|
}
|
|
531
955
|
|
|
532
|
-
const
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
956
|
+
const hasProposedCheckpoint = proposedCheckpointData !== undefined;
|
|
957
|
+
|
|
958
|
+
// Check that the proposed checkpoint is indeed the parent of the checkpoint we'll be building
|
|
959
|
+
// The checkpoint number to build is derived as blockData.checkpointNumber + 1
|
|
960
|
+
if (proposedCheckpointData && proposedCheckpointData.checkpointNumber !== blockData.checkpointNumber) {
|
|
961
|
+
this.log.warn(`Sequencer sync check failed: proposed checkpoint number mismatch`, {
|
|
962
|
+
proposedCheckpointNumber: proposedCheckpointData.checkpointNumber,
|
|
963
|
+
blockCheckpointNumber: blockData.checkpointNumber,
|
|
964
|
+
syncedL2Slot,
|
|
965
|
+
...args,
|
|
966
|
+
});
|
|
536
967
|
return undefined;
|
|
537
968
|
}
|
|
538
969
|
|
|
@@ -540,8 +971,11 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
|
|
|
540
971
|
blockData,
|
|
541
972
|
blockNumber: blockData.header.getBlockNumber(),
|
|
542
973
|
checkpointNumber: blockData.checkpointNumber,
|
|
974
|
+
checkpointedCheckpointNumber: l2Tips.checkpointed.checkpoint.number,
|
|
543
975
|
archive: blockData.archive.root,
|
|
544
|
-
|
|
976
|
+
hasProposedCheckpoint,
|
|
977
|
+
proposedCheckpointData,
|
|
978
|
+
syncedL2Slot,
|
|
545
979
|
pendingChainValidationStatus,
|
|
546
980
|
};
|
|
547
981
|
}
|
|
@@ -550,20 +984,20 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
|
|
|
550
984
|
* Checks if we are the proposer for the next slot.
|
|
551
985
|
* @returns True if we can propose, and the proposer address (undefined if anyone can propose)
|
|
552
986
|
*/
|
|
553
|
-
protected async checkCanPropose(
|
|
987
|
+
protected async checkCanPropose(targetSlot: SlotNumber): Promise<[boolean, EthAddress | undefined]> {
|
|
554
988
|
let proposer: EthAddress | undefined;
|
|
555
989
|
|
|
556
990
|
try {
|
|
557
|
-
proposer = await this.epochCache.getProposerAttesterAddressInSlot(
|
|
991
|
+
proposer = await this.epochCache.getProposerAttesterAddressInSlot(targetSlot);
|
|
558
992
|
} catch (e) {
|
|
559
993
|
if (e instanceof NoCommitteeError) {
|
|
560
|
-
if (this.lastSlotForNoCommitteeWarning !==
|
|
561
|
-
this.lastSlotForNoCommitteeWarning =
|
|
562
|
-
this.log.warn(`Cannot propose at
|
|
994
|
+
if (this.lastSlotForNoCommitteeWarning !== targetSlot) {
|
|
995
|
+
this.lastSlotForNoCommitteeWarning = targetSlot;
|
|
996
|
+
this.log.warn(`Cannot propose at target slot ${targetSlot} since the committee does not exist on L1`);
|
|
563
997
|
}
|
|
564
998
|
return [false, undefined];
|
|
565
999
|
}
|
|
566
|
-
this.log.error(`Error getting proposer for slot ${
|
|
1000
|
+
this.log.error(`Error getting proposer for target slot ${targetSlot}`, e);
|
|
567
1001
|
return [false, undefined];
|
|
568
1002
|
}
|
|
569
1003
|
|
|
@@ -580,55 +1014,56 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
|
|
|
580
1014
|
const weAreProposer = validatorAddresses.some(addr => addr.equals(proposer));
|
|
581
1015
|
|
|
582
1016
|
if (!weAreProposer) {
|
|
583
|
-
this.log.debug(`Cannot propose at slot ${
|
|
1017
|
+
this.log.debug(`Cannot propose at target slot ${targetSlot} since we are not a proposer`, {
|
|
1018
|
+
targetSlot,
|
|
1019
|
+
validatorAddresses,
|
|
1020
|
+
proposer,
|
|
1021
|
+
});
|
|
584
1022
|
return [false, proposer];
|
|
585
1023
|
}
|
|
586
1024
|
|
|
1025
|
+
this.log.info(`We are the proposer for pipeline slot ${targetSlot}`, {
|
|
1026
|
+
targetSlot,
|
|
1027
|
+
proposer,
|
|
1028
|
+
});
|
|
587
1029
|
return [true, proposer];
|
|
588
1030
|
}
|
|
589
1031
|
|
|
590
1032
|
/**
|
|
591
|
-
* Tries to vote on slashing actions and governance
|
|
592
|
-
* This allows the sequencer to participate in governance/slashing votes even when it
|
|
1033
|
+
* Tries to vote on slashing actions and governance and to prune when we cannot build and are past the
|
|
1034
|
+
* block-building window. This allows the sequencer to participate in governance/slashing votes even when it
|
|
1035
|
+
* cannot build blocks, and to prune the pending chain so it can recover from bad data that is blocking sync.
|
|
593
1036
|
*/
|
|
594
|
-
@trackSpan('
|
|
595
|
-
protected async
|
|
596
|
-
const { slot } = args;
|
|
1037
|
+
@trackSpan('Sequencer.tryVoteAndPruneWhenCannotBuild', ({ slot }) => ({ [Attributes.SLOT_NUMBER]: slot }))
|
|
1038
|
+
protected async tryVoteAndPruneWhenCannotBuild(args: { slot: SlotNumber; targetSlot: SlotNumber }): Promise<void> {
|
|
1039
|
+
const { slot, targetSlot } = args;
|
|
597
1040
|
|
|
598
1041
|
// Prevent duplicate attempts in the same slot
|
|
599
|
-
if (this.
|
|
600
|
-
this.log.trace(`Already attempted
|
|
1042
|
+
if (this.lastSlotForFallbackAction === slot) {
|
|
1043
|
+
this.log.trace(`Already attempted fallback actions in slot ${slot} (skipping)`);
|
|
601
1044
|
return;
|
|
602
1045
|
}
|
|
603
1046
|
|
|
604
|
-
//
|
|
605
|
-
|
|
606
|
-
|
|
1047
|
+
// Vote-only actions do not give up the slot: if sync recovers, a later work-loop iteration can still build.
|
|
1048
|
+
// Under proposer pipelining the work loop reasons about the next L1 slot, so waiting for the target slot's
|
|
1049
|
+
// build-start deadline can miss the whole fallback window when the target advances with the clock.
|
|
1050
|
+
const nowSeconds = this.dateProvider.now() / 1000;
|
|
1051
|
+
const startDeadline = this.timetable.getBuildStartDeadline(targetSlot);
|
|
607
1052
|
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
this.log.trace(`Not attempting to vote since there is still time for block building`, {
|
|
612
|
-
secondsIntoSlot,
|
|
613
|
-
maxAllowedTime,
|
|
614
|
-
});
|
|
615
|
-
return;
|
|
616
|
-
}
|
|
617
|
-
|
|
618
|
-
this.log.trace(`Sync for slot ${slot} failed, checking for voting opportunities`, {
|
|
619
|
-
secondsIntoSlot,
|
|
620
|
-
maxAllowedTime,
|
|
1053
|
+
this.log.trace(`Cannot build for slot ${slot}, checking for voting opportunities`, {
|
|
1054
|
+
nowSeconds,
|
|
1055
|
+
startDeadline,
|
|
621
1056
|
});
|
|
622
1057
|
|
|
623
1058
|
// Check if we're a proposer or proposal is open
|
|
624
|
-
const [canPropose, proposer] = await this.checkCanPropose(
|
|
1059
|
+
const [canPropose, proposer] = await this.checkCanPropose(targetSlot);
|
|
625
1060
|
if (!canPropose) {
|
|
626
1061
|
this.log.trace(`Cannot vote in slot ${slot} since we are not a proposer`, { slot, proposer });
|
|
627
1062
|
return;
|
|
628
1063
|
}
|
|
629
1064
|
|
|
630
1065
|
// Mark this slot as attempted
|
|
631
|
-
this.
|
|
1066
|
+
this.lastSlotForFallbackAction = slot;
|
|
632
1067
|
|
|
633
1068
|
// Get a publisher for voting
|
|
634
1069
|
const { attestorAddress, publisher } = await this.publisherFactory.create(proposer);
|
|
@@ -638,9 +1073,9 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
|
|
|
638
1073
|
slot,
|
|
639
1074
|
});
|
|
640
1075
|
|
|
641
|
-
// Enqueue governance and slashing votes
|
|
1076
|
+
// Enqueue governance and slashing votes (voter uses the target slot for L1 submission)
|
|
642
1077
|
const voter = new CheckpointVoter(
|
|
643
|
-
|
|
1078
|
+
targetSlot,
|
|
644
1079
|
publisher,
|
|
645
1080
|
attestorAddress,
|
|
646
1081
|
this.validatorClient,
|
|
@@ -653,13 +1088,41 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
|
|
|
653
1088
|
const votesPromises = voter.enqueueVotes();
|
|
654
1089
|
const votes = await Promise.all(votesPromises);
|
|
655
1090
|
|
|
656
|
-
if (
|
|
657
|
-
|
|
1091
|
+
// Even if we cannot build, try to prune so a stuck pending chain (e.g. bad data blocking sync) can
|
|
1092
|
+
// recover. prune() is permissionless, so it rides the same fallback multicall as the votes.
|
|
1093
|
+
const pruneEnqueued = await this.tryEnqueuePruneIfPrunable(targetSlot, publisher);
|
|
1094
|
+
|
|
1095
|
+
// Bail if nothing to do
|
|
1096
|
+
if (votes.every(p => !p) && !pruneEnqueued) {
|
|
1097
|
+
this.log.debug(`Nothing to enqueue for slot ${slot} (no votes, not prunable)`);
|
|
658
1098
|
return;
|
|
659
1099
|
}
|
|
660
1100
|
|
|
661
|
-
|
|
662
|
-
|
|
1101
|
+
const [governanceVoteEnqueued, slashingVoteEnqueued] = votes;
|
|
1102
|
+
this.log.info(`Submitting fallback requests in slot ${slot} despite sync failure`, {
|
|
1103
|
+
slot,
|
|
1104
|
+
pruneEnqueued,
|
|
1105
|
+
governanceVoteEnqueued: !!governanceVoteEnqueued,
|
|
1106
|
+
slashingVoteEnqueued: !!slashingVoteEnqueued,
|
|
1107
|
+
});
|
|
1108
|
+
|
|
1109
|
+
// Votes are EIP-712-signed for `targetSlot` (the pipelined slot in which the multicall is
|
|
1110
|
+
// expected to mine). Delay submission to the start of `targetSlot` so the tx mines in the
|
|
1111
|
+
// slot the votes were signed for. We fire-and-forget so we don't block the sequencer's
|
|
1112
|
+
// work loop while waiting for the target slot to start, but track it so stop() can drain it.
|
|
1113
|
+
const send = publisher.sendRequestsAt(targetSlot).catch(err => {
|
|
1114
|
+
this.log.error(`Failed to publish fallback requests despite sync failure for slot ${slot}`, err, { slot });
|
|
1115
|
+
});
|
|
1116
|
+
this.pendingRequests.trackRequest(send, () => publisher.interrupt());
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1119
|
+
private async tryEnqueuePruneIfPrunable(targetSlot: SlotNumber, publisher: SequencerPublisher): Promise<boolean> {
|
|
1120
|
+
try {
|
|
1121
|
+
return await publisher.enqueuePruneIfPrunable(targetSlot);
|
|
1122
|
+
} catch (err) {
|
|
1123
|
+
this.log.error(`Failed to enqueue rollup prune for slot ${targetSlot}`, err, { targetSlot });
|
|
1124
|
+
return false;
|
|
1125
|
+
}
|
|
663
1126
|
}
|
|
664
1127
|
|
|
665
1128
|
/**
|
|
@@ -669,25 +1132,34 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
|
|
|
669
1132
|
@trackSpan('Sequencer.tryVoteWhenEscapeHatchOpen', ({ slot }) => ({ [Attributes.SLOT_NUMBER]: slot }))
|
|
670
1133
|
protected async tryVoteWhenEscapeHatchOpen(args: {
|
|
671
1134
|
slot: SlotNumber;
|
|
1135
|
+
targetSlot: SlotNumber;
|
|
672
1136
|
proposer: EthAddress | undefined;
|
|
673
1137
|
}): Promise<void> {
|
|
674
|
-
const { slot, proposer } = args;
|
|
1138
|
+
const { slot, targetSlot, proposer } = args;
|
|
675
1139
|
|
|
676
1140
|
// Prevent duplicate attempts in the same slot
|
|
677
|
-
if (this.
|
|
1141
|
+
if (this.lastSlotForFallbackAction === slot) {
|
|
678
1142
|
this.log.trace(`Already attempted to vote in slot ${slot} (escape hatch open, skipping)`);
|
|
679
1143
|
return;
|
|
680
1144
|
}
|
|
681
1145
|
|
|
682
1146
|
// Mark this slot as attempted
|
|
683
|
-
this.
|
|
1147
|
+
this.lastSlotForFallbackAction = slot;
|
|
684
1148
|
|
|
685
1149
|
const { attestorAddress, publisher } = await this.publisherFactory.create(proposer);
|
|
686
1150
|
|
|
687
|
-
this.log.debug(`Escape hatch open for slot ${slot}, attempting vote-only actions`, {
|
|
1151
|
+
this.log.debug(`Escape hatch open for slot ${slot}, attempting vote-only actions`, {
|
|
1152
|
+
slot,
|
|
1153
|
+
targetSlot,
|
|
1154
|
+
attestorAddress,
|
|
1155
|
+
});
|
|
688
1156
|
|
|
1157
|
+
// Under proposer pipelining, the multicall is expected to mine in `targetSlot` (slot + 1).
|
|
1158
|
+
// Governance and slashing votes are EIP-712-signed against the slot they will mine in, and the
|
|
1159
|
+
// L1 contract checks `msg.sender == getCurrentProposer()` using the mining slot. So we must
|
|
1160
|
+
// sign for `targetSlot` and delay submission to the start of `targetSlot`.
|
|
689
1161
|
const voter = new CheckpointVoter(
|
|
690
|
-
|
|
1162
|
+
targetSlot,
|
|
691
1163
|
publisher,
|
|
692
1164
|
attestorAddress,
|
|
693
1165
|
this.validatorClient,
|
|
@@ -706,8 +1178,17 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
|
|
|
706
1178
|
return;
|
|
707
1179
|
}
|
|
708
1180
|
|
|
709
|
-
this.log.info(`Voting in slot ${slot} (escape hatch open)`, { slot });
|
|
710
|
-
|
|
1181
|
+
this.log.info(`Voting in slot ${slot} (escape hatch open)`, { slot, targetSlot });
|
|
1182
|
+
// Votes are EIP-712-signed for `targetSlot`. Delay submission to the start of `targetSlot` so
|
|
1183
|
+
// the multicall mines in the slot the votes were signed for; otherwise the L1 contract reads
|
|
1184
|
+
// `signaler = getCurrentProposer()` against the wrong slot and signature verification fails
|
|
1185
|
+
// silently inside Multicall3. Fire-and-forget so we don't block the sequencer's work loop while
|
|
1186
|
+
// waiting for the target slot to start, mirroring tryVoteAndPruneWhenCannotBuild, but tracked so
|
|
1187
|
+
// stop() can drain it.
|
|
1188
|
+
const send = publisher.sendRequestsAt(targetSlot).catch(err => {
|
|
1189
|
+
this.log.error(`Failed to publish escape-hatch votes for slot ${slot}`, err, { slot, targetSlot });
|
|
1190
|
+
});
|
|
1191
|
+
this.pendingRequests.trackRequest(send, () => publisher.interrupt());
|
|
711
1192
|
}
|
|
712
1193
|
|
|
713
1194
|
/**
|
|
@@ -715,17 +1196,34 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
|
|
|
715
1196
|
* has been there without being invalidated and whether the sequencer is in the committee or not. We always
|
|
716
1197
|
* have the proposer try to invalidate, but if they fail, the sequencers in the committee are expected to try,
|
|
717
1198
|
* and if they fail, any sequencer will try as well.
|
|
1199
|
+
* @param pendingChainValidationStatus - The archiver's pending-chain validation status, authoritative on its own.
|
|
1200
|
+
* @param currentSlot - The wall-clock slot, used for committee lookup, the per-(checkpoint, slot) dedup guard, and logging.
|
|
718
1201
|
*/
|
|
719
1202
|
protected async considerInvalidatingCheckpoint(
|
|
720
|
-
|
|
1203
|
+
pendingChainValidationStatus: ValidateCheckpointResult,
|
|
721
1204
|
currentSlot: SlotNumber,
|
|
722
1205
|
): Promise<void> {
|
|
723
|
-
const { pendingChainValidationStatus, l1Timestamp } = syncedTo;
|
|
724
1206
|
if (pendingChainValidationStatus.valid) {
|
|
725
1207
|
return;
|
|
726
1208
|
}
|
|
727
1209
|
|
|
728
1210
|
const invalidCheckpointNumber = pendingChainValidationStatus.checkpoint.checkpointNumber;
|
|
1211
|
+
|
|
1212
|
+
// Avoid re-running the committee lookup, simulation, and submission on every tick within a slot.
|
|
1213
|
+
// The guard is keyed by (checkpoint, slot) — so a different invalid checkpoint surfacing later in
|
|
1214
|
+
// the same slot is not suppressed — and is set only after a request is successfully simulated below,
|
|
1215
|
+
// so a transient simulation failure (or thresholds not yet met) still retries on the next tick.
|
|
1216
|
+
if (
|
|
1217
|
+
this.lastInvalidationAttempt?.slot === currentSlot &&
|
|
1218
|
+
this.lastInvalidationAttempt.checkpointNumber === invalidCheckpointNumber
|
|
1219
|
+
) {
|
|
1220
|
+
this.log.trace(`Already attempted to invalidate checkpoint ${invalidCheckpointNumber} in slot ${currentSlot}`, {
|
|
1221
|
+
currentSlot,
|
|
1222
|
+
invalidCheckpointNumber,
|
|
1223
|
+
});
|
|
1224
|
+
return;
|
|
1225
|
+
}
|
|
1226
|
+
|
|
729
1227
|
const invalidCheckpointTimestamp = pendingChainValidationStatus.checkpoint.timestamp;
|
|
730
1228
|
const timeSinceChainInvalid = this.dateProvider.nowInSeconds() - Number(invalidCheckpointTimestamp);
|
|
731
1229
|
const ourValidatorAddresses = this.validatorClient.getValidatorAddresses();
|
|
@@ -735,7 +1233,6 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
|
|
|
735
1233
|
|
|
736
1234
|
const logData = {
|
|
737
1235
|
invalidL1Timestamp: invalidCheckpointTimestamp,
|
|
738
|
-
l1Timestamp,
|
|
739
1236
|
invalidCheckpoint: pendingChainValidationStatus.checkpoint,
|
|
740
1237
|
secondsBeforeInvalidatingBlockAsCommitteeMember,
|
|
741
1238
|
secondsBeforeInvalidatingBlockAsNonCommitteeMember,
|
|
@@ -788,6 +1285,10 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
|
|
|
788
1285
|
return;
|
|
789
1286
|
}
|
|
790
1287
|
|
|
1288
|
+
// We produced a valid invalidation request; record it so further ticks within this slot skip the
|
|
1289
|
+
// committee lookup, simulation, and submission above for this same invalid checkpoint.
|
|
1290
|
+
this.lastInvalidationAttempt = { slot: currentSlot, checkpointNumber: invalidCheckpointNumber };
|
|
1291
|
+
|
|
791
1292
|
this.log.info(
|
|
792
1293
|
invalidateAsCommitteeMember
|
|
793
1294
|
? `Invalidating checkpoint ${invalidCheckpointNumber} as committee member`
|
|
@@ -834,13 +1335,13 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
|
|
|
834
1335
|
});
|
|
835
1336
|
}
|
|
836
1337
|
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
private
|
|
842
|
-
const
|
|
843
|
-
return Number((this.dateProvider.now() / 1000 -
|
|
1338
|
+
/**
|
|
1339
|
+
* Wall-clock seconds elapsed since the build-frame start of the given target slot
|
|
1340
|
+
* (`now − getBuildFrameStart(targetSlot)`). May be negative if called before the build frame opens.
|
|
1341
|
+
*/
|
|
1342
|
+
private getSecondsIntoBuildFrame(targetSlot: SlotNumber): number {
|
|
1343
|
+
const buildFrameStart = this.timetable.getBuildFrameStart(targetSlot);
|
|
1344
|
+
return Number((this.dateProvider.now() / 1000 - buildFrameStart).toFixed(3));
|
|
844
1345
|
}
|
|
845
1346
|
|
|
846
1347
|
public get aztecSlotDuration() {
|
|
@@ -871,17 +1372,16 @@ export class Sequencer extends (EventEmitter as new () => TypedEventEmitter<Sequ
|
|
|
871
1372
|
public getConfig() {
|
|
872
1373
|
return this.config;
|
|
873
1374
|
}
|
|
874
|
-
|
|
875
|
-
private get l1PublishingTime(): number {
|
|
876
|
-
return this.config.l1PublishingTime ?? this.l1Constants.ethereumSlotDuration;
|
|
877
|
-
}
|
|
878
1375
|
}
|
|
879
1376
|
|
|
880
1377
|
type SequencerSyncCheckResult = {
|
|
881
1378
|
blockData?: BlockData;
|
|
882
1379
|
checkpointNumber: CheckpointNumber;
|
|
1380
|
+
checkpointedCheckpointNumber: CheckpointNumber;
|
|
883
1381
|
blockNumber: BlockNumber;
|
|
884
1382
|
archive: Fr;
|
|
885
|
-
|
|
1383
|
+
hasProposedCheckpoint: boolean;
|
|
1384
|
+
proposedCheckpointData?: ProposedCheckpointData;
|
|
1385
|
+
syncedL2Slot: SlotNumber;
|
|
886
1386
|
pendingChainValidationStatus: ValidateCheckpointResult;
|
|
887
1387
|
};
|