@lodestar/beacon-node 1.49.0-dev.ceea36c6f2 → 1.49.0-dev.d4c0ee61ef

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (128) hide show
  1. package/lib/api/impl/beacon/pool/index.d.ts.map +1 -1
  2. package/lib/api/impl/beacon/pool/index.js +4 -2
  3. package/lib/api/impl/beacon/pool/index.js.map +1 -1
  4. package/lib/api/impl/validator/index.d.ts.map +1 -1
  5. package/lib/api/impl/validator/index.js +3 -1
  6. package/lib/api/impl/validator/index.js.map +1 -1
  7. package/lib/chain/archiveStore/archiveStore.d.ts +1 -2
  8. package/lib/chain/archiveStore/archiveStore.d.ts.map +1 -1
  9. package/lib/chain/archiveStore/archiveStore.js +0 -5
  10. package/lib/chain/archiveStore/archiveStore.js.map +1 -1
  11. package/lib/chain/archiveStore/historicalState/metrics.d.ts.map +1 -1
  12. package/lib/chain/archiveStore/historicalState/metrics.js +4 -6
  13. package/lib/chain/archiveStore/historicalState/metrics.js.map +1 -1
  14. package/lib/chain/blocks/importExecutionPayload.d.ts.map +1 -1
  15. package/lib/chain/blocks/importExecutionPayload.js +13 -0
  16. package/lib/chain/blocks/importExecutionPayload.js.map +1 -1
  17. package/lib/chain/errors/payloadAttestation.d.ts +4 -0
  18. package/lib/chain/errors/payloadAttestation.d.ts.map +1 -1
  19. package/lib/chain/errors/payloadAttestation.js +1 -0
  20. package/lib/chain/errors/payloadAttestation.js.map +1 -1
  21. package/lib/chain/options.d.ts +0 -4
  22. package/lib/chain/options.d.ts.map +1 -1
  23. package/lib/chain/options.js +0 -1
  24. package/lib/chain/options.js.map +1 -1
  25. package/lib/chain/produceBlock/computeNewStateRoot.d.ts.map +1 -1
  26. package/lib/chain/produceBlock/computeNewStateRoot.js +4 -2
  27. package/lib/chain/produceBlock/computeNewStateRoot.js.map +1 -1
  28. package/lib/chain/validation/payloadAttestationMessage.d.ts.map +1 -1
  29. package/lib/chain/validation/payloadAttestationMessage.js +8 -1
  30. package/lib/chain/validation/payloadAttestationMessage.js.map +1 -1
  31. package/lib/db/beacon.d.ts +1 -2
  32. package/lib/db/beacon.d.ts.map +1 -1
  33. package/lib/db/beacon.js +1 -3
  34. package/lib/db/beacon.js.map +1 -1
  35. package/lib/db/buckets.d.ts +0 -1
  36. package/lib/db/buckets.d.ts.map +1 -1
  37. package/lib/db/buckets.js +1 -1
  38. package/lib/db/buckets.js.map +1 -1
  39. package/lib/db/interface.d.ts +1 -2
  40. package/lib/db/interface.d.ts.map +1 -1
  41. package/lib/db/repositories/blockArchiveIndex.d.ts +2 -2
  42. package/lib/db/repositories/blockArchiveIndex.d.ts.map +1 -1
  43. package/lib/db/repositories/index.d.ts +0 -1
  44. package/lib/db/repositories/index.d.ts.map +1 -1
  45. package/lib/db/repositories/index.js +0 -1
  46. package/lib/db/repositories/index.js.map +1 -1
  47. package/lib/metrics/metrics/lodestar.d.ts +12 -11
  48. package/lib/metrics/metrics/lodestar.d.ts.map +1 -1
  49. package/lib/metrics/metrics/lodestar.js +25 -23
  50. package/lib/metrics/metrics/lodestar.js.map +1 -1
  51. package/lib/network/processor/index.d.ts +1 -1
  52. package/lib/network/processor/index.d.ts.map +1 -1
  53. package/lib/network/processor/index.js +42 -21
  54. package/lib/network/processor/index.js.map +1 -1
  55. package/lib/node/nodejs.d.ts +2 -7
  56. package/lib/node/nodejs.d.ts.map +1 -1
  57. package/lib/node/nodejs.js +2 -22
  58. package/lib/node/nodejs.js.map +1 -1
  59. package/lib/sync/interface.d.ts +1 -2
  60. package/lib/sync/interface.d.ts.map +1 -1
  61. package/lib/sync/options.d.ts +0 -6
  62. package/lib/sync/options.d.ts.map +1 -1
  63. package/lib/sync/options.js +0 -2
  64. package/lib/sync/options.js.map +1 -1
  65. package/lib/sync/types.d.ts +18 -1
  66. package/lib/sync/types.d.ts.map +1 -1
  67. package/lib/sync/types.js +19 -1
  68. package/lib/sync/types.js.map +1 -1
  69. package/lib/sync/unknownBlock.d.ts +19 -0
  70. package/lib/sync/unknownBlock.d.ts.map +1 -1
  71. package/lib/sync/unknownBlock.js +143 -2
  72. package/lib/sync/unknownBlock.js.map +1 -1
  73. package/lib/util/shuffle.d.ts +0 -4
  74. package/lib/util/shuffle.d.ts.map +1 -1
  75. package/lib/util/shuffle.js +0 -8
  76. package/lib/util/shuffle.js.map +1 -1
  77. package/package.json +15 -15
  78. package/src/api/impl/beacon/pool/index.ts +6 -2
  79. package/src/api/impl/validator/index.ts +3 -1
  80. package/src/chain/archiveStore/archiveStore.ts +0 -6
  81. package/src/chain/archiveStore/historicalState/metrics.ts +4 -7
  82. package/src/chain/blocks/importExecutionPayload.ts +14 -0
  83. package/src/chain/errors/payloadAttestation.ts +2 -0
  84. package/src/chain/options.ts +0 -5
  85. package/src/chain/produceBlock/computeNewStateRoot.ts +9 -2
  86. package/src/chain/validation/payloadAttestationMessage.ts +9 -0
  87. package/src/db/beacon.ts +0 -5
  88. package/src/db/buckets.ts +1 -1
  89. package/src/db/interface.ts +0 -3
  90. package/src/db/repositories/index.ts +0 -1
  91. package/src/metrics/metrics/lodestar.ts +34 -26
  92. package/src/network/processor/index.ts +51 -22
  93. package/src/node/nodejs.ts +0 -27
  94. package/src/sync/interface.ts +1 -2
  95. package/src/sync/options.ts +0 -8
  96. package/src/sync/types.ts +19 -1
  97. package/src/sync/unknownBlock.ts +151 -1
  98. package/src/util/shuffle.ts +0 -9
  99. package/lib/chain/archiveStore/utils/updateBackfillRange.d.ts +0 -20
  100. package/lib/chain/archiveStore/utils/updateBackfillRange.d.ts.map +0 -1
  101. package/lib/chain/archiveStore/utils/updateBackfillRange.js +0 -40
  102. package/lib/chain/archiveStore/utils/updateBackfillRange.js.map +0 -1
  103. package/lib/db/repositories/backfilledRanges.d.ts +0 -18
  104. package/lib/db/repositories/backfilledRanges.d.ts.map +0 -1
  105. package/lib/db/repositories/backfilledRanges.js +0 -26
  106. package/lib/db/repositories/backfilledRanges.js.map +0 -1
  107. package/lib/sync/backfill/backfill.d.ts +0 -169
  108. package/lib/sync/backfill/backfill.d.ts.map +0 -1
  109. package/lib/sync/backfill/backfill.js +0 -686
  110. package/lib/sync/backfill/backfill.js.map +0 -1
  111. package/lib/sync/backfill/errors.d.ts +0 -30
  112. package/lib/sync/backfill/errors.d.ts.map +0 -1
  113. package/lib/sync/backfill/errors.js +0 -15
  114. package/lib/sync/backfill/errors.js.map +0 -1
  115. package/lib/sync/backfill/index.d.ts +0 -2
  116. package/lib/sync/backfill/index.d.ts.map +0 -1
  117. package/lib/sync/backfill/index.js +0 -2
  118. package/lib/sync/backfill/index.js.map +0 -1
  119. package/lib/sync/backfill/verify.d.ts +0 -18
  120. package/lib/sync/backfill/verify.d.ts.map +0 -1
  121. package/lib/sync/backfill/verify.js +0 -36
  122. package/lib/sync/backfill/verify.js.map +0 -1
  123. package/src/chain/archiveStore/utils/updateBackfillRange.ts +0 -50
  124. package/src/db/repositories/backfilledRanges.ts +0 -29
  125. package/src/sync/backfill/backfill.ts +0 -916
  126. package/src/sync/backfill/errors.ts +0 -23
  127. package/src/sync/backfill/index.ts +0 -1
  128. package/src/sync/backfill/verify.ts +0 -58
@@ -1057,6 +1057,8 @@ export function getValidatorApi(
1057
1057
  rank: index + 1,
1058
1058
  source: candidate.url !== undefined ? toPrintableUrl(candidate.url) : "p2p",
1059
1059
  builder: candidate.signedBid.message.builderIndex,
1060
+ value: prettyGweiToEth(candidate.signedBid.message.value),
1061
+ executionPayment: prettyGweiToEth(candidate.signedBid.message.executionPayment),
1060
1062
  total: prettyGweiToEth(candidate.totalGwei),
1061
1063
  boost: candidate.boostFactor,
1062
1064
  boosted: prettyGweiToEth(getBoostedTotalScaled(candidate) / 100n),
@@ -2104,7 +2106,7 @@ export function getValidatorApi(
2104
2106
  auth: entry.auth,
2105
2107
  });
2106
2108
  } catch (e) {
2107
- failures.push({index: i, message: (e as Error).message});
2109
+ failures.push({index: i, message: `${builder}: ${(e as Error).message}`});
2108
2110
  logger.verbose(
2109
2111
  `Error on submitBuilderPreferences [${i}]`,
2110
2112
  {slot: entry.auth.message.slot, builder},
@@ -16,7 +16,6 @@ import {ArchiveMode, ArchiveStoreOpts, StateArchiveStrategy} from "./interface.j
16
16
  import {FrequencyStateArchiveStrategy} from "./strategies/frequencyStateArchiveStrategy.js";
17
17
  import {archiveBlocks} from "./utils/archiveBlocks.js";
18
18
  import {pruneHistory} from "./utils/pruneHistory.js";
19
- import {updateBackfillRange} from "./utils/updateBackfillRange.js";
20
19
 
21
20
  type ArchiveStoreModules = {
22
21
  chain: IBeaconChain;
@@ -37,7 +36,6 @@ export enum ArchiveStoreTask {
37
36
  OnFinalizedCheckpoint = "on_finalized_checkpoint",
38
37
  MaybeArchiveState = "maybe_archive_state",
39
38
  ForkchoicePrune = "forkchoice_prune",
40
- UpdateBackfillRange = "update_backfill_range",
41
39
  }
42
40
 
43
41
  /**
@@ -261,10 +259,6 @@ export class ArchiveStore {
261
259
  const prunedBlocks = this.chain.forkChoice.prune(finalized.rootHex);
262
260
  timer?.({source: ArchiveStoreTask.ForkchoicePrune});
263
261
 
264
- timer = this.metrics?.processFinalizedCheckpoint.durationByTask.startTimer();
265
- await updateBackfillRange({chain: this.chain, db: this.db, logger: this.logger}, finalized);
266
- timer?.({source: ArchiveStoreTask.UpdateBackfillRange});
267
-
268
262
  this.logger.verbose("Finish processing finalized checkpoint", {
269
263
  epoch: finalizedEpoch,
270
264
  rootHex: finalized.rootHex,
@@ -6,7 +6,6 @@ import {
6
6
  ProcessOperationsStep,
7
7
  ProposerRewardType,
8
8
  StateCloneSource,
9
- StateHashTreeRootSource,
10
9
  } from "@lodestar/state-transition";
11
10
  import {Gauge, Histogram} from "@lodestar/utils";
12
11
  import {RegistryMetricCreator} from "../../../metrics/index.js";
@@ -92,12 +91,6 @@ export function createHistoricalStateTransitionMetrics(
92
91
  help: "Time to call commit after process a single block in seconds",
93
92
  buckets: [0.005, 0.01, 0.02, 0.05, 0.1, 1],
94
93
  }),
95
- stateHashTreeRootTime: metricsRegister.histogram<{source: StateHashTreeRootSource}>({
96
- name: "lodestar_historical_state_stfn_hash_tree_root_seconds",
97
- help: "Time to compute the hash tree root of a post state in seconds",
98
- buckets: [0.05, 0.1, 0.2, 0.5, 1, 1.5],
99
- labelNames: ["source"],
100
- }),
101
94
  numEffectiveBalanceUpdates: metricsRegister.gauge({
102
95
  name: "lodestar_historical_state_stfn_num_effective_balance_updates_count",
103
96
  help: "Count of effective balance updates in epoch transition",
@@ -163,6 +156,10 @@ export function createHistoricalStateTransitionMetrics(
163
156
  name: "lodestar_historical_state_stfn_attestations_per_block_total",
164
157
  help: "Count of attestations per block",
165
158
  }),
159
+ progressiveBalancesMismatches: metricsRegister.counter({
160
+ name: "lodestar_historical_state_stfn_progressive_balances_mismatches_total",
161
+ help: "Total count of progressive balance cache mismatches",
162
+ }),
166
163
  proposerRewards: metricsRegister.gauge<{type: ProposerRewardType}>({
167
164
  name: "lodestar_historical_state_stfn_proposer_rewards_total",
168
165
  help: "Proposer reward by type per block",
@@ -12,6 +12,7 @@ import {isQueueErrorAborted} from "../../util/queue/index.js";
12
12
  import {BeaconChain} from "../chain.js";
13
13
  import {RegenCaller} from "../regen/interface.js";
14
14
  import {PayloadEnvelopeInput} from "../seenCache/seenPayloadEnvelopeInput.js";
15
+ import {PayloadEnvelopeInputSource} from "./payloadEnvelopeInput/index.js";
15
16
  import {ImportPayloadOpts} from "./types.js";
16
17
  import {
17
18
  verifyExecutionPayloadEnvelope,
@@ -172,6 +173,9 @@ export async function importExecutionPayload(
172
173
  }
173
174
 
174
175
  // 4a. Run EL and signature verification in parallel
176
+ const logCtx = {slot, root: blockRootHex, executionBlock: envelope.payload.blockNumber};
177
+ this.logger.debug("Call engine api newPayload", logCtx);
178
+ const verifyStartSec = Date.now() / 1000;
175
179
  const [execResult, signatureValid] = await Promise.all([
176
180
  this.executionEngine.notifyNewPayload(
177
181
  fork,
@@ -191,6 +195,8 @@ export async function importExecutionPayload(
191
195
  this.bls
192
196
  ),
193
197
  ]);
198
+ this.logger.debug("Receive engine api newPayload result", {...logCtx, status: execResult.status});
199
+ this.metrics?.engineNotifyNewPayloadResult.inc({result: execResult.status});
194
200
 
195
201
  // 4b. Check signature verification result
196
202
  if (!signatureValid) {
@@ -223,6 +229,14 @@ export async function importExecutionPayload(
223
229
  });
224
230
  }
225
231
 
232
+ const {source, seenTimestampSec} = payloadInput.getPayloadEnvelopeSource();
233
+ if (execResult.status === ExecutionPayloadStatus.VALID && source === PayloadEnvelopeInputSource.gossip) {
234
+ const nowSec = Date.now() / 1000;
235
+ this.metrics?.gossipExecutionPayloadEnvelope.executionPayload.recvToValidation.observe(nowSec - seenTimestampSec);
236
+ // same metric as pre-gloas, it tracks EL verification time regardless of fork
237
+ this.metrics?.gossipBlock.executionPayload.validationTime.observe(nowSec - verifyStartSec);
238
+ }
239
+
226
240
  // 5. Persist payload envelope to hot DB. Wait for write-queue space here to apply backpressure
227
241
  // on the import pipeline during sync, then perform the write asynchronously to avoid blocking.
228
242
  await this.unfinalizedPayloadEnvelopeWrites.waitForSpace();
@@ -6,6 +6,7 @@ export enum PayloadAttestationErrorCode {
6
6
  PAYLOAD_ATTESTATION_ALREADY_KNOWN = "PAYLOAD_ATTESTATION_ERROR_PAYLOAD_ATTESTATION_ALREADY_KNOWN",
7
7
  UNKNOWN_BLOCK_ROOT = "PAYLOAD_ATTESTATION_ERROR_UNKNOWN_BLOCK_ROOT",
8
8
  INVALID_BLOCK_SLOT = "PAYLOAD_ATTESTATION_ERROR_INVALID_BLOCK_SLOT",
9
+ PRE_GLOAS_SLOT = "PAYLOAD_ATTESTATION_ERROR_PRE_GLOAS_SLOT",
9
10
  INVALID_BLOCK = "PAYLOAD_ATTESTATION_ERROR_INVALID_BLOCK",
10
11
  INVALID_ATTESTER = "PAYLOAD_ATTESTATION_ERROR_INVALID_ATTESTER",
11
12
  INVALID_SIGNATURE = "PAYLOAD_ATTESTATION_ERROR_INVALID_SIGNATURE",
@@ -20,6 +21,7 @@ export type PayloadAttestationErrorType =
20
21
  }
21
22
  | {code: PayloadAttestationErrorCode.UNKNOWN_BLOCK_ROOT; blockRoot: RootHex}
22
23
  | {code: PayloadAttestationErrorCode.INVALID_BLOCK_SLOT; blockRoot: RootHex; blockSlot: Slot; slot: Slot}
24
+ | {code: PayloadAttestationErrorCode.PRE_GLOAS_SLOT; slot: Slot}
23
25
  | {code: PayloadAttestationErrorCode.INVALID_BLOCK; blockRoot: RootHex}
24
26
  | {code: PayloadAttestationErrorCode.INVALID_ATTESTER; attesterIndex: ValidatorIndex}
25
27
  | {code: PayloadAttestationErrorCode.INVALID_SIGNATURE};
@@ -63,10 +63,6 @@ export type BlockProcessOpts = {
63
63
  * Will double processing times. Use only for debugging purposes.
64
64
  */
65
65
  disableBlsBatchVerify?: boolean;
66
- /**
67
- * Assert progressive balances the same to EpochTransitionCache
68
- */
69
- assertCorrectProgressiveBalances?: boolean;
70
66
  /** Used for fork_choice spec tests */
71
67
  disableOnBlockError?: boolean;
72
68
  /** Used for fork_choice spec tests */
@@ -114,7 +110,6 @@ export const defaultChainOptions: IChainOptions = {
114
110
  suggestedFeeRecipient: defaultValidatorOptions.suggestedFeeRecipient,
115
111
  graffitiAppend: true,
116
112
  serveHistoricalState: false,
117
- assertCorrectProgressiveBalances: false,
118
113
  archiveStateEpochFrequency: 1024,
119
114
  archiveMode: DEFAULT_ARCHIVE_MODE,
120
115
  pruneHistory: false,
@@ -1,4 +1,4 @@
1
- import {EMPTY_SIGNATURE, IBeaconStateView} from "@lodestar/state-transition";
1
+ import {EMPTY_SIGNATURE, IBeaconStateView, StateHashTreeRootSource} from "@lodestar/state-transition";
2
2
  import {BeaconBlock, BlindedBeaconBlock, Gwei, Root} from "@lodestar/types";
3
3
  import {Metrics} from "../../metrics/index.js";
4
4
 
@@ -14,5 +14,12 @@ export function computeNewStateRoot(
14
14
  ): {newStateRoot: Root; proposerReward: Gwei; postState: IBeaconStateView} {
15
15
  // Set signature to zero to re-use stateTransition() function which requires the SignedBeaconBlock type
16
16
  const signedBlock = {message: block, signature: EMPTY_SIGNATURE};
17
- return state.computeNewStateRoot({block: signedBlock}, {metrics});
17
+ const {newStateRoot, proposerReward, postState, hashTreeRootTime} = state.computeNewStateRoot(
18
+ {block: signedBlock},
19
+ {metrics}
20
+ );
21
+
22
+ metrics?.stateHashTreeRootTime.observe({source: StateHashTreeRootSource.computeNewStateRoot}, hashTreeRootTime);
23
+
24
+ return {newStateRoot, proposerReward, postState};
18
25
  }
@@ -1,4 +1,5 @@
1
1
  import {
2
+ computeEpochAtSlot,
2
3
  createIndexedSignatureSetFromComponents,
3
4
  getPayloadAttestationDataSigningRoot,
4
5
  isStatePostGloas,
@@ -35,6 +36,14 @@ async function validatePayloadAttestationMessage(
35
36
  ): Promise<PayloadAttestationValidationResult> {
36
37
  const {data, validatorIndex} = payloadAttestationMessage;
37
38
 
39
+ // [REJECT] The payload attestation slot is at or after the Gloas fork.
40
+ if (computeEpochAtSlot(data.slot) < chain.config.GLOAS_FORK_EPOCH) {
41
+ throw new PayloadAttestationError(GossipAction.REJECT, {
42
+ code: PayloadAttestationErrorCode.PRE_GLOAS_SLOT,
43
+ slot: data.slot,
44
+ });
45
+ }
46
+
38
47
  // [IGNORE] The message's slot is for the current slot (with a `MAXIMUM_GOSSIP_CLOCK_DISPARITY` allowance), i.e. `data.slot == current_slot`.
39
48
  if (!chain.clock.isCurrentSlotGivenGossipDisparity(data.slot)) {
40
49
  throw new PayloadAttestationError(GossipAction.IGNORE, {
package/src/db/beacon.ts CHANGED
@@ -11,7 +11,6 @@ import {CheckpointStateRepository} from "./repositories/checkpointState.js";
11
11
  import {
12
12
  AttesterSlashingRepository,
13
13
  BLSToExecutionChangeRepository,
14
- BackfilledRanges,
15
14
  BestLightClientUpdateRepository,
16
15
  BlobSidecarsArchiveRepository,
17
16
  BlobSidecarsRepository,
@@ -61,8 +60,6 @@ export class BeaconDb implements IBeaconDb {
61
60
  syncCommittee: SyncCommitteeRepository;
62
61
  syncCommitteeWitness: SyncCommitteeWitnessRepository;
63
62
 
64
- backfilledRanges: BackfilledRanges;
65
-
66
63
  readonly dataColumns: IDataColumnStore;
67
64
  lastLegacyArchiveSlot: Slot | null = null;
68
65
  private readonly flatFileStore: FlatFileStore;
@@ -97,8 +94,6 @@ export class BeaconDb implements IBeaconDb {
97
94
  this.syncCommittee = new SyncCommitteeRepository(config, db);
98
95
  this.syncCommitteeWitness = new SyncCommitteeWitnessRepository(config, db);
99
96
 
100
- this.backfilledRanges = new BackfilledRanges(config, db);
101
-
102
97
  this.flatFileStore = new FlatFileStore(opts.dataColumnDir, config, opts.logger, opts.metrics);
103
98
  this.dataColumns = new LegacyDataColumnStore(
104
99
  this.flatFileStore,
package/src/db/buckets.ts CHANGED
@@ -56,7 +56,7 @@ export enum Bucket {
56
56
  // altair_lightClientSyncCommitteeProof = 35, // DEPRECATED on v0.32.0
57
57
  // index_lightClientInitProof = 36, // DEPRECATED on v0.32.0
58
58
 
59
- backfilled_ranges = 42, // Backfilled From to To, inclusive of both From, To
59
+ // backfilled_ranges = 42, // DEPRECATED on v1.48.0
60
60
 
61
61
  // Buckets to support LightClient server v2
62
62
  lightClient_syncCommitteeWitness = 51, // BlockRoot -> SyncCommitteeWitness
@@ -6,7 +6,6 @@ import {CheckpointStateRepository} from "./repositories/checkpointState.js";
6
6
  import {
7
7
  AttesterSlashingRepository,
8
8
  BLSToExecutionChangeRepository,
9
- BackfilledRanges,
10
9
  BestLightClientUpdateRepository,
11
10
  BlobSidecarsArchiveRepository,
12
11
  BlobSidecarsRepository,
@@ -60,8 +59,6 @@ export interface IBeaconDb {
60
59
  syncCommittee: SyncCommitteeRepository;
61
60
  syncCommitteeWitness: SyncCommitteeWitnessRepository;
62
61
 
63
- backfilledRanges: BackfilledRanges;
64
-
65
62
  dataColumns: IDataColumnStore;
66
63
  /** Highest legacy column slot at startup; later archival writes the block-root index first. */
67
64
  readonly lastLegacyArchiveSlot: Slot | null;
@@ -1,5 +1,4 @@
1
1
  export {AttesterSlashingRepository} from "./attesterSlashing.js";
2
- export {BackfilledRanges} from "./backfilledRanges.js";
3
2
  export {BlobSidecarsRepository} from "./blobSidecars.js";
4
3
  export {BlobSidecarsArchiveRepository} from "./blobSidecarsArchive.js";
5
4
  export {BlockRepository} from "./block.js";
@@ -1,5 +1,6 @@
1
1
  /** biome-ignore-all lint/suspicious/noTemplateCurlyInString: The metric templates requires to have `${}` in a normal string */
2
2
  import {NotReorgedReason} from "@lodestar/fork-choice";
3
+ import {StateHashTreeRootSource} from "@lodestar/state-transition";
3
4
  import {ArchiveStoreTask} from "../../chain/archiveStore/archiveStore.js";
4
5
  import {FrequencyStateArchiveStep} from "../../chain/archiveStore/strategies/frequencyStateArchiveStrategy.js";
5
6
  import type {LateCanonicalBlockReason} from "../../chain/archiveStore/utils/archiveBlocks.js";
@@ -25,8 +26,13 @@ import type {FlatFileStoreOperation} from "../../db/flatFileStore/metrics.js";
25
26
  import {ExecutionPayloadStatus} from "../../execution/index.js";
26
27
  import {GossipType} from "../../network/index.js";
27
28
  import {CannotAcceptWorkReason, ReprocessRejectReason} from "../../network/processor/index.js";
28
- import {BackfillSyncMethod} from "../../sync/backfill/backfill.js";
29
- import {DownloadResult, DroppedItemReason, FetchResult, PendingBlockType} from "../../sync/types.js";
29
+ import {
30
+ DeferredPayloadResult,
31
+ DownloadResult,
32
+ DroppedItemReason,
33
+ FetchResult,
34
+ PendingBlockType,
35
+ } from "../../sync/types.js";
30
36
  import {PeerSyncType, RangeSyncType} from "../../sync/utils/remoteSyncType.js";
31
37
  import {AllocSource} from "../../util/bufferPool.js";
32
38
  import {DataColumnReconstructionCode} from "../../util/dataColumns.js";
@@ -403,6 +409,15 @@ export function createLodestarMetrics(
403
409
  labelNames: ["caller"],
404
410
  }),
405
411
 
412
+ // this metrics stay here instead of @lodestar/state-transition in order to prepare
413
+ // for the native zig state-transition in the future
414
+ stateHashTreeRootTime: register.histogram<{source: StateHashTreeRootSource}>({
415
+ name: "lodestar_stfn_hash_tree_root_seconds",
416
+ help: "Time to compute the hash tree root of a post state in seconds",
417
+ buckets: [0.01, 0.05, 0.1, 0.2, 0.3, 0.5],
418
+ labelNames: ["source"],
419
+ }),
420
+
406
421
  // BLS verifier thread pool and queue
407
422
 
408
423
  bls: {
@@ -655,6 +670,16 @@ export function createLodestarMetrics(
655
670
  help: "Count of payload (execution payload envelope) sync triggers, labeled by their source",
656
671
  labelNames: ["source"],
657
672
  }),
673
+ deferredPayloadResult: register.counter<{result: DeferredPayloadResult}>({
674
+ name: "lodestar_sync_deferred_payload_result_total",
675
+ help: "Outcome of a slot's deferred optimistic payload searches, by result",
676
+ labelNames: ["result"],
677
+ }),
678
+ deferredPayloadPolls: register.histogram({
679
+ name: "lodestar_sync_deferred_payload_polls_count",
680
+ help: "Poll ticks after PAYLOAD_DUE until a searched payload was imported",
681
+ buckets: [0, 1, 2, 3, 6],
682
+ }),
658
683
  pendingBlocks: register.gauge({
659
684
  name: "lodestar_sync_unknown_block_pending_blocks_size",
660
685
  help: "Current size of UnknownBlockSync pending blocks cache",
@@ -986,6 +1011,13 @@ export function createLodestarMetrics(
986
1011
  help: "Count of errors, by error type, while processing execution payload envelopes",
987
1012
  labelNames: ["error"],
988
1013
  }),
1014
+ executionPayload: {
1015
+ recvToValidation: register.histogram({
1016
+ name: "lodestar_gossip_execution_payload_envelope_received_to_execution_payload_verification_seconds",
1017
+ help: "Time elapsed between execution payload envelope received and execution payload verification",
1018
+ buckets: [0.05, 0.1, 0.25, 0.5, 1, 2, 3, 4, 6, 8],
1019
+ }),
1020
+ },
989
1021
  },
990
1022
  gossipExecutionPayloadBid: {
991
1023
  elapsedTimeTillReceived: register.histogram<{source: OpSource}>({
@@ -1120,30 +1152,6 @@ export function createLodestarMetrics(
1120
1152
  help: "The total result of calling notifyForkchoiceUpdate execution engine api",
1121
1153
  labelNames: ["result"],
1122
1154
  }),
1123
- backfillSync: {
1124
- backfilledTillSlot: register.gauge({
1125
- name: "lodestar_backfill_till_slot",
1126
- help: "Current lowest backfilled slot",
1127
- }),
1128
- prevFinOrWsSlot: register.gauge({
1129
- name: "lodestar_backfill_prev_fin_or_ws_slot",
1130
- help: "Slot of previous finalized or wsCheckpoint block to be validated",
1131
- }),
1132
- totalBlocks: register.gauge<{method: BackfillSyncMethod}>({
1133
- name: "lodestar_backfill_sync_blocks_total",
1134
- help: "Total amount of backfilled blocks",
1135
- labelNames: ["method"],
1136
- }),
1137
- errors: register.gauge({
1138
- name: "lodestar_backfill_sync_errors_total",
1139
- help: "Total number of errors while backfilling",
1140
- }),
1141
- status: register.gauge({
1142
- name: "lodestar_backfill_sync_status",
1143
- help: "Current backfill syncing status: [Aborted, Pending, Syncing, Completed]",
1144
- }),
1145
- },
1146
-
1147
1155
  opPool: {
1148
1156
  aggregatedAttestationPool: {
1149
1157
  size: register.gauge({
@@ -197,6 +197,19 @@ type PreprocessResult =
197
197
  | {action: PreprocessAction.AwaitBlock; root: RootHex}
198
198
  | {action: PreprocessAction.AwaitEnvelope; root: RootHex};
199
199
 
200
+ enum SearchTarget {
201
+ Block,
202
+ PayloadEnvelope,
203
+ }
204
+
205
+ type SearchUnknownRootTarget =
206
+ | {target: SearchTarget.Block}
207
+ | {
208
+ target: SearchTarget.PayloadEnvelope;
209
+ /** The message slot is the payload's slot, so it can be used for UnknownBlockInput search */
210
+ slotIsPayloadSlot: boolean;
211
+ };
212
+
200
213
  /**
201
214
  * Network processor handles the gossip queues and throtles processing to not overload the main thread
202
215
  * - Decides when to process work and what to process
@@ -450,7 +463,7 @@ export class NetworkProcessor {
450
463
  // no need to check if root is a descendant of the current finalized block, it will be checked once we validate the message if needed
451
464
  if (root && !this.chain.forkChoice.hasBlockHexUnsafe(root)) {
452
465
  // starting from GLOAS, unknown root from data_column_sidecar also falls into this case
453
- this.searchUnknownRoot({slot, root}, true, false, peerId);
466
+ this.searchUnknownRoot({slot, root}, peerId, {target: SearchTarget.Block});
454
467
  // for beacon_attestation and beacon_aggregate_and_proof messages, this is only temporary.
455
468
  // if "index = 1" we need to await for the Envelope instead
456
469
  preprocessResult = {action: PreprocessAction.AwaitBlock, root};
@@ -465,27 +478,28 @@ export class NetworkProcessor {
465
478
  if (topicType === GossipType.beacon_block) {
466
479
  const parentRoot = getParentRootFromSignedBeaconBlockSerialized(message.msg.data);
467
480
  if (parentRoot) {
468
- let searchParentBlock = false;
469
- let searchParentEnvelope = false;
481
+ let search: SearchUnknownRootTarget | null = null;
470
482
  if (ForkSeq[fork] >= ForkSeq.gloas) {
471
483
  // GLOAS: also check parent envelope, same logic as execution_payload_bid
472
484
  const parentBlockHash = getParentBlockHashFromGloasSignedBeaconBlockSerialized(message.msg.data);
473
485
  if (parentBlockHash && !this.chain.forkChoice.getBlockHexAndBlockHash(parentRoot, parentBlockHash)) {
474
486
  const protoBlock = this.chain.forkChoice.getBlockHexDefaultStatus(parentRoot);
475
487
  if (protoBlock === null) {
476
- searchParentBlock = true;
488
+ search = {target: SearchTarget.Block};
477
489
  } else if (
478
490
  protoBlock.executionPayloadBlockHash &&
479
491
  protoBlock.executionPayloadBlockHash !== parentBlockHash
480
492
  ) {
481
493
  // only search for the envelope by block root if we're sure there is one. Otherwise UnknownBlockSync will penalize the peer.
482
- searchParentEnvelope = true;
494
+ search = {target: SearchTarget.PayloadEnvelope, slotIsPayloadSlot: false};
483
495
  }
484
496
  }
485
497
  } else if (!this.chain.forkChoice.hasBlockHexUnsafe(parentRoot)) {
486
- searchParentBlock = true;
498
+ search = {target: SearchTarget.Block};
499
+ }
500
+ if (search !== null) {
501
+ this.searchUnknownRoot({slot, root: parentRoot}, peerId, search);
487
502
  }
488
- this.searchUnknownRoot({slot, root: parentRoot}, searchParentBlock, searchParentEnvelope, peerId);
489
503
  }
490
504
  preprocessResult = {action: PreprocessAction.PushToQueue};
491
505
  }
@@ -504,7 +518,10 @@ export class NetworkProcessor {
504
518
  : getDataIndexFromSignedAggregateAndProofSerialized(message.msg.data);
505
519
  if (attIndex === 1 && !this.chain.forkChoice.hasPayloadHexUnsafe(root)) {
506
520
  // attestation votes that the payload is available but it is not yet known
507
- this.searchUnknownRoot({slot, root}, false, true, peerId);
521
+ this.searchUnknownRoot({slot, root}, peerId, {
522
+ target: SearchTarget.PayloadEnvelope,
523
+ slotIsPayloadSlot: false,
524
+ });
508
525
  preprocessResult = {action: PreprocessAction.AwaitEnvelope, root};
509
526
  }
510
527
  break;
@@ -514,8 +531,12 @@ export class NetworkProcessor {
514
531
  const payloadPresent = getPayloadPresentFromPayloadAttestationMessageSerialized(message.msg.data);
515
532
  if (payloadPresent && !this.chain.forkChoice.hasPayloadHexUnsafe(root)) {
516
533
  // payload attestation votes that the payload is available but it is not yet known.
534
+ // this is optimistic search, the peer may not have the payload (only the ptc committee had).
517
535
  // the PTC vote's slot is the payload's slot
518
- this.searchUnknownRoot({slot, root}, false, true, peerId, true);
536
+ this.searchUnknownRoot({slot, root}, undefined, {
537
+ target: SearchTarget.PayloadEnvelope,
538
+ slotIsPayloadSlot: true,
539
+ });
519
540
  // do not await the envelope, payload attestation processing only requires that the block is known
520
541
  // also do not reset preprocessResult, we may already await for the block
521
542
  }
@@ -524,8 +545,12 @@ export class NetworkProcessor {
524
545
  case GossipType.data_column_sidecar: {
525
546
  if (root == null) break;
526
547
  if (!this.chain.forkChoice.hasPayloadHexUnsafe(root)) {
548
+ // this is optimistic search, the peer may not have the payload.
527
549
  // the sidecar's slot is the block's (and so the payload's) slot
528
- this.searchUnknownRoot({slot, root}, false, true, peerId, true);
550
+ this.searchUnknownRoot({slot, root}, undefined, {
551
+ target: SearchTarget.PayloadEnvelope,
552
+ slotIsPayloadSlot: true,
553
+ });
529
554
  // do not await the envelope, we can do gossip validation
530
555
  // also do not reset preprocessResult, we may already await for the block
531
556
  }
@@ -536,7 +561,7 @@ export class NetworkProcessor {
536
561
  // Extract beacon_block_root directly
537
562
  const blockRoot = getBeaconBlockRootFromExecutionPayloadEnvelopeSerialized(message.msg.data);
538
563
  if (blockRoot && !this.chain.forkChoice.hasBlockHexUnsafe(blockRoot)) {
539
- this.searchUnknownRoot({slot, root: blockRoot}, true, false, peerId);
564
+ this.searchUnknownRoot({slot, root: blockRoot}, peerId, {target: SearchTarget.Block});
540
565
  // We always want to await the block
541
566
  // This allows us to properly forward the payload envelope
542
567
  preprocessResult = {action: PreprocessAction.AwaitBlock, root: blockRoot};
@@ -555,13 +580,16 @@ export class NetworkProcessor {
555
580
  ) {
556
581
  const protoBlock = this.chain.forkChoice.getBlockHexDefaultStatus(parentBlockRoot);
557
582
  if (protoBlock === null) {
558
- this.searchUnknownRoot({slot, root: parentBlockRoot}, true, false, peerId);
583
+ this.searchUnknownRoot({slot, root: parentBlockRoot}, peerId, {target: SearchTarget.Block});
559
584
  preprocessResult = {action: PreprocessAction.AwaitBlock, root: parentBlockRoot};
560
585
  } else if (
561
586
  protoBlock.executionPayloadBlockHash &&
562
587
  protoBlock.executionPayloadBlockHash !== parentBlockHash
563
588
  ) {
564
- this.searchUnknownRoot({slot, root: parentBlockRoot}, false, true, peerId);
589
+ this.searchUnknownRoot({slot, root: parentBlockRoot}, peerId, {
590
+ target: SearchTarget.PayloadEnvelope,
591
+ slotIsPayloadSlot: false,
592
+ });
565
593
  preprocessResult = {action: PreprocessAction.AwaitEnvelope, root: parentBlockRoot};
566
594
  }
567
595
  }
@@ -664,20 +692,21 @@ export class NetworkProcessor {
664
692
 
665
693
  /**
666
694
  * Search block/envelope given a SlotRootHex
667
- * envelopeSlotIsPayloadSlot: the message slot is the payload's slot or not
695
+ * undefined peer id means optimistic search
668
696
  */
669
697
  private searchUnknownRoot(
670
698
  slotRoot: SlotRootHex,
671
- searchBlock: boolean,
672
- searchEnvelope: boolean,
673
- peerId: PeerIdStr,
674
- envelopeSlotIsPayloadSlot = false
699
+ peerId: PeerIdStr | undefined,
700
+ search: SearchUnknownRootTarget
675
701
  ): void {
676
- if (!searchBlock && !searchEnvelope) return;
677
702
  if (this.tooManySearchedRoots(slotRoot.slot, slotRoot.root)) return;
678
- if (searchBlock) this.searchUnknownBlock(slotRoot, BlockInputSource.network_processor, peerId);
679
- if (searchEnvelope) {
680
- this.searchUnknownEnvelope(slotRoot, BlockInputSource.network_processor, peerId, envelopeSlotIsPayloadSlot);
703
+ switch (search.target) {
704
+ case SearchTarget.Block:
705
+ this.searchUnknownBlock(slotRoot, BlockInputSource.network_processor, peerId);
706
+ break;
707
+ case SearchTarget.PayloadEnvelope:
708
+ this.searchUnknownEnvelope(slotRoot, BlockInputSource.network_processor, peerId, search.slotIsPayloadSlot);
709
+ break;
681
710
  }
682
711
  }
683
712
 
@@ -8,7 +8,6 @@ import {BeaconConfig} from "@lodestar/config";
8
8
  import type {LoggerNode} from "@lodestar/logger/node";
9
9
  import {ZERO_HASH_HEX} from "@lodestar/params";
10
10
  import {IBeaconStateView, isStatePostBellatrix, isStatePostGloas} from "@lodestar/state-transition";
11
- import {phase0} from "@lodestar/types";
12
11
  import {sleep, toRootHex} from "@lodestar/utils";
13
12
  import {ProcessShutdownCallback} from "@lodestar/validator";
14
13
  import {BeaconRestApiServer, getApi} from "../api/index.js";
@@ -19,7 +18,6 @@ import {initializeExecutionBuilder, initializeExecutionEngine} from "../executio
19
18
  import {HttpMetricsServer, Metrics, createMetrics, getHttpMetricsServer} from "../metrics/index.js";
20
19
  import {MonitoringService} from "../monitoring/index.js";
21
20
  import {Network, getReqRespHandlers} from "../network/index.js";
22
- import {BackfillSync} from "../sync/backfill/index.js";
23
21
  import {BeaconSync, IBeaconSync} from "../sync/index.js";
24
22
  import {Clock} from "../util/clock.js";
25
23
  import {startDeferredVoluntaryExitPublisher} from "./deferredVoluntaryExitPublisher.js";
@@ -38,7 +36,6 @@ export type BeaconNodeModules = {
38
36
  chain: IBeaconChain;
39
37
  api: BeaconApiMethods;
40
38
  sync: IBeaconSync;
41
- backfillSync: BackfillSync | null;
42
39
  metricsServer: HttpMetricsServer | null;
43
40
  monitoring: MonitoringService | null;
44
41
  restApi?: BeaconRestApiServer;
@@ -58,7 +55,6 @@ export type BeaconNodeInitModules = {
58
55
  peerStoreDir?: string;
59
56
  anchorState: IBeaconStateView;
60
57
  isAnchorStateFinalized: boolean;
61
- wsCheckpoint?: phase0.Checkpoint;
62
58
  metricsRegistries?: Registry[];
63
59
  };
64
60
 
@@ -70,7 +66,6 @@ export enum BeaconNodeStatus {
70
66
 
71
67
  enum LoggerModule {
72
68
  api = "api",
73
- backfill = "backfill",
74
69
  chain = "chain",
75
70
  execution = "execution",
76
71
  metrics = "metrics",
@@ -105,7 +100,6 @@ export class BeaconNode {
105
100
  api: BeaconApiMethods;
106
101
  restApi?: BeaconRestApiServer;
107
102
  sync: IBeaconSync;
108
- backfillSync: BackfillSync | null;
109
103
 
110
104
  status: BeaconNodeStatus;
111
105
  private controller?: AbortController;
@@ -123,7 +117,6 @@ export class BeaconNode {
123
117
  api,
124
118
  restApi,
125
119
  sync,
126
- backfillSync,
127
120
  controller,
128
121
  }: BeaconNodeModules) {
129
122
  this.opts = opts;
@@ -138,7 +131,6 @@ export class BeaconNode {
138
131
  this.restApi = restApi;
139
132
  this.network = network;
140
133
  this.sync = sync;
141
- this.backfillSync = backfillSync;
142
134
  this.controller = controller;
143
135
 
144
136
  this.status = BeaconNodeStatus.started;
@@ -161,7 +153,6 @@ export class BeaconNode {
161
153
  peerStoreDir,
162
154
  anchorState,
163
155
  isAnchorStateFinalized,
164
- wsCheckpoint,
165
156
  metricsRegistries = [],
166
157
  }: BeaconNodeInitModules): Promise<T> {
167
158
  if (hasher.name !== "hashtree") {
@@ -295,25 +286,9 @@ export class BeaconNode {
295
286
  chain,
296
287
  metrics,
297
288
  network,
298
- wsCheckpoint,
299
289
  logger: logger.child({module: LoggerModule.sync}),
300
290
  });
301
291
 
302
- const backfillSync =
303
- opts.sync.backfillBatchSize > 0
304
- ? await BackfillSync.init(opts.sync, {
305
- config,
306
- db,
307
- chain,
308
- metrics,
309
- network,
310
- wsCheckpoint,
311
- anchorState,
312
- logger: logger.child({module: LoggerModule.backfill}),
313
- signal,
314
- })
315
- : null;
316
-
317
292
  const api = getApi(opts.api, {
318
293
  config,
319
294
  logger: logger.child({module: LoggerModule.api}),
@@ -361,7 +336,6 @@ export class BeaconNode {
361
336
  api,
362
337
  restApi,
363
338
  sync,
364
- backfillSync,
365
339
  controller,
366
340
  }) as T;
367
341
  }
@@ -373,7 +347,6 @@ export class BeaconNode {
373
347
  if (this.status === BeaconNodeStatus.started) {
374
348
  this.status = BeaconNodeStatus.closing;
375
349
  this.sync.close();
376
- this.backfillSync?.close();
377
350
  if (this.restApi) await this.restApi.close();
378
351
  await this.network.close();
379
352
  if (this.metricsServer) await this.metricsServer.close();
@@ -1,6 +1,6 @@
1
1
  import {routes} from "@lodestar/api";
2
2
  import {BeaconConfig} from "@lodestar/config";
3
- import {Slot, phase0} from "@lodestar/types";
3
+ import {Slot} from "@lodestar/types";
4
4
  import {Logger} from "@lodestar/utils";
5
5
  import {IBeaconChain} from "../chain/index.js";
6
6
  import {IBeaconDb} from "../db/index.js";
@@ -51,5 +51,4 @@ export interface SyncModules {
51
51
  metrics: Metrics | null;
52
52
  logger: Logger;
53
53
  chain: IBeaconChain;
54
- wsCheckpoint?: phase0.Checkpoint;
55
54
  }