@lodestar/state-transition 1.41.0-dev.a35cbde8b3 → 1.41.0-dev.aeb5a213ee

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 (37) hide show
  1. package/lib/cache/stateCache.d.ts +1 -1
  2. package/lib/cache/stateCache.d.ts.map +1 -1
  3. package/lib/index.d.ts +2 -0
  4. package/lib/index.d.ts.map +1 -1
  5. package/lib/index.js +1 -0
  6. package/lib/index.js.map +1 -1
  7. package/lib/lightClient/proofs.d.ts +10 -0
  8. package/lib/lightClient/proofs.d.ts.map +1 -0
  9. package/lib/lightClient/proofs.js +63 -0
  10. package/lib/lightClient/proofs.js.map +1 -0
  11. package/lib/lightClient/types.d.ts +34 -0
  12. package/lib/lightClient/types.d.ts.map +1 -0
  13. package/lib/lightClient/types.js +2 -0
  14. package/lib/lightClient/types.js.map +1 -0
  15. package/lib/stateView/beaconStateView.d.ts +144 -0
  16. package/lib/stateView/beaconStateView.d.ts.map +1 -0
  17. package/lib/stateView/beaconStateView.js +498 -0
  18. package/lib/stateView/beaconStateView.js.map +1 -0
  19. package/lib/stateView/index.d.ts +3 -0
  20. package/lib/stateView/index.d.ts.map +1 -0
  21. package/lib/stateView/index.js +3 -0
  22. package/lib/stateView/index.js.map +1 -0
  23. package/lib/stateView/interface.d.ts +118 -0
  24. package/lib/stateView/interface.d.ts.map +1 -0
  25. package/lib/stateView/interface.js +2 -0
  26. package/lib/stateView/interface.js.map +1 -0
  27. package/lib/util/weakSubjectivity.js +1 -1
  28. package/lib/util/weakSubjectivity.js.map +1 -1
  29. package/package.json +7 -7
  30. package/src/cache/stateCache.ts +1 -1
  31. package/src/index.ts +2 -0
  32. package/src/lightClient/proofs.ts +83 -0
  33. package/src/lightClient/types.ts +33 -0
  34. package/src/stateView/beaconStateView.ts +746 -0
  35. package/src/stateView/index.ts +2 -0
  36. package/src/stateView/interface.ts +196 -0
  37. package/src/util/weakSubjectivity.ts +1 -1
@@ -0,0 +1,498 @@
1
+ import { ProofType, Tree, createProof } from "@chainsafe/persistent-merkle-tree";
2
+ import { PubkeyIndexMap } from "@chainsafe/pubkey-index-map";
3
+ import { ForkSeq, SLOTS_PER_HISTORICAL_ROOT } from "@lodestar/params";
4
+ import { getValidatorStatus, mapToGeneralStatus, } from "@lodestar/types";
5
+ import { VoluntaryExitValidity, getVoluntaryExitValidity } from "../block/processVoluntaryExit.js";
6
+ import { getExpectedWithdrawals } from "../block/processWithdrawals.js";
7
+ import { createCachedBeaconState, isStateValidatorsNodesPopulated, } from "../cache/stateCache.js";
8
+ import { computeUnrealizedCheckpoints } from "../epoch/computeUnrealizedCheckpoints.js";
9
+ import { getFinalizedRootProof, getSyncCommitteesWitness } from "../lightClient/proofs.js";
10
+ import { computeAttestationsRewards } from "../rewards/attestationsRewards.js";
11
+ import { computeBlockRewards } from "../rewards/blockRewards.js";
12
+ import { computeSyncCommitteeRewards } from "../rewards/syncCommitteeRewards.js";
13
+ import { processSlots, stateTransition } from "../stateTransition.js";
14
+ import { getEffectiveBalanceIncrementsZeroInactive } from "../util/balance.js";
15
+ import { getBlockRootAtSlot } from "../util/blockRoot.js";
16
+ import { computeAnchorCheckpoint } from "../util/computeAnchorCheckpoint.js";
17
+ import { computeEpochAtSlot, computeStartSlotAtEpoch } from "../util/epoch.js";
18
+ import { isExecutionEnabled, isExecutionStateType, isMergeTransitionComplete } from "../util/execution.js";
19
+ import { canBuilderCoverBid } from "../util/gloas.js";
20
+ import { loadState } from "../util/loadState/loadState.js";
21
+ import { getRandaoMix } from "../util/seed.js";
22
+ import { getStateTypeFromBytes } from "../util/sszBytes.js";
23
+ import { getLatestWeakSubjectivityCheckpointEpoch } from "../util/weakSubjectivity.js";
24
+ export class BeaconStateView {
25
+ cachedState;
26
+ config;
27
+ // Cached values extracted from the tree
28
+ // phase0
29
+ _fork = null;
30
+ _latestBlockHeader = null;
31
+ // altair
32
+ _currentSyncCommittee = null;
33
+ _nextSyncCommittee = null;
34
+ _previousEpochParticipation = null;
35
+ _currentEpochParticipation = null;
36
+ // bellatrix
37
+ _latestExecutionPayloadHeader = null;
38
+ // capella
39
+ _historicalSummaries = null;
40
+ // electra
41
+ _pendingPartialWithdrawals = null;
42
+ _pendingConsolidations = null;
43
+ _pendingDeposits = null;
44
+ // fulu
45
+ _proposerLookahead = null;
46
+ // gloas
47
+ _executionPayloadAvailability = null;
48
+ _latestExecutionPayloadBid = null;
49
+ constructor(cachedState) {
50
+ this.cachedState = cachedState;
51
+ this.config = cachedState.config;
52
+ }
53
+ // phase0
54
+ get slot() {
55
+ return this.cachedState.slot;
56
+ }
57
+ get fork() {
58
+ if (this._fork === null) {
59
+ this._fork = this.cachedState.fork.toValue();
60
+ }
61
+ return this._fork;
62
+ }
63
+ get epoch() {
64
+ return computeEpochAtSlot(this.slot);
65
+ }
66
+ get genesisTime() {
67
+ return this.cachedState.genesisTime;
68
+ }
69
+ get genesisValidatorsRoot() {
70
+ return this.cachedState.genesisValidatorsRoot;
71
+ }
72
+ get eth1Data() {
73
+ return this.cachedState.eth1Data;
74
+ }
75
+ get latestBlockHeader() {
76
+ if (this._latestBlockHeader === null) {
77
+ this._latestBlockHeader = this.cachedState.latestBlockHeader.toValue();
78
+ }
79
+ return this._latestBlockHeader;
80
+ }
81
+ get previousJustifiedCheckpoint() {
82
+ return this.cachedState.previousJustifiedCheckpoint;
83
+ }
84
+ get currentJustifiedCheckpoint() {
85
+ return this.cachedState.currentJustifiedCheckpoint;
86
+ }
87
+ get finalizedCheckpoint() {
88
+ return this.cachedState.finalizedCheckpoint;
89
+ }
90
+ getBlockRootAtSlot(slot) {
91
+ return getBlockRootAtSlot(this.cachedState, slot);
92
+ }
93
+ getBlockRootAtEpoch(epoch) {
94
+ return this.getBlockRootAtSlot(computeStartSlotAtEpoch(epoch));
95
+ }
96
+ getStateRootAtSlot(slot) {
97
+ return this.cachedState.stateRoots.get(slot % SLOTS_PER_HISTORICAL_ROOT);
98
+ }
99
+ getRandaoMix(epoch) {
100
+ return getRandaoMix(this.cachedState, epoch);
101
+ }
102
+ get previousEpochParticipation() {
103
+ if (this.config.getForkSeq(this.cachedState.slot) < ForkSeq.altair) {
104
+ throw new Error("previousEpochParticipation is not available before Altair");
105
+ }
106
+ if (this._previousEpochParticipation === null) {
107
+ this._previousEpochParticipation = this.cachedState.previousEpochParticipation.toValue();
108
+ }
109
+ return this._previousEpochParticipation;
110
+ }
111
+ // altair
112
+ get currentEpochParticipation() {
113
+ if (this.config.getForkSeq(this.cachedState.slot) < ForkSeq.altair) {
114
+ throw new Error("currentEpochParticipation is not available before Altair");
115
+ }
116
+ if (this._currentEpochParticipation === null) {
117
+ this._currentEpochParticipation = this.cachedState.currentEpochParticipation.toValue();
118
+ }
119
+ return this._currentEpochParticipation;
120
+ }
121
+ // bellatrix
122
+ get latestExecutionPayloadHeader() {
123
+ if (this.config.getForkSeq(this.cachedState.slot) < ForkSeq.bellatrix) {
124
+ throw new Error("latestExecutionPayloadHeader is not available before Bellatrix");
125
+ }
126
+ if (this._latestExecutionPayloadHeader === null) {
127
+ this._latestExecutionPayloadHeader = this.cachedState.latestExecutionPayloadHeader.toValue();
128
+ }
129
+ return this._latestExecutionPayloadHeader;
130
+ }
131
+ // capella
132
+ get historicalSummaries() {
133
+ if (this.config.getForkSeq(this.cachedState.slot) < ForkSeq.capella) {
134
+ throw new Error("Historical summaries are not supported before Capella");
135
+ }
136
+ if (this._historicalSummaries === null) {
137
+ this._historicalSummaries = this.cachedState.historicalSummaries.toValue();
138
+ }
139
+ return this._historicalSummaries;
140
+ }
141
+ // electra
142
+ get pendingDeposits() {
143
+ if (this.config.getForkSeq(this.cachedState.slot) < ForkSeq.electra) {
144
+ throw new Error("Pending deposits are not supported before Electra");
145
+ }
146
+ if (this._pendingDeposits === null) {
147
+ this._pendingDeposits = this.cachedState.pendingDeposits.toValue();
148
+ }
149
+ return this._pendingDeposits;
150
+ }
151
+ get pendingDepositsCount() {
152
+ if (this.config.getForkSeq(this.cachedState.slot) < ForkSeq.electra) {
153
+ throw new Error("Pending deposits are not supported before Electra");
154
+ }
155
+ return this.cachedState.pendingDeposits.length;
156
+ }
157
+ get pendingPartialWithdrawals() {
158
+ if (this.config.getForkSeq(this.cachedState.slot) < ForkSeq.electra) {
159
+ throw new Error("Pending partial withdrawals are not supported before Electra");
160
+ }
161
+ if (this._pendingPartialWithdrawals === null) {
162
+ this._pendingPartialWithdrawals = this.cachedState.pendingPartialWithdrawals.toValue();
163
+ }
164
+ return this._pendingPartialWithdrawals;
165
+ }
166
+ get pendingPartialWithdrawalsCount() {
167
+ if (this.config.getForkSeq(this.cachedState.slot) < ForkSeq.electra) {
168
+ throw new Error("Pending partial withdrawals are not supported before Electra");
169
+ }
170
+ return this.cachedState.pendingPartialWithdrawals.length;
171
+ }
172
+ get pendingConsolidations() {
173
+ if (this.config.getForkSeq(this.cachedState.slot) < ForkSeq.electra) {
174
+ throw new Error("Pending consolidations are not supported before Electra");
175
+ }
176
+ if (this._pendingConsolidations === null) {
177
+ this._pendingConsolidations = this.cachedState.pendingConsolidations.toValue();
178
+ }
179
+ return this._pendingConsolidations;
180
+ }
181
+ get pendingConsolidationsCount() {
182
+ if (this.config.getForkSeq(this.cachedState.slot) < ForkSeq.electra) {
183
+ throw new Error("Pending consolidations are not supported before Electra");
184
+ }
185
+ return this.cachedState.pendingConsolidations.length;
186
+ }
187
+ // fulu
188
+ get proposerLookahead() {
189
+ if (this.config.getForkSeq(this.cachedState.slot) < ForkSeq.fulu) {
190
+ throw new Error("Proposer lookahead is not supported before Fulu");
191
+ }
192
+ if (this._proposerLookahead === null) {
193
+ this._proposerLookahead = this.cachedState.proposerLookahead.toValue();
194
+ }
195
+ return this._proposerLookahead;
196
+ }
197
+ // gloas
198
+ get executionPayloadAvailability() {
199
+ if (this.config.getForkSeq(this.cachedState.slot) < ForkSeq.gloas) {
200
+ throw new Error("executionPayloadAvailability is not available before GLOAS");
201
+ }
202
+ if (this._executionPayloadAvailability === null) {
203
+ this._executionPayloadAvailability = this.cachedState.executionPayloadAvailability
204
+ .toValue()
205
+ .toBoolArray();
206
+ }
207
+ return this._executionPayloadAvailability;
208
+ }
209
+ get latestExecutionPayloadBid() {
210
+ if (this.config.getForkSeq(this.cachedState.slot) < ForkSeq.gloas) {
211
+ throw new Error("latestExecutionPayloadBid is not available before GLOAS");
212
+ }
213
+ if (this._latestExecutionPayloadBid === null) {
214
+ this._latestExecutionPayloadBid = this.cachedState.latestExecutionPayloadBid.toValue();
215
+ }
216
+ return this._latestExecutionPayloadBid;
217
+ }
218
+ getBuilder(index) {
219
+ if (this.config.getForkSeq(this.cachedState.slot) < ForkSeq.gloas) {
220
+ throw new Error("Builders are not supported before GLOAS");
221
+ }
222
+ return this.cachedState.builders.getReadonly(index);
223
+ }
224
+ canBuilderCoverBid(builderIndex, bidAmount) {
225
+ if (this.config.getForkSeq(this.cachedState.slot) < ForkSeq.gloas) {
226
+ throw new Error("Builders are not supported before GLOAS");
227
+ }
228
+ return canBuilderCoverBid(this.cachedState, builderIndex, bidAmount);
229
+ }
230
+ /**
231
+ * Return the index of the validator in the PTC committee for the given slot.
232
+ * return -1 if validator is not in the PTC committee for the given slot.
233
+ */
234
+ validatorPTCCommitteeIndex(validatorIndex, slot) {
235
+ if (this.config.getForkSeq(this.cachedState.slot) < ForkSeq.gloas) {
236
+ throw new Error("PTC committees are not supported before GLOAS");
237
+ }
238
+ const ptcCommittee = this.cachedState.epochCtx.getPayloadTimelinessCommittee(slot);
239
+ return ptcCommittee.indexOf(validatorIndex);
240
+ }
241
+ // Shuffling and committees
242
+ getShufflingAtEpoch(epoch) {
243
+ return this.cachedState.epochCtx.getShufflingAtEpoch(epoch);
244
+ }
245
+ get previousDecisionRoot() {
246
+ return this.cachedState.epochCtx.previousDecisionRoot;
247
+ }
248
+ get currentDecisionRoot() {
249
+ return this.cachedState.epochCtx.currentDecisionRoot;
250
+ }
251
+ get nextDecisionRoot() {
252
+ return this.cachedState.epochCtx.nextDecisionRoot;
253
+ }
254
+ getShufflingDecisionRoot(epoch) {
255
+ return this.cachedState.epochCtx.getShufflingDecisionRoot(epoch);
256
+ }
257
+ getPreviousShuffling() {
258
+ return this.cachedState.epochCtx.previousShuffling;
259
+ }
260
+ getCurrentShuffling() {
261
+ return this.cachedState.epochCtx.currentShuffling;
262
+ }
263
+ getNextShuffling() {
264
+ return this.cachedState.epochCtx.nextShuffling;
265
+ }
266
+ // Proposer shuffling
267
+ get previousProposers() {
268
+ return this.cachedState.epochCtx.proposersPrevEpoch;
269
+ }
270
+ get currentProposers() {
271
+ return this.cachedState.epochCtx.getBeaconProposers();
272
+ }
273
+ get nextProposers() {
274
+ return this.cachedState.epochCtx.getBeaconProposersNextEpoch();
275
+ }
276
+ getBeaconProposer(slot) {
277
+ return this.cachedState.epochCtx.getBeaconProposer(slot);
278
+ }
279
+ computeAnchorCheckpoint() {
280
+ return computeAnchorCheckpoint(this.config, this.cachedState);
281
+ }
282
+ // Sync committees
283
+ get currentSyncCommittee() {
284
+ if (this.config.getForkSeq(this.cachedState.slot) < ForkSeq.altair) {
285
+ throw new Error("currentSyncCommittee is not available before Altair");
286
+ }
287
+ if (this._currentSyncCommittee === null) {
288
+ this._currentSyncCommittee = this.cachedState.currentSyncCommittee.toValue();
289
+ }
290
+ return this._currentSyncCommittee;
291
+ }
292
+ get nextSyncCommittee() {
293
+ if (this.config.getForkSeq(this.cachedState.slot) < ForkSeq.altair) {
294
+ throw new Error("nextSyncCommittee is not available before Altair");
295
+ }
296
+ if (this._nextSyncCommittee === null) {
297
+ this._nextSyncCommittee = this.cachedState.nextSyncCommittee.toValue();
298
+ }
299
+ return this._nextSyncCommittee;
300
+ }
301
+ get currentSyncCommitteeIndexed() {
302
+ return this.cachedState.epochCtx.currentSyncCommitteeIndexed;
303
+ }
304
+ get syncProposerReward() {
305
+ return this.cachedState.epochCtx.syncProposerReward;
306
+ }
307
+ getIndexedSyncCommitteeAtEpoch(epoch) {
308
+ return this.cachedState.epochCtx.getIndexedSyncCommitteeAtEpoch(epoch);
309
+ }
310
+ // Validators and balances
311
+ get effectiveBalanceIncrements() {
312
+ return this.cachedState.epochCtx.effectiveBalanceIncrements;
313
+ }
314
+ getEffectiveBalanceIncrementsZeroInactive() {
315
+ return getEffectiveBalanceIncrementsZeroInactive(this.cachedState);
316
+ }
317
+ getBalance(index) {
318
+ return this.cachedState.balances.get(index);
319
+ }
320
+ getValidator(index) {
321
+ return this.cachedState.validators.getReadonly(index).toValue();
322
+ }
323
+ getValidatorsByStatus(statuses, currentEpoch) {
324
+ const validators = [];
325
+ const validatorsArr = this.cachedState.validators.getAllReadonlyValues();
326
+ for (const validator of validatorsArr) {
327
+ const validatorStatus = getValidatorStatus(validator, currentEpoch);
328
+ if (statuses.has(validatorStatus) || statuses.has(mapToGeneralStatus(validatorStatus))) {
329
+ validators.push(validator);
330
+ }
331
+ }
332
+ return validators;
333
+ }
334
+ get validatorCount() {
335
+ return this.cachedState.validators.length;
336
+ }
337
+ get activeValidatorCount() {
338
+ return this.cachedState.epochCtx.currentShuffling.activeIndices.length;
339
+ }
340
+ getAllValidators() {
341
+ return this.cachedState.validators.getAllReadonlyValues();
342
+ }
343
+ getAllBalances() {
344
+ return this.cachedState.balances.getAll();
345
+ }
346
+ // Merge
347
+ get isExecutionStateType() {
348
+ return this.config.getForkSeq(this.cachedState.slot) >= ForkSeq.bellatrix;
349
+ }
350
+ isExecutionEnabled(block) {
351
+ if (this.config.getForkSeq(this.cachedState.slot) < ForkSeq.bellatrix) {
352
+ return false;
353
+ }
354
+ return isExecutionEnabled(this.cachedState, block);
355
+ }
356
+ get isMergeTransitionComplete() {
357
+ return isExecutionStateType(this.cachedState) && isMergeTransitionComplete(this.cachedState);
358
+ }
359
+ // Block production
360
+ getExpectedWithdrawals() {
361
+ const fork = this.config.getForkSeq(this.cachedState.slot);
362
+ return getExpectedWithdrawals(fork, this.cachedState);
363
+ }
364
+ // API
365
+ get proposerRewards() {
366
+ return this.cachedState.proposerRewards;
367
+ }
368
+ async computeBlockRewards(block, proposerRewards) {
369
+ return computeBlockRewards(this.cachedState.config, block, this.cachedState, proposerRewards);
370
+ }
371
+ async computeAttestationsRewards(validatorIds) {
372
+ return computeAttestationsRewards(this.cachedState.config, this.cachedState.epochCtx.pubkey2index, this.cachedState, validatorIds);
373
+ }
374
+ async computeSyncCommitteeRewards(block, validatorIds) {
375
+ return computeSyncCommitteeRewards(this.cachedState.config, this.cachedState.epochCtx.index2pubkey, block, this.cachedState, validatorIds);
376
+ }
377
+ getLatestWeakSubjectivityCheckpointEpoch() {
378
+ return getLatestWeakSubjectivityCheckpointEpoch(this.config, this.cachedState);
379
+ }
380
+ // Validation
381
+ getVoluntaryExitValidity(signedVoluntaryExit, verifySignature = true) {
382
+ const stateFork = this.config.getForkSeq(this.cachedState.slot);
383
+ return getVoluntaryExitValidity(stateFork, this.cachedState, signedVoluntaryExit, verifySignature);
384
+ }
385
+ isValidVoluntaryExit(signedVoluntaryExit, verifySignature) {
386
+ return this.getVoluntaryExitValidity(signedVoluntaryExit, verifySignature) === VoluntaryExitValidity.valid;
387
+ }
388
+ // Proofs
389
+ getFinalizedRootProof() {
390
+ return getFinalizedRootProof(this.cachedState);
391
+ }
392
+ getSyncCommitteesWitness() {
393
+ const fork = this.config.getForkName(this.cachedState.slot);
394
+ if (ForkSeq[fork] < ForkSeq.altair) {
395
+ throw new Error("Sync committees witness is not available before Altair");
396
+ }
397
+ return getSyncCommitteesWitness(fork, this.cachedState);
398
+ }
399
+ getSingleProof(gindex) {
400
+ return new Tree(this.cachedState.node).getSingleProof(gindex);
401
+ }
402
+ createMultiProof(descriptor) {
403
+ const stateNode = this.cachedState.node;
404
+ return createProof(stateNode, { type: ProofType.compactMulti, descriptor });
405
+ }
406
+ // Fork choice
407
+ computeUnrealizedCheckpoints() {
408
+ return computeUnrealizedCheckpoints(this.cachedState);
409
+ }
410
+ // this is for backward compatible
411
+ get clonedCount() {
412
+ return this.cachedState.clonedCount;
413
+ }
414
+ get clonedCountWithTransferCache() {
415
+ return this.cachedState.clonedCountWithTransferCache;
416
+ }
417
+ get createdWithTransferCache() {
418
+ return this.cachedState.createdWithTransferCache;
419
+ }
420
+ isStateValidatorsNodesPopulated() {
421
+ return isStateValidatorsNodesPopulated(this.cachedState);
422
+ }
423
+ // Serialization
424
+ loadOtherState(stateBytes, seedValidatorsBytes) {
425
+ const { state } = loadState(this.config, this.cachedState, stateBytes, seedValidatorsBytes);
426
+ const cachedState = createCachedBeaconState(state, {
427
+ config: this.config,
428
+ // as of Feb 2026, it's not necessary to sync pubkey cache as it's shared across states in Lodestar
429
+ pubkey2index: this.cachedState.epochCtx.pubkey2index,
430
+ index2pubkey: this.cachedState.epochCtx.index2pubkey,
431
+ }, {
432
+ skipSyncPubkeys: true,
433
+ });
434
+ // load all cache in order for consumers (usually regen.getState()) to process blocks faster
435
+ cachedState.validators.getAllReadonlyValues();
436
+ cachedState.balances.getAll();
437
+ return new BeaconStateView(cachedState);
438
+ }
439
+ serialize() {
440
+ return this.cachedState.serialize();
441
+ }
442
+ serializedSize() {
443
+ return this.cachedState.type.tree_serializedSize(this.cachedState.node);
444
+ }
445
+ serializeToBytes(output, offset) {
446
+ return this.cachedState.serializeToBytes(output, offset);
447
+ }
448
+ serializeValidators() {
449
+ return this.cachedState.validators.serialize();
450
+ }
451
+ serializedValidatorsSize() {
452
+ const type = this.cachedState.type.fields.validators;
453
+ return type.tree_serializedSize(this.cachedState.validators.node);
454
+ }
455
+ serializeValidatorsToBytes(output, offset) {
456
+ return this.cachedState.validators.serializeToBytes(output, offset);
457
+ }
458
+ hashTreeRoot() {
459
+ return this.cachedState.hashTreeRoot();
460
+ }
461
+ // State transition
462
+ stateTransition(signedBlock, options, { metrics, validatorMonitor }) {
463
+ const newState = stateTransition(this.cachedState, signedBlock, options, { metrics, validatorMonitor });
464
+ return new BeaconStateView(newState);
465
+ }
466
+ processSlots(slot, epochTransitionCacheOpts, modules) {
467
+ const newState = processSlots(this.cachedState, slot, epochTransitionCacheOpts, modules);
468
+ return new BeaconStateView(newState);
469
+ }
470
+ }
471
+ /**
472
+ * Create BeaconStateView for historical state regen, no need to sync pubkey cache there.
473
+ */
474
+ export function createBeaconStateViewForHistoricalRegen(config, stateBytes) {
475
+ const state = getStateTypeFromBytes(config, stateBytes).deserializeToViewDU(stateBytes);
476
+ const pubkey2index = new PubkeyIndexMap();
477
+ syncPubkeyCache(state, pubkey2index);
478
+ const cachedState = createCachedBeaconState(state, {
479
+ config,
480
+ pubkey2index,
481
+ index2pubkey: [],
482
+ }, {
483
+ skipSyncPubkeys: true,
484
+ });
485
+ return new BeaconStateView(cachedState);
486
+ }
487
+ /**
488
+ * Populate a PubkeyIndexMap with any new entries based on a BeaconState
489
+ */
490
+ function syncPubkeyCache(state, pubkey2index) {
491
+ // Get the validators sub tree once for all the loop
492
+ const newCount = state.validators.length;
493
+ for (let i = pubkey2index.size; i < newCount; i++) {
494
+ const pubkey = state.validators.getReadonly(i).pubkey;
495
+ pubkey2index.set(pubkey, i);
496
+ }
497
+ }
498
+ //# sourceMappingURL=beaconStateView.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"beaconStateView.js","sourceRoot":"","sources":["../../src/stateView/beaconStateView.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,3 @@
1
+ export * from "./beaconStateView.js";
2
+ export * from "./interface.js";
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/stateView/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,gBAAgB,CAAC"}
@@ -0,0 +1,3 @@
1
+ export * from "./beaconStateView.js";
2
+ export * from "./interface.js";
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/stateView/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,gBAAgB,CAAC"}
@@ -0,0 +1,118 @@
1
+ import { CompactMultiProof } from "@chainsafe/persistent-merkle-tree";
2
+ import { ByteViews } from "@chainsafe/ssz";
3
+ import { BeaconBlock, BlindedBeaconBlock, BuilderIndex, Bytes32, Epoch, ExecutionPayloadBid, ExecutionPayloadHeader, Root, RootHex, SignedBeaconBlock, SignedBlindedBeaconBlock, Slot, ValidatorIndex, altair, capella, electra, fulu, gloas, phase0, rewards } from "@lodestar/types";
4
+ import { Checkpoint, Fork } from "@lodestar/types/phase0";
5
+ import { VoluntaryExitValidity } from "../block/processVoluntaryExit.js";
6
+ import { EffectiveBalanceIncrements } from "../cache/effectiveBalanceIncrements.js";
7
+ import { EpochTransitionCacheOpts } from "../cache/epochTransitionCache.js";
8
+ import { RewardCache } from "../cache/rewardCache.js";
9
+ import { SyncCommitteeCache } from "../cache/syncCommitteeCache.js";
10
+ import { SyncCommitteeWitness } from "../lightClient/types.js";
11
+ import { StateTransitionModules, StateTransitionOpts } from "../stateTransition.js";
12
+ import { EpochShuffling } from "../util/epochShuffling.js";
13
+ /**
14
+ * A read-only view of the BeaconState.
15
+ */
16
+ export interface IBeaconStateView {
17
+ slot: Slot;
18
+ fork: Fork;
19
+ epoch: Epoch;
20
+ genesisTime: number;
21
+ genesisValidatorsRoot: Root;
22
+ eth1Data: phase0.Eth1Data;
23
+ latestBlockHeader: phase0.BeaconBlockHeader;
24
+ previousJustifiedCheckpoint: Checkpoint;
25
+ currentJustifiedCheckpoint: Checkpoint;
26
+ finalizedCheckpoint: Checkpoint;
27
+ getBlockRootAtSlot(slot: Slot): Root;
28
+ getBlockRootAtEpoch(epoch: Epoch): Root;
29
+ getStateRootAtSlot(slot: Slot): Root;
30
+ getRandaoMix(epoch: Epoch): Bytes32;
31
+ previousEpochParticipation: number[];
32
+ currentEpochParticipation: number[];
33
+ latestExecutionPayloadHeader: ExecutionPayloadHeader;
34
+ historicalSummaries: capella.HistoricalSummaries;
35
+ pendingDeposits: electra.PendingDeposits;
36
+ pendingDepositsCount: number;
37
+ pendingPartialWithdrawals: electra.PendingPartialWithdrawals;
38
+ pendingPartialWithdrawalsCount: number;
39
+ pendingConsolidations: electra.PendingConsolidations;
40
+ pendingConsolidationsCount: number;
41
+ proposerLookahead: fulu.ProposerLookahead;
42
+ executionPayloadAvailability: boolean[];
43
+ latestExecutionPayloadBid: ExecutionPayloadBid;
44
+ getBuilder(index: BuilderIndex): gloas.Builder;
45
+ canBuilderCoverBid(builderIndex: BuilderIndex, bidAmount: number): boolean;
46
+ validatorPTCCommitteeIndex(validatorIndex: ValidatorIndex, slot: Slot): number;
47
+ getShufflingAtEpoch(epoch: Epoch): EpochShuffling;
48
+ previousDecisionRoot: RootHex;
49
+ currentDecisionRoot: RootHex;
50
+ nextDecisionRoot: RootHex;
51
+ getShufflingDecisionRoot(epoch: Epoch): RootHex;
52
+ getPreviousShuffling(): EpochShuffling;
53
+ getCurrentShuffling(): EpochShuffling;
54
+ getNextShuffling(): EpochShuffling;
55
+ previousProposers: ValidatorIndex[] | null;
56
+ currentProposers: ValidatorIndex[];
57
+ nextProposers: ValidatorIndex[];
58
+ getBeaconProposer(slot: Slot): ValidatorIndex;
59
+ computeAnchorCheckpoint(): {
60
+ checkpoint: phase0.Checkpoint;
61
+ blockHeader: phase0.BeaconBlockHeader;
62
+ };
63
+ currentSyncCommittee: altair.SyncCommittee;
64
+ nextSyncCommittee: altair.SyncCommittee;
65
+ currentSyncCommitteeIndexed: SyncCommitteeCache;
66
+ syncProposerReward: number;
67
+ getIndexedSyncCommitteeAtEpoch(epoch: Epoch): SyncCommitteeCache;
68
+ effectiveBalanceIncrements: EffectiveBalanceIncrements;
69
+ getEffectiveBalanceIncrementsZeroInactive(): EffectiveBalanceIncrements;
70
+ getBalance(index: number): number;
71
+ getValidator(index: ValidatorIndex): phase0.Validator;
72
+ getValidatorsByStatus(statuses: Set<string>, currentEpoch: Epoch): phase0.Validator[];
73
+ validatorCount: number;
74
+ activeValidatorCount: number;
75
+ getAllValidators(): phase0.Validator[];
76
+ getAllBalances(): number[];
77
+ isExecutionStateType: boolean;
78
+ isMergeTransitionComplete: boolean;
79
+ isExecutionEnabled(block: BeaconBlock | BlindedBeaconBlock): boolean;
80
+ getExpectedWithdrawals(): {
81
+ expectedWithdrawals: capella.Withdrawal[];
82
+ processedBuilderWithdrawalsCount: number;
83
+ processedPartialWithdrawalsCount: number;
84
+ processedValidatorSweepCount: number;
85
+ };
86
+ proposerRewards: RewardCache;
87
+ computeBlockRewards(block: BeaconBlock, proposerRewards?: RewardCache): Promise<rewards.BlockRewards>;
88
+ computeAttestationsRewards(validatorIds?: (ValidatorIndex | string)[]): Promise<rewards.AttestationsRewards>;
89
+ computeSyncCommitteeRewards(block: BeaconBlock, validatorIds: (ValidatorIndex | string)[]): Promise<rewards.SyncCommitteeRewards>;
90
+ getLatestWeakSubjectivityCheckpointEpoch(): Epoch;
91
+ getVoluntaryExitValidity(signedVoluntaryExit: phase0.SignedVoluntaryExit, verifySignature: boolean): VoluntaryExitValidity;
92
+ isValidVoluntaryExit(signedVoluntaryExit: phase0.SignedVoluntaryExit, verifySignature: boolean): boolean;
93
+ getFinalizedRootProof(): Uint8Array[];
94
+ getSyncCommitteesWitness(): SyncCommitteeWitness;
95
+ getSingleProof(gindex: bigint): Uint8Array[];
96
+ createMultiProof(descriptor: Uint8Array): CompactMultiProof;
97
+ computeUnrealizedCheckpoints(): {
98
+ justifiedCheckpoint: phase0.Checkpoint;
99
+ finalizedCheckpoint: phase0.Checkpoint;
100
+ };
101
+ clonedCount: number;
102
+ clonedCountWithTransferCache: number;
103
+ createdWithTransferCache: boolean;
104
+ isStateValidatorsNodesPopulated(): boolean;
105
+ loadOtherState(stateBytes: Uint8Array, seedValidatorsBytes?: Uint8Array): IBeaconStateView;
106
+ serialize(): Uint8Array;
107
+ serializedSize(): number;
108
+ serializeToBytes(output: ByteViews, offset: number): number;
109
+ serializeValidators(): Uint8Array;
110
+ serializedValidatorsSize(): number;
111
+ serializeValidatorsToBytes(output: ByteViews, offset: number): number;
112
+ hashTreeRoot(): Uint8Array;
113
+ stateTransition(signedBlock: SignedBeaconBlock | SignedBlindedBeaconBlock, options: StateTransitionOpts, modules: StateTransitionModules): IBeaconStateView;
114
+ processSlots(slot: Slot, epochTransitionCacheOpts?: EpochTransitionCacheOpts & {
115
+ dontTransferCache?: boolean;
116
+ }, modules?: StateTransitionModules): IBeaconStateView;
117
+ }
118
+ //# sourceMappingURL=interface.d.ts.map