@aztec/sequencer-client 0.0.1-commit.a072138 → 0.0.1-commit.a5db02d
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 +281 -21
- package/dest/client/sequencer-client.d.ts +34 -11
- package/dest/client/sequencer-client.d.ts.map +1 -1
- package/dest/client/sequencer-client.js +77 -39
- package/dest/config.d.ts +32 -6
- package/dest/config.d.ts.map +1 -1
- package/dest/config.js +94 -46
- 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 -28
- 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 +51 -17
- package/dest/publisher/config.d.ts.map +1 -1
- package/dest/publisher/config.js +131 -42
- package/dest/publisher/index.d.ts +2 -1
- package/dest/publisher/index.d.ts.map +1 -1
- 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/factory.d.ts +11 -0
- package/dest/publisher/l1_tx_failed_store/factory.d.ts.map +1 -0
- package/dest/publisher/l1_tx_failed_store/factory.js +22 -0
- package/dest/publisher/l1_tx_failed_store/failed_tx_store.d.ts +58 -0
- package/dest/publisher/l1_tx_failed_store/failed_tx_store.d.ts.map +1 -0
- package/dest/publisher/l1_tx_failed_store/failed_tx_store.js +1 -0
- package/dest/publisher/l1_tx_failed_store/file_store_failed_tx_store.d.ts +15 -0
- package/dest/publisher/l1_tx_failed_store/file_store_failed_tx_store.d.ts.map +1 -0
- package/dest/publisher/l1_tx_failed_store/file_store_failed_tx_store.js +34 -0
- package/dest/publisher/l1_tx_failed_store/index.d.ts +4 -0
- package/dest/publisher/l1_tx_failed_store/index.d.ts.map +1 -0
- package/dest/publisher/l1_tx_failed_store/index.js +2 -0
- 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 +11 -5
- package/dest/publisher/sequencer-publisher-factory.d.ts.map +1 -1
- package/dest/publisher/sequencer-publisher-factory.js +27 -3
- package/dest/publisher/sequencer-publisher.d.ts +107 -67
- package/dest/publisher/sequencer-publisher.d.ts.map +1 -1
- package/dest/publisher/sequencer-publisher.js +539 -378
- 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 +690 -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 +81 -19
- package/dest/sequencer/checkpoint_proposal_job.d.ts.map +1 -1
- package/dest/sequencer/checkpoint_proposal_job.js +891 -282
- 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 +23 -8
- package/dest/sequencer/metrics.d.ts.map +1 -1
- package/dest/sequencer/metrics.js +117 -21
- 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 +181 -44
- package/dest/sequencer/sequencer.d.ts.map +1 -1
- package/dest/sequencer/sequencer.js +614 -216
- package/dest/sequencer/types.d.ts +2 -2
- package/dest/sequencer/types.d.ts.map +1 -1
- package/dest/test/index.d.ts +5 -7
- package/dest/test/index.d.ts.map +1 -1
- package/dest/test/mock_checkpoint_builder.d.ts +11 -11
- package/dest/test/mock_checkpoint_builder.d.ts.map +1 -1
- package/dest/test/mock_checkpoint_builder.js +45 -34
- package/dest/test/utils.d.ts +17 -3
- package/dest/test/utils.d.ts.map +1 -1
- package/dest/test/utils.js +28 -9
- package/package.json +28 -28
- package/src/client/sequencer-client.ts +110 -47
- package/src/config.ts +120 -55
- 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 +20 -89
- package/src/global_variable_builder/index.ts +3 -1
- package/src/publisher/config.ts +173 -40
- package/src/publisher/index.ts +3 -0
- package/src/publisher/l1_to_l2_messaging.ts +85 -0
- package/src/publisher/l1_tx_failed_store/factory.ts +32 -0
- package/src/publisher/l1_tx_failed_store/failed_tx_store.ts +57 -0
- package/src/publisher/l1_tx_failed_store/file_store_failed_tx_store.ts +46 -0
- package/src/publisher/l1_tx_failed_store/index.ts +3 -0
- package/src/publisher/sequencer-bundle-simulator.ts +254 -0
- package/src/publisher/sequencer-publisher-factory.ts +38 -9
- package/src/publisher/sequencer-publisher.ts +628 -469
- 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 +796 -0
- package/src/sequencer/automine/index.ts +6 -0
- package/src/sequencer/checkpoint_proposal_job.ts +1083 -305
- 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 +132 -25
- package/src/sequencer/requests_tracker.ts +43 -0
- package/src/sequencer/sequencer.ts +728 -241
- package/src/sequencer/types.ts +1 -1
- package/src/test/index.ts +4 -6
- package/src/test/mock_checkpoint_builder.ts +63 -49
- package/src/test/utils.ts +64 -10
- package/dest/sequencer/timetable.d.ts +0 -90
- package/dest/sequencer/timetable.d.ts.map +0 -1
- package/dest/sequencer/timetable.js +0 -226
- package/src/sequencer/README.md +0 -531
- package/src/sequencer/timetable.ts +0 -282
|
@@ -435,23 +435,24 @@ function applyDecs2203RFactory() {
|
|
|
435
435
|
function _apply_decs_2203_r(targetClass, memberDecs, classDecs, parentClass) {
|
|
436
436
|
return (_apply_decs_2203_r = applyDecs2203RFactory())(targetClass, memberDecs, classDecs, parentClass);
|
|
437
437
|
}
|
|
438
|
-
var _dec, _dec1, _dec2, _dec3, _dec4, _dec5, _dec6,
|
|
439
|
-
import {
|
|
440
|
-
import {
|
|
441
|
-
import { BlockNumber, IndexWithinCheckpoint } from '@aztec/foundation/branded-types';
|
|
438
|
+
var _dec, _dec1, _dec2, _dec3, _dec4, _dec5, _dec6, _initProto;
|
|
439
|
+
import { PROPOSER_PIPELINING_SLOT_OFFSET } from '@aztec/epoch-cache';
|
|
440
|
+
import { BlockNumber, CheckpointNumber, IndexWithinCheckpoint, SlotNumber } from '@aztec/foundation/branded-types';
|
|
442
441
|
import { randomInt } from '@aztec/foundation/crypto/random';
|
|
443
|
-
import {
|
|
442
|
+
import { flipSignature, generateRecoverableSignature, generateUnrecoverableSignature } from '@aztec/foundation/crypto/secp256k1-signer';
|
|
443
|
+
import { InterruptError, TimeoutError } from '@aztec/foundation/error';
|
|
444
444
|
import { filter } from '@aztec/foundation/iterator';
|
|
445
445
|
import { createLogger } from '@aztec/foundation/log';
|
|
446
|
-
import {
|
|
446
|
+
import { InterruptibleSleep } from '@aztec/foundation/sleep';
|
|
447
447
|
import { Timer } from '@aztec/foundation/timer';
|
|
448
448
|
import { isErrorClass, unfreeze } from '@aztec/foundation/types';
|
|
449
|
-
import { CommitteeAttestationsAndSigners, MaliciousCommitteeAttestationsAndSigners } from '@aztec/stdlib/block';
|
|
450
|
-
import {
|
|
449
|
+
import { CommitteeAttestationsAndSigners, MaliciousCommitteeAttestationsAndSigners, MaliciousYParityCommitteeAttestationsAndSigners } from '@aztec/stdlib/block';
|
|
450
|
+
import { buildCheckpointSimulationOverridesPlan, getPreviousCheckpointOutHashes, validateCheckpoint } from '@aztec/stdlib/checkpoint';
|
|
451
|
+
import { computeQuorum, getTimestampForSlot } from '@aztec/stdlib/epoch-helpers';
|
|
451
452
|
import { Gas } from '@aztec/stdlib/gas';
|
|
452
|
-
import {
|
|
453
|
+
import { InsufficientValidTxsError } from '@aztec/stdlib/interfaces/server';
|
|
453
454
|
import { computeInHashFromL1ToL2Messages } from '@aztec/stdlib/messaging';
|
|
454
|
-
import { orderAttestations } from '@aztec/stdlib/p2p';
|
|
455
|
+
import { orderAttestations, trimAttestations } from '@aztec/stdlib/p2p';
|
|
455
456
|
import { AttestationTimeoutError } from '@aztec/stdlib/validators';
|
|
456
457
|
import { Attributes, trackSpan } from '@aztec/telemetry-client';
|
|
457
458
|
import { DutyAlreadySignedError, SlashingProtectionError } from '@aztec/validator-ha-signer/errors';
|
|
@@ -459,23 +460,25 @@ import { CheckpointVoter } from './checkpoint_voter.js';
|
|
|
459
460
|
import { SequencerInterruptedError } from './errors.js';
|
|
460
461
|
import { SequencerState } from './utils.js';
|
|
461
462
|
/** How much time to sleep while waiting for min transactions to accumulate for a block */ const TXS_POLLING_MS = 500;
|
|
463
|
+
const ARCHIVER_SYNC_POLLING_MS = 200;
|
|
462
464
|
_dec = trackSpan('CheckpointProposalJob.execute'), _dec1 = trackSpan('CheckpointProposalJob.proposeCheckpoint', function() {
|
|
463
465
|
return {
|
|
464
466
|
// nullish operator needed for tests
|
|
465
467
|
[Attributes.COINBASE]: this.validatorClient.getCoinbaseForAttestor(this.attestorAddress)?.toString(),
|
|
466
|
-
[Attributes.SLOT_NUMBER]: this.
|
|
468
|
+
[Attributes.SLOT_NUMBER]: this.targetSlot
|
|
467
469
|
};
|
|
468
|
-
}), _dec2 = trackSpan('CheckpointProposalJob.buildBlocksForCheckpoint'), _dec3 = trackSpan('CheckpointProposalJob.waitUntilNextSubslot'), _dec4 = trackSpan('CheckpointProposalJob.buildSingleBlock'), _dec5 = trackSpan('CheckpointProposalJob.waitForMinTxs'), _dec6 = trackSpan('CheckpointProposalJob.waitForAttestations')
|
|
470
|
+
}), _dec2 = trackSpan('CheckpointProposalJob.buildBlocksForCheckpoint'), _dec3 = trackSpan('CheckpointProposalJob.waitUntilNextSubslot'), _dec4 = trackSpan('CheckpointProposalJob.buildSingleBlock'), _dec5 = trackSpan('CheckpointProposalJob.waitForMinTxs'), _dec6 = trackSpan('CheckpointProposalJob.waitForAttestations');
|
|
469
471
|
/**
|
|
470
472
|
* Handles the execution of a checkpoint proposal after the initial preparation phase.
|
|
471
473
|
* This includes building blocks, collecting attestations, and publishing the checkpoint to L1,
|
|
472
474
|
* as well as enqueueing votes for slashing and governance proposals. This class is created from
|
|
473
475
|
* the Sequencer once the check for being the proposer for the slot has succeeded.
|
|
474
476
|
*/ export class CheckpointProposalJob {
|
|
475
|
-
|
|
476
|
-
|
|
477
|
+
targetSlot;
|
|
478
|
+
targetEpoch;
|
|
477
479
|
checkpointNumber;
|
|
478
480
|
syncedToBlockNumber;
|
|
481
|
+
checkpointedCheckpointNumber;
|
|
479
482
|
proposer;
|
|
480
483
|
publisher;
|
|
481
484
|
attestorAddress;
|
|
@@ -489,15 +492,19 @@ _dec = trackSpan('CheckpointProposalJob.execute'), _dec1 = trackSpan('Checkpoint
|
|
|
489
492
|
checkpointsBuilder;
|
|
490
493
|
blockSink;
|
|
491
494
|
l1Constants;
|
|
495
|
+
signatureContext;
|
|
492
496
|
config;
|
|
493
497
|
timetable;
|
|
494
498
|
slasherClient;
|
|
495
499
|
epochCache;
|
|
496
500
|
dateProvider;
|
|
497
501
|
metrics;
|
|
502
|
+
checkpointMetrics;
|
|
498
503
|
eventEmitter;
|
|
504
|
+
pendingRequests;
|
|
499
505
|
setStateFn;
|
|
500
506
|
tracer;
|
|
507
|
+
proposedCheckpointData;
|
|
501
508
|
static{
|
|
502
509
|
({ e: [_initProto] } = _apply_decs_2203_r(this, [
|
|
503
510
|
[
|
|
@@ -534,21 +541,31 @@ _dec = trackSpan('CheckpointProposalJob.execute'), _dec1 = trackSpan('Checkpoint
|
|
|
534
541
|
_dec6,
|
|
535
542
|
2,
|
|
536
543
|
"waitForAttestations"
|
|
537
|
-
],
|
|
538
|
-
[
|
|
539
|
-
_dec7,
|
|
540
|
-
2,
|
|
541
|
-
"waitUntilTimeInSlot"
|
|
542
544
|
]
|
|
543
545
|
], []));
|
|
544
546
|
}
|
|
545
547
|
log;
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
548
|
+
checkpointEventLog;
|
|
549
|
+
interruptibleSleep;
|
|
550
|
+
interrupted;
|
|
551
|
+
/**
|
|
552
|
+
* Chain state overrides built once per slot in proposeCheckpoint after the checkpoint is
|
|
553
|
+
* complete. Carries the pending parent override (archive + slot + fee header) for pipelining,
|
|
554
|
+
* or the invalidation pending override when rolling back. Consumed by
|
|
555
|
+
* publisher.validateBlockHeader before broadcast.
|
|
556
|
+
*/ checkpointSimulationOverridesPlan;
|
|
557
|
+
getSignatureContext() {
|
|
558
|
+
return this.signatureContext;
|
|
559
|
+
}
|
|
560
|
+
constructor(targetSlot, targetEpoch, checkpointNumber, syncedToBlockNumber, checkpointedCheckpointNumber, // TODO(palla/mbps): Can we remove the proposer in favor of attestorAddress? Need to check fisherman-node flows.
|
|
561
|
+
proposer, publisher, attestorAddress, invalidateCheckpoint, validatorClient, globalsBuilder, p2pClient, worldState, l1ToL2MessageSource, l2BlockSource, checkpointsBuilder, blockSink, l1Constants, signatureContext, config, timetable, slasherClient, epochCache, dateProvider, metrics, checkpointMetrics, eventEmitter, // Shared with the owning sequencer, which drains it during shutdown; the fire-and-forget L1
|
|
562
|
+
// submission this job backgrounds is tracked here rather than in a job-local tracker.
|
|
563
|
+
pendingRequests, setStateFn, tracer, bindings, proposedCheckpointData){
|
|
564
|
+
this.targetSlot = targetSlot;
|
|
565
|
+
this.targetEpoch = targetEpoch;
|
|
550
566
|
this.checkpointNumber = checkpointNumber;
|
|
551
567
|
this.syncedToBlockNumber = syncedToBlockNumber;
|
|
568
|
+
this.checkpointedCheckpointNumber = checkpointedCheckpointNumber;
|
|
552
569
|
this.proposer = proposer;
|
|
553
570
|
this.publisher = publisher;
|
|
554
571
|
this.attestorAddress = attestorAddress;
|
|
@@ -562,58 +579,351 @@ _dec = trackSpan('CheckpointProposalJob.execute'), _dec1 = trackSpan('Checkpoint
|
|
|
562
579
|
this.checkpointsBuilder = checkpointsBuilder;
|
|
563
580
|
this.blockSink = blockSink;
|
|
564
581
|
this.l1Constants = l1Constants;
|
|
582
|
+
this.signatureContext = signatureContext;
|
|
565
583
|
this.config = config;
|
|
566
584
|
this.timetable = timetable;
|
|
567
585
|
this.slasherClient = slasherClient;
|
|
568
586
|
this.epochCache = epochCache;
|
|
569
587
|
this.dateProvider = dateProvider;
|
|
570
588
|
this.metrics = metrics;
|
|
589
|
+
this.checkpointMetrics = checkpointMetrics;
|
|
571
590
|
this.eventEmitter = eventEmitter;
|
|
591
|
+
this.pendingRequests = pendingRequests;
|
|
572
592
|
this.setStateFn = setStateFn;
|
|
573
593
|
this.tracer = tracer;
|
|
574
|
-
|
|
594
|
+
this.proposedCheckpointData = proposedCheckpointData;
|
|
595
|
+
this.interruptibleSleep = (_initProto(this), new InterruptibleSleep());
|
|
596
|
+
this.interrupted = false;
|
|
575
597
|
this.log = createLogger('sequencer:checkpoint-proposal', {
|
|
576
598
|
...bindings,
|
|
577
|
-
instanceId: `slot-${
|
|
599
|
+
instanceId: `slot-${this.getBuildSlot()}`
|
|
600
|
+
});
|
|
601
|
+
this.checkpointEventLog = createLogger('sequencer:checkpoint-events', {
|
|
602
|
+
...bindings,
|
|
603
|
+
instanceId: `slot-${this.getBuildSlot()}`
|
|
604
|
+
});
|
|
605
|
+
}
|
|
606
|
+
/**
|
|
607
|
+
* The wall-clock slot during which this job builds, i.e. the slot one before {@link targetSlot} under
|
|
608
|
+
* proposer pipelining. Also the slot of the parent checkpoint this job builds on top of.
|
|
609
|
+
*/ getBuildSlot() {
|
|
610
|
+
return SlotNumber(this.targetSlot - PROPOSER_PIPELINING_SLOT_OFFSET);
|
|
611
|
+
}
|
|
612
|
+
/**
|
|
613
|
+
* Sets the sequencer state for this job, reporting the target slot the checkpoint is being proposed for
|
|
614
|
+
* (not the wall-clock build slot). The slot is informational on the event payload/metrics; the job knows
|
|
615
|
+
* its own target slot, so callers only pass the state.
|
|
616
|
+
*/ setState(state) {
|
|
617
|
+
this.setStateFn(state, this.targetSlot);
|
|
618
|
+
}
|
|
619
|
+
/** Interrupts job-owned waits, including the publisher's send-at-slot sleep, so shutdown can finish. */ interrupt() {
|
|
620
|
+
this.interrupted = true;
|
|
621
|
+
this.interruptibleSleep.interrupt(true);
|
|
622
|
+
this.publisher.interrupt();
|
|
623
|
+
}
|
|
624
|
+
async awaitInterruptibleSleep(ms) {
|
|
625
|
+
if (this.interrupted) {
|
|
626
|
+
throw new SequencerInterruptedError();
|
|
627
|
+
}
|
|
628
|
+
if (ms <= 0) {
|
|
629
|
+
return;
|
|
630
|
+
}
|
|
631
|
+
try {
|
|
632
|
+
await this.interruptibleSleep.sleep(ms);
|
|
633
|
+
} catch (err) {
|
|
634
|
+
if (err instanceof InterruptError) {
|
|
635
|
+
throw new SequencerInterruptedError();
|
|
636
|
+
}
|
|
637
|
+
throw err;
|
|
638
|
+
}
|
|
639
|
+
}
|
|
640
|
+
logCheckpointEvent(eventName, message, fields) {
|
|
641
|
+
this.checkpointEventLog.debug(message, {
|
|
642
|
+
eventName: `sequencer-checkpoint-${eventName}`,
|
|
643
|
+
...fields
|
|
578
644
|
});
|
|
579
645
|
}
|
|
580
646
|
/**
|
|
581
647
|
* Executes the checkpoint proposal job.
|
|
582
|
-
*
|
|
648
|
+
* Builds blocks, assembles checkpoint, and broadcasts the proposal (blocking).
|
|
649
|
+
* Attestation collection, signing, and L1 submission are backgrounded so the
|
|
650
|
+
* work loop can return to IDLE immediately for consecutive slot proposals.
|
|
651
|
+
* Returns the built checkpoint if successful, undefined otherwise.
|
|
583
652
|
*/ async execute() {
|
|
584
653
|
// Enqueue governance and slashing votes (returns promises that will be awaited later)
|
|
585
654
|
// In fisherman mode, we simulate slashing but don't actually publish to L1
|
|
586
655
|
// These are constant for the whole slot, so we only enqueue them once
|
|
587
|
-
const votesPromises = new CheckpointVoter(this.
|
|
588
|
-
// Build
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
656
|
+
const votesPromises = new CheckpointVoter(this.targetSlot, this.publisher, this.attestorAddress, this.validatorClient, this.slasherClient, this.l1Constants, this.config, this.metrics, this.log).enqueueVotes();
|
|
657
|
+
// Build blocks, assemble checkpoint, and broadcast proposal (BLOCKING).
|
|
658
|
+
// Returns after broadcast — attestation collection is deferred.
|
|
659
|
+
const broadcast = await this.proposeCheckpoint();
|
|
660
|
+
if (!broadcast) {
|
|
661
|
+
await Promise.all(votesPromises);
|
|
662
|
+
// Still submit votes even without a checkpoint.
|
|
663
|
+
// Under proposer pipelining, vote-offenses signatures are EIP-712-bound to `targetSlot`
|
|
664
|
+
// (the pipelined slot in which the multicall is expected to mine). Submitting at the
|
|
665
|
+
// wall-clock time would let the multicall mine in a different L2 slot, causing
|
|
666
|
+
// signature verification to fail silently inside Multicall3. Delay submission to the
|
|
667
|
+
// start of `targetSlot` so the tx mines in the slot the vote was signed for.
|
|
668
|
+
if (!this.config.fishermanMode) {
|
|
669
|
+
this.pendingRequests.trackRequest(this.publisher.sendRequestsAt(this.targetSlot), ()=>this.interrupt());
|
|
670
|
+
}
|
|
671
|
+
return undefined;
|
|
594
672
|
}
|
|
673
|
+
const { checkpoint } = broadcast;
|
|
674
|
+
this.metrics.recordCheckpointProposalSuccess();
|
|
595
675
|
// Do not post anything to L1 if we are fishermen, but do perform L1 fee analysis
|
|
596
676
|
if (this.config.fishermanMode) {
|
|
597
677
|
await this.handleCheckpointEndAsFisherman(checkpoint);
|
|
598
|
-
return;
|
|
678
|
+
return checkpoint;
|
|
599
679
|
}
|
|
600
|
-
//
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
680
|
+
// Background the attestation → signing → L1 pipeline so the work loop is unblocked
|
|
681
|
+
this.pendingRequests.trackRequest(this.waitForAttestationsAndEnqueueSubmissionAsync(broadcast, votesPromises), ()=>this.interrupt());
|
|
682
|
+
// Return the built checkpoint immediately — the work loop is now unblocked
|
|
683
|
+
return checkpoint;
|
|
684
|
+
}
|
|
685
|
+
/**
|
|
686
|
+
* Background pipeline: collects attestations, signs them, enqueues the checkpoint, and submits to L1.
|
|
687
|
+
* Runs as a fire-and-forget task tracked in the sequencer's shared tracker so the work loop is unblocked.
|
|
688
|
+
*/ async waitForAttestationsAndEnqueueSubmissionAsync(broadcast, votesPromises) {
|
|
689
|
+
const { checkpoint } = broadcast;
|
|
690
|
+
try {
|
|
691
|
+
// Wait for all votes actions, enqueued at the beginning, to resolve
|
|
692
|
+
await Promise.all(votesPromises);
|
|
693
|
+
// Try to collect attestations from the committee
|
|
694
|
+
const signedAttestations = await this.getSignedCommitteeAttestations(broadcast);
|
|
695
|
+
// Wait for the previous checkpoint to land on L1 before submitting, so we can check it
|
|
696
|
+
// matches the proposed checkpoint we used as parent, and has valid attestations.
|
|
697
|
+
if (signedAttestations && await this.waitForValidParentCheckpointOnL1()) {
|
|
698
|
+
await this.enqueueCheckpointForSubmission({
|
|
699
|
+
checkpoint,
|
|
700
|
+
...signedAttestations
|
|
701
|
+
});
|
|
702
|
+
}
|
|
703
|
+
// If we failed to collect attestations, at least check if we need to issue an invalidation
|
|
704
|
+
if (!signedAttestations && await this.waitForSyncedL2SlotNumber(this.getBuildSlot())) {
|
|
705
|
+
const validationStatus = await this.l2BlockSource.getPendingChainValidationStatus();
|
|
706
|
+
if (!validationStatus.valid) {
|
|
707
|
+
this.log.warn(`Checkpoint ${validationStatus.checkpoint.checkpointNumber} has invalid attestations, enqueuing invalidation in spite of attestation collection failure`, {
|
|
708
|
+
checkpoint: validationStatus.checkpoint,
|
|
709
|
+
reason: validationStatus.reason
|
|
710
|
+
});
|
|
711
|
+
await this.enqueueInvalidation(validationStatus);
|
|
712
|
+
}
|
|
713
|
+
}
|
|
714
|
+
// Send whatever was enqueued: votes + (propose | invalidation | nothing).
|
|
715
|
+
const l1Response = await this.publisher.sendRequestsAt(this.targetSlot);
|
|
716
|
+
const proposedAction = l1Response?.successfulActions.find((a)=>a === 'propose');
|
|
717
|
+
if (proposedAction) {
|
|
718
|
+
this.logCheckpointEvent('published', `Checkpoint published for slot ${this.targetSlot}`, {
|
|
719
|
+
slot: this.targetSlot,
|
|
720
|
+
checkpointNumber: this.checkpointNumber,
|
|
721
|
+
successfulActions: l1Response?.successfulActions,
|
|
722
|
+
sentActions: l1Response?.sentActions
|
|
723
|
+
});
|
|
724
|
+
this.eventEmitter.emit('checkpoint-published', {
|
|
725
|
+
checkpoint: this.checkpointNumber,
|
|
726
|
+
slot: this.targetSlot
|
|
727
|
+
});
|
|
728
|
+
const coinbase = checkpoint.header.coinbase;
|
|
729
|
+
await this.metrics.incFilledSlot(this.publisher.getSenderAddress().toString(), coinbase);
|
|
730
|
+
} else {
|
|
731
|
+
this.logCheckpointEvent('publish-failed', `Checkpoint publish failed for slot ${this.targetSlot}`, {
|
|
732
|
+
slot: this.targetSlot,
|
|
733
|
+
checkpointNumber: this.checkpointNumber,
|
|
734
|
+
successfulActions: l1Response?.successfulActions,
|
|
735
|
+
failedActions: l1Response?.failedActions,
|
|
736
|
+
sentActions: l1Response?.sentActions,
|
|
737
|
+
expiredActions: l1Response?.expiredActions,
|
|
738
|
+
reason: 'propose_action_not_successful'
|
|
739
|
+
});
|
|
740
|
+
this.log.warn(`Checkpoint publish failed for slot ${this.targetSlot}`, {
|
|
741
|
+
slot: this.targetSlot,
|
|
742
|
+
checkpointNumber: this.checkpointNumber,
|
|
743
|
+
successfulActions: l1Response?.successfulActions,
|
|
744
|
+
failedActions: l1Response?.failedActions,
|
|
745
|
+
sentActions: l1Response?.sentActions,
|
|
746
|
+
expiredActions: l1Response?.expiredActions,
|
|
747
|
+
reason: 'propose_action_not_successful'
|
|
748
|
+
});
|
|
749
|
+
this.eventEmitter.emit('checkpoint-publish-failed', {
|
|
750
|
+
...l1Response,
|
|
751
|
+
slot: this.targetSlot
|
|
752
|
+
});
|
|
753
|
+
this.metrics.recordPipelineDiscard();
|
|
754
|
+
}
|
|
755
|
+
} catch (err) {
|
|
756
|
+
if (err instanceof SequencerInterruptedError) {
|
|
757
|
+
return;
|
|
758
|
+
}
|
|
759
|
+
this.logCheckpointEvent('publish-failed', `Checkpoint publish failed for slot ${this.targetSlot}`, {
|
|
760
|
+
slot: this.targetSlot,
|
|
761
|
+
checkpointNumber: this.checkpointNumber,
|
|
762
|
+
reason: err instanceof Error ? err.message : String(err)
|
|
763
|
+
});
|
|
764
|
+
this.log.error(`Background attestation/L1 pipeline failed for slot ${this.targetSlot}`, err, {
|
|
765
|
+
slot: this.targetSlot,
|
|
766
|
+
checkpointNumber: this.checkpointNumber,
|
|
767
|
+
reason: err instanceof Error ? err.message : String(err)
|
|
607
768
|
});
|
|
608
|
-
const coinbase = checkpoint?.header.coinbase;
|
|
609
|
-
await this.metrics.incFilledSlot(this.publisher.getSenderAddress().toString(), coinbase);
|
|
610
|
-
return checkpoint;
|
|
611
|
-
} else if (checkpoint) {
|
|
612
769
|
this.eventEmitter.emit('checkpoint-publish-failed', {
|
|
613
|
-
|
|
614
|
-
|
|
770
|
+
slot: this.targetSlot
|
|
771
|
+
});
|
|
772
|
+
this.metrics.recordPipelineDiscard();
|
|
773
|
+
}
|
|
774
|
+
}
|
|
775
|
+
/** Enqueues the checkpoint for L1 submission. Called after pipeline sleep in execute(). */ async enqueueCheckpointForSubmission(result) {
|
|
776
|
+
const { checkpoint, attestations, attestationsSignature } = result;
|
|
777
|
+
this.setState(SequencerState.PUBLISHING_CHECKPOINT);
|
|
778
|
+
// Latest L1 block the propose can still land in for the target slot: the last Ethereum block inside
|
|
779
|
+
// the target slot (`target_slot_start + S - E`). This is one ethereum slot later than
|
|
780
|
+
// `attestation_deadline` (= last_ethereum_block_in_target_slot - E), which bounds when validators must
|
|
781
|
+
// have signed, not when the proposer must have sent. Using the attestation deadline here is too tight:
|
|
782
|
+
// attestations are collected up to (and, when not enforcing, past) it, so the propose tx would be
|
|
783
|
+
// enqueued already expired and time out before it can mine.
|
|
784
|
+
const lastL1BlockInTargetSlot = Number(getTimestampForSlot(this.targetSlot, this.l1Constants)) + this.l1Constants.slotDuration - this.l1Constants.ethereumSlotDuration;
|
|
785
|
+
const txTimeoutAt = new Date(lastL1BlockInTargetSlot * 1000);
|
|
786
|
+
// If we have been configured to potentially skip publishing checkpoint then roll the dice here
|
|
787
|
+
if (this.config.skipPublishingCheckpointsPercent !== undefined && this.config.skipPublishingCheckpointsPercent > 0) {
|
|
788
|
+
const roll = Math.max(0, randomInt(100));
|
|
789
|
+
if (roll < this.config.skipPublishingCheckpointsPercent) {
|
|
790
|
+
this.log.warn(`Skipping publishing proposal for checkpoint ${checkpoint.number}. Configured percentage: ${this.config.skipPublishingCheckpointsPercent}, generated value: ${roll}`);
|
|
791
|
+
return;
|
|
792
|
+
}
|
|
793
|
+
}
|
|
794
|
+
await this.publisher.enqueueProposeCheckpoint(checkpoint, attestations, attestationsSignature, {
|
|
795
|
+
txTimeoutAt
|
|
796
|
+
});
|
|
797
|
+
}
|
|
798
|
+
/**
|
|
799
|
+
* Wait until the archiver syncs past the given L2 slot number.
|
|
800
|
+
* The deadline is the end of `this.targetSlot`, beyond which any pipelined work would miss its
|
|
801
|
+
* L1 submission window and is no longer useful.
|
|
802
|
+
*/ async waitForSyncedL2SlotNumber(waitForSlot) {
|
|
803
|
+
const targetSlotStart = Number(getTimestampForSlot(this.targetSlot, this.l1Constants));
|
|
804
|
+
const targetSlotEndMs = (targetSlotStart + this.l1Constants.slotDuration) * 1000;
|
|
805
|
+
const syncDelayTolerance = this.l1Constants.ethereumSlotDuration * 2 * 1000;
|
|
806
|
+
const timeoutSeconds = Math.max(0.1, (targetSlotEndMs + syncDelayTolerance - this.dateProvider.now()) / 1000);
|
|
807
|
+
try {
|
|
808
|
+
const timer = new Timer();
|
|
809
|
+
while(true){
|
|
810
|
+
const syncedSlot = await this.l2BlockSource.getSyncedL2SlotNumber();
|
|
811
|
+
if (syncedSlot !== undefined && syncedSlot >= waitForSlot) {
|
|
812
|
+
return true;
|
|
813
|
+
}
|
|
814
|
+
if (timeoutSeconds && timer.s() > timeoutSeconds) {
|
|
815
|
+
throw new TimeoutError(`Timeout awaiting archiver sync past slot ${waitForSlot}`);
|
|
816
|
+
}
|
|
817
|
+
await this.awaitInterruptibleSleep(ARCHIVER_SYNC_POLLING_MS);
|
|
818
|
+
}
|
|
819
|
+
} catch (err) {
|
|
820
|
+
if (err instanceof SequencerInterruptedError) {
|
|
821
|
+
throw err;
|
|
822
|
+
}
|
|
823
|
+
this.log.warn(`Archiver did not sync L1 past slot ${waitForSlot} before slot ${this.targetSlot} expired, discarding pipelined work`, {
|
|
824
|
+
checkpointNumber: this.checkpointNumber
|
|
825
|
+
});
|
|
826
|
+
this.emitPipelinedCheckpointDiscarded('archiver-sync-timeout');
|
|
827
|
+
return false;
|
|
828
|
+
}
|
|
829
|
+
}
|
|
830
|
+
/**
|
|
831
|
+
* Waits for the parent checkpoint to land on L1 before submitting a pipelined checkpoint.
|
|
832
|
+
* Polls until the archiver has synced L1 past the parent's slot, then verifies:
|
|
833
|
+
* - If we built on a proposed parent: it must have landed on L1 with matching hash and valid attestations.
|
|
834
|
+
* - If we built without a proposed parent: no new checkpoint must have appeared for that slot.
|
|
835
|
+
* If the parent has invalid attestations, enqueues an invalidation. Returns whether to proceed with the proposal.
|
|
836
|
+
*/ async waitForValidParentCheckpointOnL1() {
|
|
837
|
+
if (this.config.skipWaitForValidParentCheckpointOnL1) {
|
|
838
|
+
this.log.warn(`Skipping waitForValidParentCheckpointOnL1 due to test configuration`, {
|
|
839
|
+
checkpointNumber: this.checkpointNumber
|
|
840
|
+
});
|
|
841
|
+
return true;
|
|
842
|
+
}
|
|
843
|
+
const parentCheckpointNumber = CheckpointNumber(this.checkpointNumber - 1);
|
|
844
|
+
// Wait until archiver has synced L1 past the parent's slot (the build slot, one before targetSlot)
|
|
845
|
+
if (!await this.waitForSyncedL2SlotNumber(this.getBuildSlot())) {
|
|
846
|
+
return false;
|
|
847
|
+
}
|
|
848
|
+
const tips = await this.l2BlockSource.getL2Tips();
|
|
849
|
+
const checkpointedNumber = tips.checkpointed.checkpoint.number;
|
|
850
|
+
// We built on top of a proposed checkpoint. Verify it landed on L1 as expected.
|
|
851
|
+
if (this.proposedCheckpointData) {
|
|
852
|
+
// After syncing from L1 we see the chain tip has invalid attestations. This means the parent checkpoint was posted
|
|
853
|
+
// with invalid attestations, or it built on top of something with invalid attestations and didnt invalidate them.
|
|
854
|
+
// Either way, we thought our parent would be valid, so we have to throw away our work. But at least we'll try and
|
|
855
|
+
// invalidate on L1 so we clean up the chain for the next proposer. And we'll slash them, but that's handled elsewhere.
|
|
856
|
+
const validationStatus = await this.l2BlockSource.getPendingChainValidationStatus();
|
|
857
|
+
if (!validationStatus.valid) {
|
|
858
|
+
this.log.warn(`Parent checkpoint ${parentCheckpointNumber} has invalid attestations, discarding pipelined work`, {
|
|
859
|
+
checkpointNumber: this.checkpointNumber,
|
|
860
|
+
reason: validationStatus.reason
|
|
861
|
+
});
|
|
862
|
+
this.emitPipelinedCheckpointDiscarded('parent-invalid-attestations');
|
|
863
|
+
await this.enqueueInvalidation(validationStatus);
|
|
864
|
+
return false;
|
|
865
|
+
}
|
|
866
|
+
// The pending chain is valid. But did the parent checkpoint land on L1 at all?
|
|
867
|
+
if (checkpointedNumber < parentCheckpointNumber) {
|
|
868
|
+
this.log.warn(`Parent checkpoint ${parentCheckpointNumber} did not land on L1, discarding pipelined work`, {
|
|
869
|
+
checkpointNumber: this.checkpointNumber,
|
|
870
|
+
checkpointedNumber
|
|
871
|
+
});
|
|
872
|
+
this.emitPipelinedCheckpointDiscarded('parent-not-on-l1');
|
|
873
|
+
return false;
|
|
874
|
+
}
|
|
875
|
+
// It landed. But is it the one we were expecting?
|
|
876
|
+
const expectedHash = this.proposedCheckpointData.header.hash().toString();
|
|
877
|
+
if (tips.checkpointed.checkpoint.hash !== expectedHash) {
|
|
878
|
+
this.log.warn(`Parent checkpoint ${parentCheckpointNumber} hash mismatch on L1, discarding pipelined work`, {
|
|
879
|
+
checkpointNumber: this.checkpointNumber,
|
|
880
|
+
expectedHash,
|
|
881
|
+
actualHash: tips.checkpointed.checkpoint.hash
|
|
882
|
+
});
|
|
883
|
+
this.emitPipelinedCheckpointDiscarded('parent-hash-mismatch');
|
|
884
|
+
return false;
|
|
885
|
+
}
|
|
886
|
+
return true;
|
|
887
|
+
} else {
|
|
888
|
+
// We didn't see a proposed checkpoint at build time, so we built on checkpointed parent from two slots ago.
|
|
889
|
+
// But if a new checkpoint for the previous slot appeared on L1 in the meantime, our checkpoint assumed the wrong parent,
|
|
890
|
+
// so we have to discard our work. This can happen if we're somehow cut off from p2p and fail to see the checkpoint
|
|
891
|
+
// proposal for the previous slot.
|
|
892
|
+
if (checkpointedNumber > parentCheckpointNumber) {
|
|
893
|
+
this.log.warn(`Unexpected checkpoint ${checkpointedNumber} landed on L1 after we built on top of parent ${parentCheckpointNumber}, discarding pipelined work`, {
|
|
894
|
+
checkpointNumber: this.checkpointNumber,
|
|
895
|
+
checkpointedNumber
|
|
896
|
+
});
|
|
897
|
+
this.emitPipelinedCheckpointDiscarded('unexpected-parent-appeared');
|
|
898
|
+
return false;
|
|
899
|
+
}
|
|
900
|
+
return true;
|
|
901
|
+
}
|
|
902
|
+
}
|
|
903
|
+
/** Emits the pipelined-checkpoint-discarded event and records the metric. */ emitPipelinedCheckpointDiscarded(reason) {
|
|
904
|
+
this.metrics.recordPipelineParentCheckpointMismatch(reason);
|
|
905
|
+
this.eventEmitter.emit('pipelined-checkpoint-discarded', {
|
|
906
|
+
slot: this.targetSlot,
|
|
907
|
+
checkpointNumber: this.checkpointNumber,
|
|
908
|
+
reason
|
|
909
|
+
});
|
|
910
|
+
}
|
|
911
|
+
/** Simulates and enqueues an invalidation request for the invalid parent checkpoint. */ async enqueueInvalidation(validationStatus) {
|
|
912
|
+
if (this.config.skipInvalidateBlockAsProposer) {
|
|
913
|
+
this.log.warn(`Skipping checkpoint invalidation as proposer due to test configuration`);
|
|
914
|
+
return;
|
|
915
|
+
}
|
|
916
|
+
const invalidateRequest = await this.publisher.simulateInvalidateCheckpoint(validationStatus);
|
|
917
|
+
if (invalidateRequest) {
|
|
918
|
+
const submissionSlotStart = Number(getTimestampForSlot(this.targetSlot, this.l1Constants));
|
|
919
|
+
const txTimeoutAt = new Date((submissionSlotStart + this.l1Constants.slotDuration) * 1000);
|
|
920
|
+
this.publisher.enqueueInvalidateCheckpoint(invalidateRequest, {
|
|
921
|
+
txTimeoutAt
|
|
922
|
+
});
|
|
923
|
+
} else {
|
|
924
|
+
this.log.info(`Invalidation simulation returned undefined, checkpoint may have been removed already`, {
|
|
925
|
+
checkpointNumber: this.checkpointNumber
|
|
615
926
|
});
|
|
616
|
-
return undefined;
|
|
617
927
|
}
|
|
618
928
|
}
|
|
619
929
|
async proposeCheckpoint() {
|
|
@@ -624,29 +934,75 @@ _dec = trackSpan('CheckpointProposalJob.execute'), _dec1 = trackSpan('Checkpoint
|
|
|
624
934
|
hasError: false
|
|
625
935
|
};
|
|
626
936
|
try {
|
|
937
|
+
const now = this.dateProvider.now();
|
|
938
|
+
if (this.proposedCheckpointData) {
|
|
939
|
+
// Measure against the wall-clock slot whose build window we are currently using.
|
|
940
|
+
// In pipelining mode `targetSlot` is intentionally one slot ahead, which makes the
|
|
941
|
+
// target-slot boundary a full slot away from the actual build start time.
|
|
942
|
+
const slotBoundaryMs = Number(getTimestampForSlot(this.getBuildSlot(), this.l1Constants)) * 1000;
|
|
943
|
+
this.checkpointMetrics.recordPipelinedCheckpointBuildStartOffsetFromSlotBoundary(now - slotBoundaryMs);
|
|
944
|
+
}
|
|
945
|
+
this.checkpointMetrics.startCheckpointTiming(now);
|
|
627
946
|
// Get operator configured coinbase and fee recipient for this attestor
|
|
628
947
|
const coinbase = this.validatorClient.getCoinbaseForAttestor(this.attestorAddress);
|
|
629
948
|
const feeRecipient = this.validatorClient.getFeeRecipientForAttestor(this.attestorAddress);
|
|
630
949
|
// Start the checkpoint
|
|
631
|
-
this.
|
|
632
|
-
this.
|
|
950
|
+
this.setState(SequencerState.INITIALIZING_CHECKPOINT);
|
|
951
|
+
this.logCheckpointEvent('slot-started', `Starting checkpoint proposal for slot ${this.targetSlot}`, {
|
|
952
|
+
buildSlot: this.getBuildSlot(),
|
|
953
|
+
submissionSlot: this.targetSlot,
|
|
954
|
+
slot: this.targetSlot,
|
|
955
|
+
checkpointNumber: this.checkpointNumber,
|
|
956
|
+
proposer: this.proposer?.toString(),
|
|
957
|
+
attestorAddress: this.attestorAddress.toString(),
|
|
958
|
+
publisherAddress: this.publisher.getSenderAddress().toString(),
|
|
959
|
+
coinbase: coinbase.toString()
|
|
960
|
+
});
|
|
961
|
+
this.metrics.incOpenSlot(this.targetSlot, this.proposer?.toString() ?? 'unknown');
|
|
633
962
|
// Enqueues checkpoint invalidation (constant for the whole slot)
|
|
634
963
|
if (this.invalidateCheckpoint && !this.config.skipInvalidateBlockAsProposer) {
|
|
635
964
|
this.publisher.enqueueInvalidateCheckpoint(this.invalidateCheckpoint);
|
|
636
965
|
}
|
|
637
|
-
//
|
|
638
|
-
|
|
966
|
+
// Build the simulation plan for this slot. When pipelining, this overrides L1's view of
|
|
967
|
+
// pending/archive/fee-header to "as if the proposed parent had landed", so both the
|
|
968
|
+
// mana-min-fee simulation (in the globals builder) and the pre-broadcast
|
|
969
|
+
// validateBlockHeader see the chain tip the eventual L1 send will see.
|
|
970
|
+
this.checkpointSimulationOverridesPlan = await buildCheckpointSimulationOverridesPlan({
|
|
971
|
+
checkpointNumber: this.checkpointNumber,
|
|
972
|
+
proposedCheckpointData: this.proposedCheckpointData,
|
|
973
|
+
invalidateToPendingCheckpointNumber: this.invalidateCheckpoint?.forcePendingCheckpointNumber,
|
|
974
|
+
checkpointedCheckpointNumber: this.checkpointedCheckpointNumber,
|
|
975
|
+
rollup: this.publisher.rollupContract,
|
|
976
|
+
signatureContext: this.signatureContext,
|
|
977
|
+
log: this.log
|
|
978
|
+
});
|
|
979
|
+
const checkpointGlobalVariables = await this.globalsBuilder.buildCheckpointGlobalVariables(coinbase, feeRecipient, this.targetSlot, this.checkpointSimulationOverridesPlan);
|
|
639
980
|
// Collect L1 to L2 messages for the checkpoint and compute their hash
|
|
640
981
|
const l1ToL2Messages = await this.l1ToL2MessageSource.getL1ToL2Messages(this.checkpointNumber);
|
|
641
982
|
const inHash = computeInHashFromL1ToL2Messages(l1ToL2Messages);
|
|
642
|
-
// Collect the out hashes of all the checkpoints before this one in the same epoch
|
|
643
|
-
|
|
644
|
-
|
|
983
|
+
// Collect the out hashes of all the checkpoints before this one in the same epoch.
|
|
984
|
+
// Under pipelining the parent checkpoint may not be on L1 yet at build time, so the helper
|
|
985
|
+
// splices in the parent's checkpointOutHash from the locally-known proposed checkpoint so
|
|
986
|
+
// the resulting `epochOutHash` matches what validators (and L1) compute once the parent
|
|
987
|
+
// lands on L1.
|
|
988
|
+
const previousCheckpointOutHashes = await getPreviousCheckpointOutHashes({
|
|
989
|
+
blockSource: this.l2BlockSource,
|
|
990
|
+
epoch: this.targetEpoch,
|
|
991
|
+
checkpointNumber: this.checkpointNumber,
|
|
992
|
+
l1Constants: this.epochCache.getL1Constants(),
|
|
993
|
+
pipeliningEnabled: true,
|
|
994
|
+
proposedCheckpointData: this.proposedCheckpointData,
|
|
995
|
+
log: this.log
|
|
996
|
+
});
|
|
997
|
+
// Anchor the modifier to the predicted parent fee header: L1 will apply it against
|
|
998
|
+
// that, not against the latest published checkpoint (which lags by one under pipelining).
|
|
999
|
+
const predictedParentEthPerFeeAssetE12 = this.checkpointSimulationOverridesPlan?.pendingCheckpointState?.feeHeader?.ethPerFeeAsset;
|
|
1000
|
+
const feeAssetPriceModifier = await this.publisher.getFeeAssetPriceModifier(predictedParentEthPerFeeAssetE12);
|
|
645
1001
|
const fork = _ts_add_disposable_resource(env, await this.worldState.fork(this.syncedToBlockNumber, {
|
|
646
1002
|
closeDelayMs: 12_000
|
|
647
|
-
}),
|
|
1003
|
+
}), true);
|
|
648
1004
|
// Create checkpoint builder for the entire slot
|
|
649
|
-
const checkpointBuilder = await this.checkpointsBuilder.startCheckpoint(this.checkpointNumber, checkpointGlobalVariables, l1ToL2Messages, previousCheckpointOutHashes, fork, this.log.getBindings());
|
|
1005
|
+
const checkpointBuilder = await this.checkpointsBuilder.startCheckpoint(this.checkpointNumber, checkpointGlobalVariables, feeAssetPriceModifier, l1ToL2Messages, previousCheckpointOutHashes, fork, this.log.getBindings());
|
|
650
1006
|
// Options for the validator client when creating block and checkpoint proposals
|
|
651
1007
|
const blockProposalOptions = {
|
|
652
1008
|
publishFullTxs: !!this.config.publishTxsWithProposals,
|
|
@@ -654,10 +1010,11 @@ _dec = trackSpan('CheckpointProposalJob.execute'), _dec1 = trackSpan('Checkpoint
|
|
|
654
1010
|
};
|
|
655
1011
|
const checkpointProposalOptions = {
|
|
656
1012
|
publishFullTxs: !!this.config.publishTxsWithProposals,
|
|
657
|
-
broadcastInvalidCheckpointProposal: this.config.broadcastInvalidBlockProposal
|
|
1013
|
+
broadcastInvalidCheckpointProposal: this.config.broadcastInvalidCheckpointProposalOnly || this.config.broadcastInvalidBlockProposal
|
|
658
1014
|
};
|
|
659
1015
|
let blocksInCheckpoint = [];
|
|
660
1016
|
let blockPendingBroadcast = undefined;
|
|
1017
|
+
const checkpointBuildTimer = new Timer();
|
|
661
1018
|
try {
|
|
662
1019
|
// Main loop: build blocks for the checkpoint
|
|
663
1020
|
const result = await this.buildBlocksForCheckpoint(checkpointBuilder, checkpointGlobalVariables.timestamp, inHash, blockProposalOptions);
|
|
@@ -667,107 +1024,162 @@ _dec = trackSpan('CheckpointProposalJob.execute'), _dec1 = trackSpan('Checkpoint
|
|
|
667
1024
|
// These errors are expected in HA mode, so we yield and let another HA node handle the slot
|
|
668
1025
|
// The only distinction between the 2 errors is SlashingProtectionError throws when the payload is different,
|
|
669
1026
|
// which is normal for block building (may have picked different txs)
|
|
670
|
-
if (err
|
|
671
|
-
this.log.info(`Checkpoint proposal for slot ${this.slot} already signed by another HA node, yielding`, {
|
|
672
|
-
slot: this.slot,
|
|
673
|
-
signedByNode: err.signedByNode
|
|
674
|
-
});
|
|
675
|
-
return undefined;
|
|
676
|
-
}
|
|
677
|
-
if (err instanceof SlashingProtectionError) {
|
|
678
|
-
this.log.info(`Checkpoint proposal for slot ${this.slot} blocked by slashing protection, yielding`, {
|
|
679
|
-
slot: this.slot,
|
|
680
|
-
existingMessageHash: err.existingMessageHash,
|
|
681
|
-
attemptedMessageHash: err.attemptedMessageHash
|
|
682
|
-
});
|
|
1027
|
+
if (this.handleHASigningError(err, 'Block proposal')) {
|
|
683
1028
|
return undefined;
|
|
684
1029
|
}
|
|
685
1030
|
throw err;
|
|
686
1031
|
}
|
|
687
1032
|
if (blocksInCheckpoint.length === 0) {
|
|
688
|
-
this.
|
|
689
|
-
slot: this.
|
|
1033
|
+
this.logCheckpointEvent('build-failed', `Checkpoint build failed for slot ${this.targetSlot}`, {
|
|
1034
|
+
slot: this.targetSlot,
|
|
1035
|
+
checkpointNumber: this.checkpointNumber,
|
|
1036
|
+
reason: 'no_blocks_built'
|
|
1037
|
+
});
|
|
1038
|
+
this.log.warn(`No blocks were built for slot ${this.targetSlot}`, {
|
|
1039
|
+
slot: this.targetSlot,
|
|
1040
|
+
checkpointNumber: this.checkpointNumber,
|
|
1041
|
+
reason: 'no_blocks_built'
|
|
690
1042
|
});
|
|
691
1043
|
this.eventEmitter.emit('checkpoint-empty', {
|
|
692
|
-
slot: this.
|
|
1044
|
+
slot: this.targetSlot
|
|
1045
|
+
});
|
|
1046
|
+
return undefined;
|
|
1047
|
+
}
|
|
1048
|
+
const minBlocksForCheckpoint = this.config.minBlocksForCheckpoint;
|
|
1049
|
+
if (minBlocksForCheckpoint !== undefined && blocksInCheckpoint.length < minBlocksForCheckpoint) {
|
|
1050
|
+
this.logCheckpointEvent('build-failed', `Checkpoint build failed for slot ${this.targetSlot}`, {
|
|
1051
|
+
slot: this.targetSlot,
|
|
1052
|
+
checkpointNumber: this.checkpointNumber,
|
|
1053
|
+
blocksBuilt: blocksInCheckpoint.length,
|
|
1054
|
+
minBlocksForCheckpoint,
|
|
1055
|
+
reason: 'min_blocks_not_met'
|
|
1056
|
+
});
|
|
1057
|
+
this.log.warn(`Checkpoint has fewer blocks than minimum (${blocksInCheckpoint.length} < ${minBlocksForCheckpoint}), skipping proposal`, {
|
|
1058
|
+
slot: this.targetSlot,
|
|
1059
|
+
checkpointNumber: this.checkpointNumber,
|
|
1060
|
+
blocksBuilt: blocksInCheckpoint.length,
|
|
1061
|
+
minBlocksForCheckpoint,
|
|
1062
|
+
reason: 'min_blocks_not_met'
|
|
693
1063
|
});
|
|
694
1064
|
return undefined;
|
|
695
1065
|
}
|
|
696
1066
|
// Assemble and broadcast the checkpoint proposal, including the last block that was not
|
|
697
1067
|
// broadcasted yet, and wait to collect the committee attestations.
|
|
698
|
-
this.
|
|
1068
|
+
this.setState(SequencerState.ASSEMBLING_CHECKPOINT);
|
|
699
1069
|
const checkpoint = await checkpointBuilder.completeCheckpoint();
|
|
700
|
-
//
|
|
1070
|
+
// Final validation: per-block limits are only checked if the operator set them explicitly.
|
|
1071
|
+
// Otherwise, checkpoint-level budgets were already enforced by the redistribution logic.
|
|
1072
|
+
try {
|
|
1073
|
+
validateCheckpoint(checkpoint, {
|
|
1074
|
+
rollupManaLimit: this.l1Constants.rollupManaLimit,
|
|
1075
|
+
maxL2BlockGas: this.config.maxL2BlockGas,
|
|
1076
|
+
maxDABlockGas: this.config.maxDABlockGas,
|
|
1077
|
+
maxTxsPerBlock: this.config.maxTxsPerBlock,
|
|
1078
|
+
maxTxsPerCheckpoint: this.config.maxTxsPerCheckpoint
|
|
1079
|
+
});
|
|
1080
|
+
} catch (err) {
|
|
1081
|
+
this.logCheckpointEvent('build-failed', `Checkpoint build failed for slot ${this.targetSlot}`, {
|
|
1082
|
+
slot: this.targetSlot,
|
|
1083
|
+
checkpointNumber: this.checkpointNumber,
|
|
1084
|
+
blocksBuilt: blocksInCheckpoint.length,
|
|
1085
|
+
reason: 'invalid_checkpoint',
|
|
1086
|
+
checkpoint: checkpoint.header.toInspect()
|
|
1087
|
+
});
|
|
1088
|
+
this.log.error(`Built an invalid checkpoint at slot ${this.targetSlot} (skipping proposal)`, err, {
|
|
1089
|
+
slot: this.targetSlot,
|
|
1090
|
+
checkpointNumber: this.checkpointNumber,
|
|
1091
|
+
blocksBuilt: blocksInCheckpoint.length,
|
|
1092
|
+
reason: 'invalid_checkpoint',
|
|
1093
|
+
checkpoint: checkpoint.header.toInspect()
|
|
1094
|
+
});
|
|
1095
|
+
return undefined;
|
|
1096
|
+
}
|
|
1097
|
+
// Record checkpoint-level build metrics
|
|
1098
|
+
this.checkpointMetrics.recordCheckpointBuild(checkpointBuildTimer.ms(), blocksInCheckpoint.length, checkpoint.getStats().txCount, Number(checkpoint.header.totalManaUsed.toBigInt()));
|
|
1099
|
+
this.logCheckpointEvent('built', `Checkpoint built for slot ${this.targetSlot}`, {
|
|
1100
|
+
slot: this.targetSlot,
|
|
1101
|
+
buildSlot: this.getBuildSlot(),
|
|
1102
|
+
checkpointNumber: this.checkpointNumber,
|
|
1103
|
+
proposer: this.proposer?.toString(),
|
|
1104
|
+
attestorAddress: this.attestorAddress.toString(),
|
|
1105
|
+
publisherAddress: this.publisher.getSenderAddress().toString(),
|
|
1106
|
+
blocksBuilt: blocksInCheckpoint.length,
|
|
1107
|
+
txCount: checkpoint.getStats().txCount,
|
|
1108
|
+
totalMana: Number(checkpoint.header.totalManaUsed.toBigInt())
|
|
1109
|
+
});
|
|
1110
|
+
// In fisherman mode, return the checkpoint without broadcasting or collecting attestations
|
|
701
1111
|
if (this.config.fishermanMode) {
|
|
702
|
-
this.log.info(`Built checkpoint for slot ${this.
|
|
703
|
-
slot: this.
|
|
1112
|
+
this.log.info(`Built checkpoint for slot ${this.targetSlot} with ${blocksInCheckpoint.length} blocks. ` + `Skipping proposal in fisherman mode.`, {
|
|
1113
|
+
slot: this.targetSlot,
|
|
704
1114
|
checkpoint: checkpoint.header.toInspect(),
|
|
705
1115
|
blocksBuilt: blocksInCheckpoint.length
|
|
706
1116
|
});
|
|
707
1117
|
this.metrics.recordCheckpointSuccess();
|
|
708
|
-
|
|
1118
|
+
// Return a broadcast result with a dummy proposal — fisherman mode skips attestation collection
|
|
1119
|
+
return {
|
|
1120
|
+
checkpoint,
|
|
1121
|
+
proposal: undefined,
|
|
1122
|
+
blockProposedAt: this.dateProvider.now()
|
|
1123
|
+
};
|
|
709
1124
|
}
|
|
710
|
-
//
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
indexWithinCheckpoint: blockPendingBroadcast.block.indexWithinCheckpoint,
|
|
714
|
-
txs: blockPendingBroadcast.txs
|
|
715
|
-
};
|
|
716
|
-
// Create the checkpoint proposal and broadcast it
|
|
717
|
-
const proposal = await this.validatorClient.createCheckpointProposal(checkpoint.header, checkpoint.archive.root, lastBlock, this.proposer, checkpointProposalOptions);
|
|
718
|
-
const blockProposedAt = this.dateProvider.now();
|
|
719
|
-
await this.p2pClient.broadcastCheckpointProposal(proposal);
|
|
720
|
-
this.setStateFn(SequencerState.COLLECTING_ATTESTATIONS, this.slot);
|
|
721
|
-
const attestations = await this.waitForAttestations(proposal);
|
|
722
|
-
const blockAttestedAt = this.dateProvider.now();
|
|
723
|
-
this.metrics.recordCheckpointAttestationDelay(blockAttestedAt - blockProposedAt);
|
|
724
|
-
// Proposer must sign over the attestations before pushing them to L1
|
|
725
|
-
const signer = this.proposer ?? this.publisher.getSenderAddress();
|
|
726
|
-
let attestationsSignature;
|
|
1125
|
+
// Validate the header against L1 state before broadcasting.
|
|
1126
|
+
// If this fails the slot is aborted before any gossip work; state drift between here
|
|
1127
|
+
// and the eventual L1 send is caught by the bundle simulate at send time.
|
|
727
1128
|
try {
|
|
728
|
-
|
|
1129
|
+
await this.publisher.validateBlockHeader(checkpoint.header, this.checkpointSimulationOverridesPlan);
|
|
729
1130
|
} catch (err) {
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
1131
|
+
this.log.error(`Pre-broadcast header validation failed for slot ${this.targetSlot}; aborting`, err, {
|
|
1132
|
+
slot: this.targetSlot,
|
|
1133
|
+
checkpointNumber: this.checkpointNumber
|
|
1134
|
+
});
|
|
1135
|
+
this.metrics.recordCheckpointProposalFailed('header_validation_failed');
|
|
1136
|
+
this.eventEmitter.emit('header-validation-failed', {
|
|
1137
|
+
slot: this.targetSlot,
|
|
1138
|
+
checkpointNumber: this.checkpointNumber,
|
|
1139
|
+
reason: err instanceof Error ? err.message : String(err)
|
|
1140
|
+
});
|
|
1141
|
+
return undefined;
|
|
1142
|
+
}
|
|
1143
|
+
// Create the checkpoint proposal and broadcast it
|
|
1144
|
+
const proposal = await this.validatorClient.createCheckpointProposal(checkpoint.header, checkpoint.archive.root, this.checkpointNumber, feeAssetPriceModifier, blockPendingBroadcast, this.proposer, checkpointProposalOptions);
|
|
1145
|
+
// Advance our own optimistic proposed-checkpoint tip locally before gossiping. Gossipsub
|
|
1146
|
+
// doesn't echo our own messages back, so this is how the proposer makes its own proposed
|
|
1147
|
+
// checkpoint visible for pipelining the next slot. Built from local checkpoint data — never
|
|
1148
|
+
// from the broadcast proposal archive, which may be deliberately corrupted under test flags.
|
|
1149
|
+
// Fail closed: if this throws, the outer catch aborts the slot before gossiping.
|
|
1150
|
+
await this.syncProposedCheckpointToArchiver(checkpoint, blocksInCheckpoint.length, feeAssetPriceModifier);
|
|
1151
|
+
const blockProposedAt = this.dateProvider.now();
|
|
1152
|
+
if (this.config.skipBroadcastCheckpointProposal) {
|
|
1153
|
+
// Test-only: suppress the CheckpointProposal so peers never see a proposed checkpoint for
|
|
1154
|
+
// this slot, but still broadcast the held last block standalone so peers' archivers ingest
|
|
1155
|
+
// it as a proposed-but-uncheckpointed tip — the exact orphan-block state that
|
|
1156
|
+
// pruneOrphanProposedBlocks / checkSync must handle.
|
|
1157
|
+
if (blockPendingBroadcast && !this.config.skipBroadcastProposals) {
|
|
1158
|
+
await this.p2pClient.broadcastProposal(blockPendingBroadcast);
|
|
746
1159
|
}
|
|
747
|
-
|
|
1160
|
+
} else if (!this.config.skipBroadcastProposals) {
|
|
1161
|
+
await this.p2pClient.broadcastCheckpointProposal(proposal);
|
|
1162
|
+
this.checkpointMetrics.noteCheckpointBroadcast(this.dateProvider.now());
|
|
748
1163
|
}
|
|
749
|
-
//
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
txTimeoutAt,
|
|
756
|
-
forcePendingCheckpointNumber: this.invalidateCheckpoint?.forcePendingCheckpointNumber
|
|
757
|
-
});
|
|
758
|
-
return checkpoint;
|
|
1164
|
+
// Return immediately after broadcast — attestation collection happens in the background
|
|
1165
|
+
return {
|
|
1166
|
+
checkpoint,
|
|
1167
|
+
proposal,
|
|
1168
|
+
blockProposedAt
|
|
1169
|
+
};
|
|
759
1170
|
} catch (e) {
|
|
760
1171
|
env.error = e;
|
|
761
1172
|
env.hasError = true;
|
|
762
1173
|
} finally{
|
|
763
|
-
_ts_dispose_resources(env);
|
|
1174
|
+
const result = _ts_dispose_resources(env);
|
|
1175
|
+
if (result) await result;
|
|
764
1176
|
}
|
|
765
1177
|
} catch (err) {
|
|
766
1178
|
if (err && (err instanceof DutyAlreadySignedError || err instanceof SlashingProtectionError)) {
|
|
767
1179
|
// swallow this error. It's already been logged by a function deeper in the stack
|
|
768
1180
|
return undefined;
|
|
769
1181
|
}
|
|
770
|
-
this.log.error(`Error building checkpoint at slot ${this.
|
|
1182
|
+
this.log.error(`Error building checkpoint at slot ${this.targetSlot}`, err);
|
|
771
1183
|
return undefined;
|
|
772
1184
|
}
|
|
773
1185
|
}
|
|
@@ -777,21 +1189,27 @@ _dec = trackSpan('CheckpointProposalJob.execute'), _dec1 = trackSpan('Checkpoint
|
|
|
777
1189
|
const blocksInCheckpoint = [];
|
|
778
1190
|
const txHashesAlreadyIncluded = new Set();
|
|
779
1191
|
const initialBlockNumber = BlockNumber(this.syncedToBlockNumber + 1);
|
|
780
|
-
// Remaining blob fields available for blocks (checkpoint end marker already subtracted)
|
|
781
|
-
let remainingBlobFields = BLOBS_PER_CHECKPOINT * FIELDS_PER_BLOB - NUM_CHECKPOINT_END_MARKER_FIELDS;
|
|
782
1192
|
// Last block in the checkpoint will usually be flagged as pending broadcast, so we send it along with the checkpoint proposal
|
|
783
1193
|
let blockPendingBroadcast = undefined;
|
|
784
1194
|
while(true){
|
|
785
1195
|
const blocksBuilt = blocksInCheckpoint.length;
|
|
786
1196
|
const indexWithinCheckpoint = IndexWithinCheckpoint(blocksBuilt);
|
|
787
1197
|
const blockNumber = BlockNumber(initialBlockNumber + blocksBuilt);
|
|
788
|
-
|
|
789
|
-
|
|
1198
|
+
if (blocksBuilt >= this.config.maxBlocksPerCheckpoint) {
|
|
1199
|
+
this.log.debug(`Reached max blocks per checkpoint`, {
|
|
1200
|
+
slot: this.targetSlot,
|
|
1201
|
+
blocksBuilt,
|
|
1202
|
+
maxBlocksPerCheckpoint: this.config.maxBlocksPerCheckpoint
|
|
1203
|
+
});
|
|
1204
|
+
break;
|
|
1205
|
+
}
|
|
1206
|
+
const nowSeconds = this.dateProvider.now() / 1000;
|
|
1207
|
+
const timingInfo = this.timetable.selectNextSubslot(this.targetSlot, nowSeconds);
|
|
790
1208
|
if (!timingInfo.canStart) {
|
|
791
1209
|
this.log.debug(`Not enough time left in slot to start another block`, {
|
|
792
|
-
slot: this.
|
|
1210
|
+
slot: this.targetSlot,
|
|
793
1211
|
blocksBuilt,
|
|
794
|
-
|
|
1212
|
+
nowSeconds
|
|
795
1213
|
});
|
|
796
1214
|
break;
|
|
797
1215
|
}
|
|
@@ -800,72 +1218,69 @@ _dec = trackSpan('CheckpointProposalJob.execute'), _dec1 = trackSpan('Checkpoint
|
|
|
800
1218
|
blockTimestamp: timestamp,
|
|
801
1219
|
// Create an empty block if we haven't already and this is the last one
|
|
802
1220
|
forceCreate: timingInfo.isLastBlock && blocksBuilt === 0 && this.config.buildCheckpointIfEmpty,
|
|
803
|
-
|
|
804
|
-
buildDeadline: timingInfo.deadline ? new Date((this.getSlotStartBuildTimestamp() + timingInfo.deadline) * 1000) : undefined,
|
|
1221
|
+
buildDeadline: new Date(timingInfo.deadline * 1000),
|
|
805
1222
|
blockNumber,
|
|
806
1223
|
indexWithinCheckpoint,
|
|
807
|
-
txHashesAlreadyIncluded
|
|
808
|
-
remainingBlobFields
|
|
1224
|
+
txHashesAlreadyIncluded
|
|
809
1225
|
});
|
|
810
|
-
//
|
|
811
|
-
if (
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
1226
|
+
// If we failed to build the block due to insufficient txs, we try again if there is still time left in the slot
|
|
1227
|
+
if ('failure' in buildResult) {
|
|
1228
|
+
// If this was the last subslot, we're done.
|
|
1229
|
+
if (timingInfo.isLastBlock) {
|
|
1230
|
+
break;
|
|
1231
|
+
}
|
|
1232
|
+
// Otherwise, if there is still time for more blocks, we wait until the next subslot and try again
|
|
815
1233
|
await this.waitUntilNextSubslot(timingInfo.deadline);
|
|
816
1234
|
continue;
|
|
817
|
-
}
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
1235
|
+
}
|
|
1236
|
+
// If there was an error building the block, we just exit the loop and give up the rest of the slot.
|
|
1237
|
+
// We don't want to risk building more blocks if something went wrong.
|
|
1238
|
+
if ('error' in buildResult) {
|
|
821
1239
|
if (!(buildResult.error instanceof SequencerInterruptedError)) {
|
|
822
|
-
this.log.warn(`Halting block building for slot ${this.
|
|
823
|
-
slot: this.
|
|
1240
|
+
this.log.warn(`Halting block building for slot ${this.targetSlot}`, {
|
|
1241
|
+
slot: this.targetSlot,
|
|
824
1242
|
blocksBuilt,
|
|
825
1243
|
error: buildResult.error
|
|
826
1244
|
});
|
|
827
1245
|
}
|
|
828
1246
|
break;
|
|
829
1247
|
}
|
|
830
|
-
const { block, usedTxs
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
// Sync the proposed block to the archiver to make it available
|
|
835
|
-
// Note that the checkpoint builder uses its own fork so it should not need to wait for this syncing
|
|
836
|
-
// Eventually we should refactor the checkpoint builder to not need a separate long-lived fork
|
|
837
|
-
// Fire and forget - don't block the critical path, but log errors
|
|
838
|
-
this.syncProposedBlockToArchiver(block).catch((err)=>{
|
|
839
|
-
this.log.error(`Failed to sync proposed block ${block.number} to archiver`, {
|
|
840
|
-
blockNumber: block.number,
|
|
841
|
-
err
|
|
842
|
-
});
|
|
1248
|
+
const { block, usedTxs } = buildResult;
|
|
1249
|
+
this.checkpointMetrics.noteCheckpointBlockBuilt(this.dateProvider.now(), {
|
|
1250
|
+
isFirstBlock: blocksBuilt === 0,
|
|
1251
|
+
isLastBlock: timingInfo.isLastBlock
|
|
843
1252
|
});
|
|
1253
|
+
blocksInCheckpoint.push(block);
|
|
844
1254
|
usedTxs.forEach((tx)=>txHashesAlreadyIncluded.add(tx.txHash.toString()));
|
|
845
|
-
//
|
|
1255
|
+
// Sign the block proposal. This will throw if HA signing fails.
|
|
1256
|
+
const proposal = await this.createBlockProposal(block, inHash, usedTxs, {
|
|
1257
|
+
...blockProposalOptions,
|
|
1258
|
+
broadcastInvalidBlockProposal: blockProposalOptions.broadcastInvalidBlockProposal || block.indexWithinCheckpoint === this.config.invalidBlockProposalIndexWithinCheckpoint
|
|
1259
|
+
});
|
|
1260
|
+
// Sync the proposed block to the archiver to make it available, only after we've managed to sign the proposal,
|
|
1261
|
+
// so we avoid polluting our archive with a block that would fail.
|
|
1262
|
+
// We wait for the sync to succeed, as this helps catch consistency errors, even if it means we lose some time for block-building.
|
|
1263
|
+
// If this throws, we abort the entire checkpoint.
|
|
1264
|
+
await this.syncProposedBlockToArchiver(block);
|
|
1265
|
+
// If this is the last block, do not broadcast it, since it will be included in the checkpoint proposal.
|
|
846
1266
|
if (timingInfo.isLastBlock) {
|
|
847
|
-
this.log.verbose(`Completed final block ${blockNumber} for slot ${this.
|
|
848
|
-
slot: this.
|
|
1267
|
+
this.log.verbose(`Completed final block ${blockNumber} for slot ${this.targetSlot}`, {
|
|
1268
|
+
slot: this.targetSlot,
|
|
849
1269
|
blockNumber,
|
|
850
1270
|
blocksBuilt
|
|
851
1271
|
});
|
|
852
|
-
blockPendingBroadcast =
|
|
853
|
-
block,
|
|
854
|
-
txs: usedTxs
|
|
855
|
-
};
|
|
1272
|
+
blockPendingBroadcast = proposal;
|
|
856
1273
|
break;
|
|
857
1274
|
}
|
|
858
|
-
//
|
|
859
|
-
|
|
860
|
-
if (!this.config.fishermanMode) {
|
|
861
|
-
const proposal = await this.validatorClient.createBlockProposal(block.header, block.indexWithinCheckpoint, inHash, block.archive.root, usedTxs, this.proposer, blockProposalOptions);
|
|
1275
|
+
// Once we have a signed proposal and the archiver agreed with our proposed block, then we broadcast it.
|
|
1276
|
+
if (proposal && !this.config.skipBroadcastProposals) {
|
|
862
1277
|
await this.p2pClient.broadcastProposal(proposal);
|
|
863
1278
|
}
|
|
864
1279
|
// Wait until the next block's start time
|
|
865
1280
|
await this.waitUntilNextSubslot(timingInfo.deadline);
|
|
866
1281
|
}
|
|
867
|
-
this.log.verbose(`Block building loop completed for slot ${this.
|
|
868
|
-
slot: this.
|
|
1282
|
+
this.log.verbose(`Block building loop completed for slot ${this.targetSlot}`, {
|
|
1283
|
+
slot: this.targetSlot,
|
|
869
1284
|
blocksBuilt: blocksInCheckpoint.length
|
|
870
1285
|
});
|
|
871
1286
|
return {
|
|
@@ -873,82 +1288,121 @@ _dec = trackSpan('CheckpointProposalJob.execute'), _dec1 = trackSpan('Checkpoint
|
|
|
873
1288
|
blockPendingBroadcast
|
|
874
1289
|
};
|
|
875
1290
|
}
|
|
876
|
-
/**
|
|
877
|
-
this.
|
|
878
|
-
|
|
879
|
-
|
|
1291
|
+
/** Creates a block proposal for a given block via the validator client (unless in fisherman mode) */ createBlockProposal(block, inHash, usedTxs, blockProposalOptions) {
|
|
1292
|
+
if (this.config.fishermanMode) {
|
|
1293
|
+
this.log.info(`Skipping block proposal for block ${block.number} in fisherman mode`);
|
|
1294
|
+
return Promise.resolve(undefined);
|
|
1295
|
+
}
|
|
1296
|
+
return this.validatorClient.createBlockProposal(block.header, this.checkpointNumber, block.indexWithinCheckpoint, inHash, block.archive.root, usedTxs, this.proposer, blockProposalOptions);
|
|
1297
|
+
}
|
|
1298
|
+
/**
|
|
1299
|
+
* Sleeps until it is time to produce the next block in the slot.
|
|
1300
|
+
* @param nextSubslotStart - Absolute wall-clock timestamp in seconds of the previous sub-slot deadline.
|
|
1301
|
+
*/ async waitUntilNextSubslot(nextSubslotStart) {
|
|
1302
|
+
this.setState(SequencerState.WAITING_UNTIL_NEXT_BLOCK);
|
|
1303
|
+
this.log.verbose(`Waiting until time for the next block at ${nextSubslotStart}s`, {
|
|
1304
|
+
slot: this.targetSlot
|
|
880
1305
|
});
|
|
881
|
-
await this.
|
|
1306
|
+
await this.awaitInterruptibleSleep(Math.max(0, nextSubslotStart * 1000 - this.dateProvider.now()));
|
|
882
1307
|
}
|
|
883
1308
|
/** Builds a single block. Called from the main block building loop. */ async buildSingleBlock(checkpointBuilder, opts) {
|
|
884
|
-
const { blockTimestamp, forceCreate, blockNumber, indexWithinCheckpoint, buildDeadline, txHashesAlreadyIncluded
|
|
885
|
-
this.log.verbose(`Preparing block ${blockNumber} index ${indexWithinCheckpoint} at checkpoint ${this.checkpointNumber} for slot ${this.
|
|
1309
|
+
const { blockTimestamp, forceCreate, blockNumber, indexWithinCheckpoint, buildDeadline, txHashesAlreadyIncluded } = opts;
|
|
1310
|
+
this.log.verbose(`Preparing block ${blockNumber} index ${indexWithinCheckpoint} at checkpoint ${this.checkpointNumber} for slot ${this.targetSlot}`, {
|
|
886
1311
|
...checkpointBuilder.getConstantData(),
|
|
887
1312
|
...opts
|
|
888
1313
|
});
|
|
889
1314
|
try {
|
|
890
1315
|
// Wait until we have enough txs to build the block
|
|
891
|
-
const minTxs = this.
|
|
892
|
-
const { availableTxs, canStartBuilding } = await this.waitForMinTxs(opts);
|
|
1316
|
+
const { canStartBuilding, minTxs } = await this.waitForMinTxs(opts);
|
|
893
1317
|
if (!canStartBuilding) {
|
|
894
|
-
this.
|
|
1318
|
+
this.logCheckpointEvent('block-build-failed', `Block build failed for slot ${this.targetSlot}`, {
|
|
1319
|
+
reason: 'insufficient_txs',
|
|
1320
|
+
blockNumber,
|
|
1321
|
+
slot: this.targetSlot,
|
|
1322
|
+
checkpointNumber: this.checkpointNumber,
|
|
1323
|
+
indexWithinCheckpoint,
|
|
1324
|
+
minTxs
|
|
1325
|
+
});
|
|
1326
|
+
this.log.verbose(`Not enough age-eligible txs to build block ${blockNumber} at index ${indexWithinCheckpoint} in slot ${this.targetSlot} (needs ${minTxs} eligible)`, {
|
|
1327
|
+
reason: 'insufficient_txs',
|
|
895
1328
|
blockNumber,
|
|
896
|
-
slot: this.
|
|
897
|
-
|
|
1329
|
+
slot: this.targetSlot,
|
|
1330
|
+
checkpointNumber: this.checkpointNumber,
|
|
1331
|
+
indexWithinCheckpoint,
|
|
1332
|
+
minTxs
|
|
898
1333
|
});
|
|
899
1334
|
this.eventEmitter.emit('block-tx-count-check-failed', {
|
|
900
1335
|
minTxs,
|
|
901
|
-
|
|
902
|
-
slot: this.slot
|
|
1336
|
+
slot: this.targetSlot
|
|
903
1337
|
});
|
|
904
1338
|
this.metrics.recordBlockProposalFailed('insufficient_txs');
|
|
905
|
-
return
|
|
1339
|
+
return {
|
|
1340
|
+
failure: 'insufficient-txs'
|
|
1341
|
+
};
|
|
906
1342
|
}
|
|
907
1343
|
// Create iterator to pending txs. We filter out txs already included in previous blocks in the checkpoint
|
|
908
1344
|
// just in case p2p failed to sync the provisional block and didn't get to remove those txs from the mempool yet.
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
1345
|
+
// Block building only executes txs, so we skip loading their proofs unless these same tx objects get attached
|
|
1346
|
+
// to the broadcasted proposals via publishTxsWithProposals.
|
|
1347
|
+
const pendingTxs = filter(this.p2pClient.iterateEligiblePendingTxs({
|
|
1348
|
+
includeProof: !!this.config.publishTxsWithProposals
|
|
1349
|
+
}), (tx)=>!txHashesAlreadyIncluded.has(tx.txHash.toString()));
|
|
1350
|
+
this.log.debug(`Building block ${blockNumber} at index ${indexWithinCheckpoint} for slot ${this.targetSlot}`, {
|
|
1351
|
+
slot: this.targetSlot,
|
|
912
1352
|
blockNumber,
|
|
913
1353
|
indexWithinCheckpoint
|
|
914
1354
|
});
|
|
915
|
-
this.
|
|
916
|
-
//
|
|
917
|
-
|
|
918
|
-
|
|
1355
|
+
this.setState(SequencerState.CREATING_BLOCK);
|
|
1356
|
+
// Per-block limits are operator overrides (from SEQ_MAX_L2_BLOCK_GAS etc.) further capped
|
|
1357
|
+
// by remaining checkpoint-level budgets inside CheckpointBuilder before each block is built.
|
|
1358
|
+
// minValidTxs is passed into the builder so it can reject the block *before* updating state.
|
|
1359
|
+
const minValidTxs = forceCreate ? 0 : this.config.minValidTxsPerBlock ?? minTxs;
|
|
919
1360
|
const blockBuilderOptions = {
|
|
920
1361
|
maxTransactions: this.config.maxTxsPerBlock,
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
1362
|
+
maxBlockGas: this.config.maxL2BlockGas !== undefined || this.config.maxDABlockGas !== undefined ? new Gas(this.config.maxDABlockGas ?? Infinity, this.config.maxL2BlockGas ?? Infinity) : undefined,
|
|
1363
|
+
deadline: buildDeadline,
|
|
1364
|
+
isBuildingProposal: true,
|
|
1365
|
+
minValidTxs,
|
|
1366
|
+
maxBlocksPerCheckpoint: this.timetable.getMaxBlocksPerCheckpoint(),
|
|
1367
|
+
perBlockAllocationMultiplier: this.config.perBlockAllocationMultiplier,
|
|
1368
|
+
perBlockDAAllocationMultiplier: this.config.perBlockDAAllocationMultiplier
|
|
925
1369
|
};
|
|
926
|
-
// Actually build the block by executing txs
|
|
1370
|
+
// Actually build the block by executing txs. The builder throws InsufficientValidTxsError
|
|
1371
|
+
// if the number of successfully processed txs is below minValidTxs, ensuring state is not
|
|
1372
|
+
// updated for blocks that will be discarded.
|
|
927
1373
|
const buildResult = await this.buildSingleBlockWithCheckpointBuilder(checkpointBuilder, pendingTxs, blockNumber, blockTimestamp, blockBuilderOptions);
|
|
928
1374
|
// If any txs failed during execution, drop them from the mempool so we don't pick them up again
|
|
929
1375
|
await this.dropFailedTxsFromP2P(buildResult.failedTxs);
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
this.log.warn(`Block ${blockNumber} at index ${indexWithinCheckpoint} on slot ${this.slot} has too few valid txs to be proposed`, {
|
|
936
|
-
slot: this.slot,
|
|
1376
|
+
if (buildResult.status === 'insufficient-valid-txs') {
|
|
1377
|
+
this.logCheckpointEvent('block-build-failed', `Block build failed for slot ${this.targetSlot}`, {
|
|
1378
|
+
reason: 'insufficient_valid_txs',
|
|
1379
|
+
slot: this.targetSlot,
|
|
1380
|
+
checkpointNumber: this.checkpointNumber,
|
|
937
1381
|
blockNumber,
|
|
938
|
-
numTxs,
|
|
1382
|
+
numTxs: buildResult.processedCount,
|
|
939
1383
|
indexWithinCheckpoint,
|
|
940
|
-
minValidTxs
|
|
941
|
-
|
|
1384
|
+
minValidTxs
|
|
1385
|
+
});
|
|
1386
|
+
this.log.warn(`Block ${blockNumber} at index ${indexWithinCheckpoint} on slot ${this.targetSlot} has too few valid txs to be proposed`, {
|
|
1387
|
+
reason: 'insufficient_valid_txs',
|
|
1388
|
+
slot: this.targetSlot,
|
|
1389
|
+
checkpointNumber: this.checkpointNumber,
|
|
1390
|
+
blockNumber,
|
|
1391
|
+
numTxs: buildResult.processedCount,
|
|
1392
|
+
indexWithinCheckpoint,
|
|
1393
|
+
minValidTxs
|
|
942
1394
|
});
|
|
943
1395
|
this.eventEmitter.emit('block-build-failed', {
|
|
944
1396
|
reason: `Insufficient valid txs`,
|
|
945
|
-
slot: this.
|
|
1397
|
+
slot: this.targetSlot
|
|
946
1398
|
});
|
|
947
1399
|
this.metrics.recordBlockProposalFailed('insufficient_valid_txs');
|
|
948
|
-
return
|
|
1400
|
+
return {
|
|
1401
|
+
failure: 'insufficient-valid-txs'
|
|
1402
|
+
};
|
|
949
1403
|
}
|
|
950
1404
|
// Block creation succeeded, emit stats and metrics
|
|
951
|
-
const {
|
|
1405
|
+
const { block, publicProcessorDuration, usedTxs, blockBuildDuration, numTxs } = buildResult;
|
|
952
1406
|
const blockStats = {
|
|
953
1407
|
eventName: 'l2-block-built',
|
|
954
1408
|
duration: blockBuildDuration,
|
|
@@ -957,31 +1411,44 @@ _dec = trackSpan('CheckpointProposalJob.execute'), _dec1 = trackSpan('Checkpoint
|
|
|
957
1411
|
};
|
|
958
1412
|
const blockHash = await block.hash();
|
|
959
1413
|
const txHashes = block.body.txEffects.map((tx)=>tx.txHash);
|
|
960
|
-
const manaPerSec =
|
|
961
|
-
this.log.info(`Built block ${block.number} at checkpoint ${this.checkpointNumber} for slot ${this.
|
|
1414
|
+
const manaPerSec = block.header.totalManaUsed.toNumberUnsafe() / (blockBuildDuration / 1000);
|
|
1415
|
+
this.log.info(`Built block ${block.number} at checkpoint ${this.checkpointNumber} for slot ${this.targetSlot} with ${numTxs} txs`, {
|
|
962
1416
|
blockHash,
|
|
963
1417
|
txHashes,
|
|
964
1418
|
manaPerSec,
|
|
965
1419
|
...blockStats
|
|
966
1420
|
});
|
|
1421
|
+
// `slot` is the target/submission slot (may be one ahead when pipelining),
|
|
1422
|
+
// `buildSlot` is the wall-clock slot during which the block was actually built.
|
|
967
1423
|
this.eventEmitter.emit('block-proposed', {
|
|
968
1424
|
blockNumber: block.number,
|
|
969
|
-
|
|
1425
|
+
blockHash,
|
|
1426
|
+
checkpointNumber: this.checkpointNumber,
|
|
1427
|
+
indexWithinCheckpoint: block.indexWithinCheckpoint,
|
|
1428
|
+
slot: this.targetSlot,
|
|
1429
|
+
buildSlot: this.getBuildSlot()
|
|
970
1430
|
});
|
|
971
|
-
this.metrics.recordBuiltBlock(blockBuildDuration,
|
|
1431
|
+
this.metrics.recordBuiltBlock(blockBuildDuration, block.header.totalManaUsed.toNumberUnsafe(), this.targetSlot);
|
|
972
1432
|
return {
|
|
973
1433
|
block,
|
|
974
|
-
usedTxs
|
|
975
|
-
remainingBlobFields: maxBlobFieldsForTxs - usedTxBlobFields
|
|
1434
|
+
usedTxs
|
|
976
1435
|
};
|
|
977
1436
|
} catch (err) {
|
|
978
1437
|
this.eventEmitter.emit('block-build-failed', {
|
|
979
1438
|
reason: err.message,
|
|
980
|
-
slot: this.
|
|
1439
|
+
slot: this.targetSlot
|
|
1440
|
+
});
|
|
1441
|
+
this.logCheckpointEvent('block-build-failed', `Block build failed for slot ${this.targetSlot}`, {
|
|
1442
|
+
reason: err instanceof Error ? err.message : String(err),
|
|
1443
|
+
slot: this.targetSlot,
|
|
1444
|
+
checkpointNumber: this.checkpointNumber,
|
|
1445
|
+
blockNumber
|
|
981
1446
|
});
|
|
982
1447
|
this.log.error(`Error building block`, err, {
|
|
983
|
-
|
|
984
|
-
slot: this.
|
|
1448
|
+
reason: err instanceof Error ? err.message : String(err),
|
|
1449
|
+
slot: this.targetSlot,
|
|
1450
|
+
checkpointNumber: this.checkpointNumber,
|
|
1451
|
+
blockNumber
|
|
985
1452
|
});
|
|
986
1453
|
this.metrics.recordBlockProposalFailed(err.name || 'unknown_error');
|
|
987
1454
|
this.metrics.recordFailedBlock();
|
|
@@ -990,7 +1457,7 @@ _dec = trackSpan('CheckpointProposalJob.execute'), _dec1 = trackSpan('Checkpoint
|
|
|
990
1457
|
};
|
|
991
1458
|
}
|
|
992
1459
|
}
|
|
993
|
-
/** Uses the checkpoint builder to build a block, catching
|
|
1460
|
+
/** Uses the checkpoint builder to build a block, catching InsufficientValidTxsError. */ async buildSingleBlockWithCheckpointBuilder(checkpointBuilder, pendingTxs, blockNumber, blockTimestamp, blockBuilderOptions) {
|
|
994
1461
|
try {
|
|
995
1462
|
const workTimer = new Timer();
|
|
996
1463
|
const result = await checkpointBuilder.buildBlock(pendingTxs, blockNumber, blockTimestamp, blockBuilderOptions);
|
|
@@ -1001,10 +1468,11 @@ _dec = trackSpan('CheckpointProposalJob.execute'), _dec1 = trackSpan('Checkpoint
|
|
|
1001
1468
|
status: 'success'
|
|
1002
1469
|
};
|
|
1003
1470
|
} catch (err) {
|
|
1004
|
-
if (isErrorClass(err,
|
|
1471
|
+
if (isErrorClass(err, InsufficientValidTxsError)) {
|
|
1005
1472
|
return {
|
|
1006
1473
|
failedTxs: err.failedTxs,
|
|
1007
|
-
|
|
1474
|
+
processedCount: err.processedCount,
|
|
1475
|
+
status: 'insufficient-valid-txs'
|
|
1008
1476
|
};
|
|
1009
1477
|
}
|
|
1010
1478
|
throw err;
|
|
@@ -1014,40 +1482,65 @@ _dec = trackSpan('CheckpointProposalJob.execute'), _dec1 = trackSpan('Checkpoint
|
|
|
1014
1482
|
const { indexWithinCheckpoint, blockNumber, buildDeadline, forceCreate } = opts;
|
|
1015
1483
|
// We only allow a block with 0 txs in the first block of the checkpoint
|
|
1016
1484
|
const minTxs = indexWithinCheckpoint > 0 && this.config.minTxsPerBlock === 0 ? 1 : this.config.minTxsPerBlock;
|
|
1017
|
-
//
|
|
1018
|
-
const startBuildingDeadline = buildDeadline ? new Date(buildDeadline.getTime() - this.timetable.
|
|
1019
|
-
|
|
1020
|
-
|
|
1485
|
+
// Latest time to keep waiting for txs: wait_for_txs_deadline = block_build_deadline(k) - min_block_duration.
|
|
1486
|
+
const startBuildingDeadline = buildDeadline ? new Date(buildDeadline.getTime() - this.timetable.minBlockDuration * 1000) : undefined;
|
|
1487
|
+
// Gate on age-eligible txs so we don't start building on txs the builder would then filter out for being
|
|
1488
|
+
// too fresh. hasEligiblePendingTxs early-exits once minTxs are eligible instead of counting the whole pool.
|
|
1489
|
+
while(!forceCreate && !await this.p2pClient.hasEligiblePendingTxs(minTxs)){
|
|
1021
1490
|
// If we're past deadline, or we have no deadline, give up
|
|
1022
1491
|
const now = this.dateProvider.nowAsDate();
|
|
1023
1492
|
if (startBuildingDeadline === undefined || now >= startBuildingDeadline) {
|
|
1024
1493
|
return {
|
|
1025
1494
|
canStartBuilding: false,
|
|
1026
|
-
|
|
1495
|
+
minTxs
|
|
1027
1496
|
};
|
|
1028
1497
|
}
|
|
1029
1498
|
// Wait a bit before checking again
|
|
1030
|
-
this.
|
|
1031
|
-
this.log.verbose(`Waiting for
|
|
1499
|
+
this.setState(SequencerState.WAITING_FOR_TXS);
|
|
1500
|
+
this.log.verbose(`Waiting for ${minTxs} age-eligible txs to build block ${blockNumber} at index ${indexWithinCheckpoint} in slot ${this.targetSlot}`, {
|
|
1032
1501
|
blockNumber,
|
|
1033
|
-
slot: this.
|
|
1034
|
-
indexWithinCheckpoint
|
|
1502
|
+
slot: this.targetSlot,
|
|
1503
|
+
indexWithinCheckpoint,
|
|
1504
|
+
minTxs
|
|
1035
1505
|
});
|
|
1036
|
-
await
|
|
1037
|
-
availableTxs = await this.p2pClient.getPendingTxCount();
|
|
1506
|
+
await this.waitForTxsPollingInterval();
|
|
1038
1507
|
}
|
|
1039
1508
|
return {
|
|
1040
1509
|
canStartBuilding: true,
|
|
1041
|
-
|
|
1510
|
+
minTxs
|
|
1042
1511
|
};
|
|
1043
1512
|
}
|
|
1513
|
+
async getSignedCommitteeAttestations(broadcast) {
|
|
1514
|
+
const { proposal, blockProposedAt } = broadcast;
|
|
1515
|
+
this.setState(SequencerState.COLLECTING_ATTESTATIONS);
|
|
1516
|
+
const attestations = await this.waitForAttestations(proposal);
|
|
1517
|
+
if (!attestations) {
|
|
1518
|
+
return undefined;
|
|
1519
|
+
}
|
|
1520
|
+
this.checkpointMetrics.recordCheckpointAttestationDelay(this.dateProvider.now() - blockProposedAt);
|
|
1521
|
+
// Proposer must sign over the attestations before pushing them to L1
|
|
1522
|
+
const signer = this.proposer ?? this.publisher.getSenderAddress();
|
|
1523
|
+
try {
|
|
1524
|
+
const attestationsSignature = await this.validatorClient.signAttestationsAndSigners(attestations, signer, this.targetSlot, this.checkpointNumber);
|
|
1525
|
+
return {
|
|
1526
|
+
attestations,
|
|
1527
|
+
attestationsSignature
|
|
1528
|
+
};
|
|
1529
|
+
} catch (err) {
|
|
1530
|
+
if (this.handleHASigningError(err, 'Attestations signature')) {
|
|
1531
|
+
return;
|
|
1532
|
+
}
|
|
1533
|
+
this.log.error(`Error signing attestations for checkpoint proposal at slot ${proposal.slotNumber}`, err);
|
|
1534
|
+
return undefined;
|
|
1535
|
+
}
|
|
1536
|
+
}
|
|
1044
1537
|
/**
|
|
1045
1538
|
* Waits for enough attestations to be collected via p2p.
|
|
1046
1539
|
* This is run after all blocks for the checkpoint have been built.
|
|
1047
1540
|
*/ async waitForAttestations(proposal) {
|
|
1048
1541
|
if (this.config.fishermanMode) {
|
|
1049
1542
|
this.log.debug('Skipping attestation collection in fisherman mode');
|
|
1050
|
-
return CommitteeAttestationsAndSigners.empty();
|
|
1543
|
+
return CommitteeAttestationsAndSigners.empty(this.getSignatureContext());
|
|
1051
1544
|
}
|
|
1052
1545
|
const slotNumber = proposal.slotNumber;
|
|
1053
1546
|
const { committee, seed, epoch } = await this.epochCache.getCommittee(slotNumber);
|
|
@@ -1055,47 +1548,92 @@ _dec = trackSpan('CheckpointProposalJob.execute'), _dec1 = trackSpan('Checkpoint
|
|
|
1055
1548
|
throw new Error('No committee when collecting attestations');
|
|
1056
1549
|
} else if (committee.length === 0) {
|
|
1057
1550
|
this.log.verbose(`Attesting committee is empty`);
|
|
1058
|
-
return CommitteeAttestationsAndSigners.empty();
|
|
1551
|
+
return CommitteeAttestationsAndSigners.empty(this.getSignatureContext());
|
|
1059
1552
|
} else {
|
|
1060
1553
|
this.log.debug(`Attesting committee length is ${committee.length}`, {
|
|
1061
1554
|
committee
|
|
1062
1555
|
});
|
|
1063
1556
|
}
|
|
1064
|
-
const numberOfRequiredAttestations =
|
|
1557
|
+
const numberOfRequiredAttestations = computeQuorum(committee.length);
|
|
1065
1558
|
if (this.config.skipCollectingAttestations) {
|
|
1066
1559
|
this.log.warn('Skipping attestation collection as per config (attesting with own keys only)');
|
|
1067
|
-
const attestations = await this.validatorClient?.collectOwnAttestations(proposal);
|
|
1068
|
-
|
|
1560
|
+
const attestations = await this.validatorClient?.collectOwnAttestations(proposal, this.checkpointNumber);
|
|
1561
|
+
this.logCheckpointAttestations('collected', committee, attestations ?? [], numberOfRequiredAttestations, {
|
|
1562
|
+
reason: 'collect_own_only'
|
|
1563
|
+
});
|
|
1564
|
+
return new CommitteeAttestationsAndSigners(orderAttestations(attestations ?? [], committee), this.getSignatureContext());
|
|
1069
1565
|
}
|
|
1070
|
-
|
|
1071
|
-
const
|
|
1072
|
-
|
|
1566
|
+
// Hard attestation-collection cutoff = the single consensus attestation_deadline (target_slot_start + S - 2E).
|
|
1567
|
+
const attestationDeadlineSeconds = this.timetable.getAttestationDeadline(this.targetSlot);
|
|
1568
|
+
const attestationDeadline = new Date(attestationDeadlineSeconds * 1000);
|
|
1569
|
+
this.metrics.recordRequiredAttestations(numberOfRequiredAttestations, Math.max(0, attestationDeadline.getTime() - this.dateProvider.now()));
|
|
1073
1570
|
const collectAttestationsTimer = new Timer();
|
|
1074
1571
|
let collectedAttestationsCount = 0;
|
|
1075
1572
|
try {
|
|
1076
|
-
const attestations = await this.validatorClient.collectAttestations(proposal, numberOfRequiredAttestations, attestationDeadline);
|
|
1573
|
+
const attestations = await this.validatorClient.collectAttestations(proposal, numberOfRequiredAttestations, attestationDeadline, this.checkpointNumber);
|
|
1077
1574
|
collectedAttestationsCount = attestations.length;
|
|
1575
|
+
// Trim attestations to minimum required to save L1 calldata gas
|
|
1576
|
+
const localAddresses = this.validatorClient.getValidatorAddresses();
|
|
1577
|
+
const trimmed = trimAttestations(attestations, numberOfRequiredAttestations, this.attestorAddress, localAddresses);
|
|
1578
|
+
if (trimmed.length < attestations.length) {
|
|
1579
|
+
this.log.debug(`Trimmed attestations from ${attestations.length} to ${trimmed.length} for L1 submission`);
|
|
1580
|
+
}
|
|
1078
1581
|
// Rollup contract requires that the signatures are provided in the order of the committee
|
|
1079
|
-
const sorted = orderAttestations(
|
|
1582
|
+
const sorted = orderAttestations(trimmed, committee);
|
|
1583
|
+
this.logCheckpointAttestations('collected', committee, attestations, numberOfRequiredAttestations, {
|
|
1584
|
+
submittedCount: trimmed.length
|
|
1585
|
+
});
|
|
1080
1586
|
// Manipulate the attestations if we've been configured to do so
|
|
1081
|
-
if (this.config.injectFakeAttestation || this.config.shuffleAttestationOrdering) {
|
|
1587
|
+
if (this.config.injectFakeAttestation || this.config.injectHighSValueAttestation || this.config.injectUnrecoverableSignatureAttestation || this.config.injectYParityAttestation || this.config.shuffleAttestationOrdering) {
|
|
1082
1588
|
return this.manipulateAttestations(proposal.slotNumber, epoch, seed, committee, sorted);
|
|
1083
1589
|
}
|
|
1084
|
-
return new CommitteeAttestationsAndSigners(sorted);
|
|
1590
|
+
return new CommitteeAttestationsAndSigners(sorted, this.getSignatureContext());
|
|
1085
1591
|
} catch (err) {
|
|
1086
1592
|
if (err && err instanceof AttestationTimeoutError) {
|
|
1087
1593
|
collectedAttestationsCount = err.collectedCount;
|
|
1594
|
+
this.logCheckpointAttestations('failed', committee, undefined, numberOfRequiredAttestations, {
|
|
1595
|
+
collectedCount: collectedAttestationsCount,
|
|
1596
|
+
reason: 'timeout'
|
|
1597
|
+
});
|
|
1598
|
+
this.log.error(`Timeout while waiting for attestations for checkpoint proposal at slot ${proposal.slotNumber} (collected ${collectedAttestationsCount}/${numberOfRequiredAttestations})`, err);
|
|
1599
|
+
} else {
|
|
1600
|
+
this.logCheckpointAttestations('failed', committee, undefined, numberOfRequiredAttestations, {
|
|
1601
|
+
collectedCount: collectedAttestationsCount,
|
|
1602
|
+
reason: err instanceof Error ? err.message : String(err)
|
|
1603
|
+
});
|
|
1604
|
+
this.log.error(`Error collecting attestations for checkpoint proposal at slot ${proposal.slotNumber}`, err);
|
|
1088
1605
|
}
|
|
1089
|
-
|
|
1606
|
+
return undefined;
|
|
1090
1607
|
} finally{
|
|
1091
1608
|
this.metrics.recordCollectedAttestations(collectedAttestationsCount, collectAttestationsTimer.ms());
|
|
1092
1609
|
}
|
|
1093
1610
|
}
|
|
1611
|
+
logCheckpointAttestations(status, committee, attestations, requiredAttestations, opts = {}) {
|
|
1612
|
+
const signedValidators = attestations?.map((attestation)=>attestation.getSender()?.toString()).filter((address)=>address !== undefined) ?? [];
|
|
1613
|
+
const collectedCount = opts.collectedCount ?? new Set(signedValidators).size;
|
|
1614
|
+
const missingValidatorCount = status === 'failed' ? Math.max(0, requiredAttestations - collectedCount) : undefined;
|
|
1615
|
+
this.logCheckpointEvent(`attestations-${status}`, `Checkpoint attestations ${status} for slot ${this.targetSlot}`, {
|
|
1616
|
+
slot: this.targetSlot,
|
|
1617
|
+
checkpointNumber: this.checkpointNumber,
|
|
1618
|
+
committeeSize: committee.length,
|
|
1619
|
+
requiredAttestations,
|
|
1620
|
+
collectedAttestations: collectedCount,
|
|
1621
|
+
...opts.submittedCount !== undefined && {
|
|
1622
|
+
submittedAttestations: opts.submittedCount
|
|
1623
|
+
},
|
|
1624
|
+
...missingValidatorCount !== undefined && {
|
|
1625
|
+
missingValidatorCount
|
|
1626
|
+
},
|
|
1627
|
+
...opts.reason !== undefined && {
|
|
1628
|
+
reason: opts.reason
|
|
1629
|
+
}
|
|
1630
|
+
});
|
|
1631
|
+
}
|
|
1094
1632
|
/** Breaks the attestations before publishing based on attack configs */ manipulateAttestations(slotNumber, epoch, seed, committee, attestations) {
|
|
1095
1633
|
// Compute the proposer index in the committee, since we dont want to tweak it.
|
|
1096
1634
|
// Otherwise, the L1 rollup contract will reject the block outright.
|
|
1097
1635
|
const proposerIndex = Number(this.epochCache.computeProposerIndex(slotNumber, epoch, seed, BigInt(committee.length)));
|
|
1098
|
-
if (this.config.injectFakeAttestation) {
|
|
1636
|
+
if (this.config.injectFakeAttestation || this.config.injectHighSValueAttestation || this.config.injectUnrecoverableSignatureAttestation) {
|
|
1099
1637
|
// Find non-empty attestations that are not from the proposer
|
|
1100
1638
|
const nonProposerIndices = [];
|
|
1101
1639
|
for(let i = 0; i < attestations.length; i++){
|
|
@@ -1105,28 +1643,55 @@ _dec = trackSpan('CheckpointProposalJob.execute'), _dec1 = trackSpan('Checkpoint
|
|
|
1105
1643
|
}
|
|
1106
1644
|
if (nonProposerIndices.length > 0) {
|
|
1107
1645
|
const targetIndex = nonProposerIndices[randomInt(nonProposerIndices.length)];
|
|
1108
|
-
this.
|
|
1109
|
-
|
|
1646
|
+
if (this.config.injectHighSValueAttestation) {
|
|
1647
|
+
this.log.warn(`Injecting high-s value attestation in checkpoint for slot ${slotNumber} at index ${targetIndex}`);
|
|
1648
|
+
unfreeze(attestations[targetIndex]).signature = flipSignature(attestations[targetIndex].signature);
|
|
1649
|
+
} else if (this.config.injectUnrecoverableSignatureAttestation) {
|
|
1650
|
+
this.log.warn(`Injecting unrecoverable signature attestation in checkpoint for slot ${slotNumber} at index ${targetIndex}`);
|
|
1651
|
+
unfreeze(attestations[targetIndex]).signature = generateUnrecoverableSignature();
|
|
1652
|
+
} else {
|
|
1653
|
+
this.log.warn(`Injecting fake attestation in checkpoint for slot ${slotNumber} at index ${targetIndex}`);
|
|
1654
|
+
unfreeze(attestations[targetIndex]).signature = generateRecoverableSignature();
|
|
1655
|
+
}
|
|
1110
1656
|
}
|
|
1111
|
-
return new CommitteeAttestationsAndSigners(attestations);
|
|
1657
|
+
return new CommitteeAttestationsAndSigners(attestations, this.getSignatureContext());
|
|
1658
|
+
}
|
|
1659
|
+
if (this.config.injectYParityAttestation) {
|
|
1660
|
+
// Force every non-proposer signed slot's recovery byte to yParity (v ∈ {0, 1}) form in the packed L1
|
|
1661
|
+
// tuple, after packAttestations has canonicalized it. The proposer's own slot is left canonical so
|
|
1662
|
+
// propose() still passes verifyProposer. Models a malicious proposer landing a checkpoint L1 accepts
|
|
1663
|
+
// but that can never be proven (ECDSA.recover rejects v ∉ {27, 28}).
|
|
1664
|
+
this.log.warn(`Injecting yParity attestations in checkpoint for slot ${slotNumber} (proposer #${proposerIndex})`);
|
|
1665
|
+
return new MaliciousYParityCommitteeAttestationsAndSigners(attestations, proposerIndex, this.getSignatureContext());
|
|
1112
1666
|
}
|
|
1113
1667
|
if (this.config.shuffleAttestationOrdering) {
|
|
1114
1668
|
this.log.warn(`Shuffling attestation ordering in checkpoint for slot ${slotNumber} (proposer #${proposerIndex})`);
|
|
1115
1669
|
const shuffled = [
|
|
1116
1670
|
...attestations
|
|
1117
1671
|
];
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
];
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1672
|
+
// Find two non-proposer positions that both have non-empty signatures to swap.
|
|
1673
|
+
// This ensures the bitmap doesn't change, so the MaliciousCommitteeAttestationsAndSigners
|
|
1674
|
+
// signers array stays correctly aligned with L1's committee reconstruction.
|
|
1675
|
+
const swappable = [];
|
|
1676
|
+
for(let k = 0; k < shuffled.length; k++){
|
|
1677
|
+
if (!shuffled[k].signature.isEmpty() && k !== proposerIndex) {
|
|
1678
|
+
swappable.push(k);
|
|
1679
|
+
}
|
|
1680
|
+
}
|
|
1681
|
+
if (swappable.length >= 2) {
|
|
1682
|
+
const [i, j] = [
|
|
1683
|
+
swappable[0],
|
|
1684
|
+
swappable[1]
|
|
1685
|
+
];
|
|
1686
|
+
[shuffled[i], shuffled[j]] = [
|
|
1687
|
+
shuffled[j],
|
|
1688
|
+
shuffled[i]
|
|
1689
|
+
];
|
|
1690
|
+
}
|
|
1691
|
+
const signers = new CommitteeAttestationsAndSigners(attestations, this.getSignatureContext()).getSigners();
|
|
1692
|
+
return new MaliciousCommitteeAttestationsAndSigners(shuffled, signers, this.getSignatureContext());
|
|
1128
1693
|
}
|
|
1129
|
-
return new CommitteeAttestationsAndSigners(attestations);
|
|
1694
|
+
return new CommitteeAttestationsAndSigners(attestations, this.getSignatureContext());
|
|
1130
1695
|
}
|
|
1131
1696
|
async dropFailedTxsFromP2P(failedTxs) {
|
|
1132
1697
|
if (failedTxs.length === 0) {
|
|
@@ -1135,14 +1700,18 @@ _dec = trackSpan('CheckpointProposalJob.execute'), _dec1 = trackSpan('Checkpoint
|
|
|
1135
1700
|
const failedTxData = failedTxs.map((fail)=>fail.tx);
|
|
1136
1701
|
const failedTxHashes = failedTxData.map((tx)=>tx.getTxHash());
|
|
1137
1702
|
this.log.verbose(`Dropping failed txs ${failedTxHashes.join(', ')}`);
|
|
1138
|
-
await this.p2pClient.
|
|
1703
|
+
await this.p2pClient.handleFailedExecution(failedTxHashes);
|
|
1139
1704
|
}
|
|
1140
1705
|
/**
|
|
1141
1706
|
* Adds the proposed block to the archiver so it's available via P2P.
|
|
1142
1707
|
* Gossip doesn't echo messages back to the sender, so the proposer's archiver/world-state
|
|
1143
1708
|
* would never receive its own block without this explicit sync.
|
|
1709
|
+
*
|
|
1710
|
+
* In fisherman mode we skip this push: the fisherman builds blocks locally for validation
|
|
1711
|
+
* and fee analysis only, and pushing them to the archiver causes spurious reorg cascades
|
|
1712
|
+
* whenever the real proposer's block arrives from L1.
|
|
1144
1713
|
*/ async syncProposedBlockToArchiver(block) {
|
|
1145
|
-
if (this.config.skipPushProposedBlocksToArchiver
|
|
1714
|
+
if (this.config.skipPushProposedBlocksToArchiver || this.config.fishermanMode) {
|
|
1146
1715
|
this.log.warn(`Skipping push of proposed block ${block.number} to archiver`, {
|
|
1147
1716
|
blockNumber: block.number,
|
|
1148
1717
|
slot: block.header.globalVariables.slotNumber
|
|
@@ -1155,36 +1724,76 @@ _dec = trackSpan('CheckpointProposalJob.execute'), _dec1 = trackSpan('Checkpoint
|
|
|
1155
1724
|
});
|
|
1156
1725
|
await this.blockSink.addBlock(block);
|
|
1157
1726
|
}
|
|
1727
|
+
/**
|
|
1728
|
+
* Adds the proposed checkpoint to the archiver so the proposer's optimistic proposed-checkpoint
|
|
1729
|
+
* tip advances locally. Gossip doesn't echo our own messages back, so without this the proposer
|
|
1730
|
+
* would never see its own proposed checkpoint and couldn't pipeline the next slot.
|
|
1731
|
+
*
|
|
1732
|
+
* Skipped whenever proposed blocks aren't pushed (`skipPushProposedBlocksToArchiver`, fisherman
|
|
1733
|
+
* mode): the archiver derives the checkpoint archive from its stored blocks, so without them the
|
|
1734
|
+
* push would fail. All blocks were already added (and awaited) during block building, so this
|
|
1735
|
+
* needs no retry — they are guaranteed present by the time we get here.
|
|
1736
|
+
*/ async syncProposedCheckpointToArchiver(checkpoint, blockCount, feeAssetPriceModifier) {
|
|
1737
|
+
if (this.config.skipPushProposedBlocksToArchiver || this.config.fishermanMode) {
|
|
1738
|
+
return;
|
|
1739
|
+
}
|
|
1740
|
+
const startBlock = BlockNumber(this.syncedToBlockNumber + 1);
|
|
1741
|
+
this.log.debug(`Syncing proposed checkpoint ${this.checkpointNumber} to archiver`, {
|
|
1742
|
+
checkpointNumber: this.checkpointNumber,
|
|
1743
|
+
slot: this.targetSlot,
|
|
1744
|
+
startBlock,
|
|
1745
|
+
blockCount
|
|
1746
|
+
});
|
|
1747
|
+
await this.blockSink.addProposedCheckpoint({
|
|
1748
|
+
header: checkpoint.header,
|
|
1749
|
+
checkpointNumber: this.checkpointNumber,
|
|
1750
|
+
startBlock,
|
|
1751
|
+
blockCount,
|
|
1752
|
+
totalManaUsed: checkpoint.header.totalManaUsed.toBigInt(),
|
|
1753
|
+
feeAssetPriceModifier
|
|
1754
|
+
});
|
|
1755
|
+
}
|
|
1158
1756
|
/** Runs fee analysis and logs checkpoint outcome as fisherman */ async handleCheckpointEndAsFisherman(checkpoint) {
|
|
1159
1757
|
// Perform L1 fee analysis before clearing requests
|
|
1160
1758
|
// The callback is invoked asynchronously after the next block is mined
|
|
1161
|
-
const feeAnalysis = await this.publisher.analyzeL1Fees(this.
|
|
1759
|
+
const feeAnalysis = await this.publisher.analyzeL1Fees(this.targetSlot, (analysis)=>this.metrics.recordFishermanFeeAnalysis(analysis));
|
|
1162
1760
|
if (checkpoint) {
|
|
1163
|
-
this.log.info(`Validation checkpoint building SUCCEEDED for slot ${this.
|
|
1761
|
+
this.log.info(`Validation checkpoint building SUCCEEDED for slot ${this.targetSlot}`, {
|
|
1164
1762
|
...checkpoint.toCheckpointInfo(),
|
|
1165
1763
|
...checkpoint.getStats(),
|
|
1166
1764
|
feeAnalysisId: feeAnalysis?.id
|
|
1167
1765
|
});
|
|
1168
1766
|
} else {
|
|
1169
|
-
this.log.warn(`Validation block building FAILED for slot ${this.
|
|
1170
|
-
slot: this.
|
|
1767
|
+
this.log.warn(`Validation block building FAILED for slot ${this.targetSlot}`, {
|
|
1768
|
+
slot: this.targetSlot,
|
|
1171
1769
|
feeAnalysisId: feeAnalysis?.id
|
|
1172
1770
|
});
|
|
1173
|
-
this.metrics.
|
|
1771
|
+
this.metrics.recordCheckpointProposalFailed('block_build_failed');
|
|
1174
1772
|
}
|
|
1175
1773
|
this.publisher.clearPendingRequests();
|
|
1176
1774
|
}
|
|
1177
|
-
/**
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1775
|
+
/**
|
|
1776
|
+
* Helper to handle HA double-signing errors. Returns true if the error was handled (caller should yield).
|
|
1777
|
+
*/ handleHASigningError(err, errorContext) {
|
|
1778
|
+
if (err instanceof DutyAlreadySignedError) {
|
|
1779
|
+
this.log.info(`${errorContext} for slot ${this.targetSlot} already signed by another HA node, yielding`, {
|
|
1780
|
+
slot: this.targetSlot,
|
|
1781
|
+
signedByNode: err.signedByNode
|
|
1782
|
+
});
|
|
1783
|
+
return true;
|
|
1784
|
+
}
|
|
1785
|
+
if (err instanceof SlashingProtectionError) {
|
|
1786
|
+
this.log.info(`${errorContext} for slot ${this.targetSlot} blocked by slashing protection, yielding`, {
|
|
1787
|
+
slot: this.targetSlot,
|
|
1788
|
+
existingMessageHash: err.existingMessageHash,
|
|
1789
|
+
attemptedMessageHash: err.attemptedMessageHash
|
|
1790
|
+
});
|
|
1791
|
+
return true;
|
|
1792
|
+
}
|
|
1793
|
+
return false;
|
|
1184
1794
|
}
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
return Number((this.dateProvider.now() / 1000 - slotStartTimestamp).toFixed(3));
|
|
1795
|
+
/** Waits the polling interval for transactions. Extracted for test overriding. */ async waitForTxsPollingInterval() {
|
|
1796
|
+
await this.awaitInterruptibleSleep(TXS_POLLING_MS);
|
|
1188
1797
|
}
|
|
1189
1798
|
getPublisher() {
|
|
1190
1799
|
return this.publisher;
|