@lodestar/fork-choice 1.43.0 → 1.44.0-dev.0e1ac44567
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/lib/forkChoice/forkChoice.d.ts +6 -4
- package/lib/forkChoice/forkChoice.d.ts.map +1 -1
- package/lib/forkChoice/forkChoice.js +40 -30
- package/lib/forkChoice/forkChoice.js.map +1 -1
- package/lib/forkChoice/interface.d.ts +7 -8
- package/lib/forkChoice/interface.d.ts.map +1 -1
- package/lib/forkChoice/interface.js.map +1 -1
- package/lib/protoArray/interface.d.ts +1 -0
- package/lib/protoArray/interface.d.ts.map +1 -1
- package/lib/protoArray/protoArray.d.ts +45 -20
- package/lib/protoArray/protoArray.d.ts.map +1 -1
- package/lib/protoArray/protoArray.js +116 -33
- package/lib/protoArray/protoArray.js.map +1 -1
- package/package.json +7 -7
- package/src/forkChoice/forkChoice.ts +50 -31
- package/src/forkChoice/interface.ts +23 -7
- package/src/protoArray/interface.ts +8 -0
- package/src/protoArray/protoArray.ts +120 -36
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
import {DataAvailabilityStatus, EffectiveBalanceIncrements, IBeaconStateView} from "@lodestar/state-transition";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
AttesterSlashing,
|
|
4
|
+
BeaconBlock,
|
|
5
|
+
Epoch,
|
|
6
|
+
IndexedAttestation,
|
|
7
|
+
Root,
|
|
8
|
+
RootHex,
|
|
9
|
+
Slot,
|
|
10
|
+
ValidatorIndex,
|
|
11
|
+
} from "@lodestar/types";
|
|
3
12
|
import {
|
|
4
13
|
BlockExecutionStatus,
|
|
5
14
|
LVHExecResponse,
|
|
@@ -145,7 +154,8 @@ export interface IForkChoice {
|
|
|
145
154
|
blockDelaySec: number,
|
|
146
155
|
currentSlot: Slot,
|
|
147
156
|
executionStatus: BlockExecutionStatus,
|
|
148
|
-
dataAvailabilityStatus: DataAvailabilityStatus
|
|
157
|
+
dataAvailabilityStatus: DataAvailabilityStatus,
|
|
158
|
+
expectedProposerIndex: ValidatorIndex | null
|
|
149
159
|
): ProtoBlock;
|
|
150
160
|
/**
|
|
151
161
|
* Register `attestation` with the fork choice DAG so that it may influence future calls to `getHead`.
|
|
@@ -181,12 +191,14 @@ export interface IForkChoice {
|
|
|
181
191
|
* ## Specification
|
|
182
192
|
*
|
|
183
193
|
* https://github.com/ethereum/consensus-specs/blob/v1.7.0-alpha.0/specs/gloas/fork-choice.md#new-notify_ptc_messages
|
|
184
|
-
*
|
|
185
|
-
* @param blockRoot - The beacon block root being attested
|
|
186
|
-
* @param ptcIndices - Array of PTC committee indices that voted
|
|
187
|
-
* @param payloadPresent - Whether validators attest the payload is present
|
|
188
194
|
*/
|
|
189
|
-
notifyPtcMessages(
|
|
195
|
+
notifyPtcMessages(
|
|
196
|
+
blockRoot: RootHex,
|
|
197
|
+
slot: Slot,
|
|
198
|
+
ptcIndices: number[],
|
|
199
|
+
payloadPresent: boolean,
|
|
200
|
+
blobDataAvailable: boolean
|
|
201
|
+
): void;
|
|
190
202
|
/**
|
|
191
203
|
* Notify fork choice that an execution payload has arrived (Gloas fork)
|
|
192
204
|
* Creates the FULL variant of a Gloas block when the payload becomes available
|
|
@@ -198,11 +210,13 @@ export interface IForkChoice {
|
|
|
198
210
|
* @param blockRoot - The beacon block root for which the payload arrived
|
|
199
211
|
* @param executionPayloadBlockHash - The block hash of the execution payload
|
|
200
212
|
* @param executionPayloadNumber - The block number of the execution payload
|
|
213
|
+
* @param executionPayloadGasLimit - The gas limit of the execution payload
|
|
201
214
|
*/
|
|
202
215
|
onExecutionPayload(
|
|
203
216
|
blockRoot: RootHex,
|
|
204
217
|
executionPayloadBlockHash: RootHex,
|
|
205
218
|
executionPayloadNumber: number,
|
|
219
|
+
executionPayloadGasLimit: number,
|
|
206
220
|
executionStatus: PayloadExecutionStatus,
|
|
207
221
|
dataAvailabilityStatus: DataAvailabilityStatus
|
|
208
222
|
): void;
|
|
@@ -242,6 +256,8 @@ export interface IForkChoice {
|
|
|
242
256
|
getBlockHexDefaultStatus(blockRoot: RootHex): ProtoBlock | null;
|
|
243
257
|
getBlockHexAndBlockHash(blockRoot: RootHex, blockHash: RootHex): ProtoBlock | null;
|
|
244
258
|
shouldExtendPayload(blockRoot: RootHex): boolean;
|
|
259
|
+
/** Spec: should_build_on_full(store, head) */
|
|
260
|
+
shouldBuildOnFull(head: ProtoBlock): boolean;
|
|
245
261
|
getFinalizedBlock(): ProtoBlock;
|
|
246
262
|
getJustifiedBlock(): ProtoBlock;
|
|
247
263
|
getFinalizedCheckpointSlot(): Slot;
|
|
@@ -87,6 +87,14 @@ export type BlockExtraMeta =
|
|
|
87
87
|
// - payload block hash for FULL variant
|
|
88
88
|
executionPayloadBlockHash: RootHex;
|
|
89
89
|
executionPayloadNumber: UintNum64;
|
|
90
|
+
// Gas limit of the executed payload identified by executionPayloadBlockHash. Set on
|
|
91
|
+
// pre-Gloas blocks (from block.body.executionPayload.gasLimit) and on Gloas variants:
|
|
92
|
+
// - PENDING/EMPTY: inherited from the parent payload that the bid commits to extend
|
|
93
|
+
// (matches executionPayloadBlockHash, which also points to that parent payload)
|
|
94
|
+
// - FULL: the actual delivered payload's gasLimit (set in onExecutionPayload)
|
|
95
|
+
// Consumers (e.g. Gloas bid gas-limit validation) can read this without re-deriving from
|
|
96
|
+
// state.
|
|
97
|
+
executionPayloadGasLimit: UintNum64;
|
|
90
98
|
executionStatus: Exclude<ExecutionStatus, ExecutionStatus.PreMerge>;
|
|
91
99
|
dataAvailabilityStatus: DataAvailabilityStatus;
|
|
92
100
|
}
|
|
@@ -21,6 +21,29 @@ import {
|
|
|
21
21
|
* Spec: gloas/fork-choice.md (PAYLOAD_TIMELY_THRESHOLD = PTC_SIZE // 2)
|
|
22
22
|
*/
|
|
23
23
|
const PAYLOAD_TIMELY_THRESHOLD = Math.floor(PTC_SIZE / 2);
|
|
24
|
+
/**
|
|
25
|
+
* Threshold for blob data availability via PTC vote
|
|
26
|
+
* Spec: gloas/fork-choice.md (DATA_AVAILABILITY_TIMELY_THRESHOLD = PTC_SIZE // 2)
|
|
27
|
+
*/
|
|
28
|
+
const DATA_AVAILABILITY_TIMELY_THRESHOLD = Math.floor(PTC_SIZE / 2);
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* popcount(attended AND NOT yes) — explicit False-vote count.
|
|
32
|
+
* Excludes PTC members who didn't attest (the None state).
|
|
33
|
+
*/
|
|
34
|
+
export function countNoVotes(attended: BitArray, yes: BitArray): number {
|
|
35
|
+
const a = attended.uint8Array;
|
|
36
|
+
const y = yes.uint8Array;
|
|
37
|
+
let count = 0;
|
|
38
|
+
for (let i = 0; i < a.length; i++) {
|
|
39
|
+
let byte = a[i] & ~y[i] & 0xff;
|
|
40
|
+
while (byte) {
|
|
41
|
+
byte &= byte - 1;
|
|
42
|
+
count++;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
return count;
|
|
46
|
+
}
|
|
24
47
|
|
|
25
48
|
export const DEFAULT_PRUNE_THRESHOLD = 0;
|
|
26
49
|
type ProposerBoost = {root: RootHex; score: number};
|
|
@@ -64,12 +87,25 @@ export class ProtoArray {
|
|
|
64
87
|
/**
|
|
65
88
|
* PTC (Payload Timeliness Committee) votes per block as bitvectors
|
|
66
89
|
* Maps block root to BitArray of PTC_SIZE bits (512 mainnet, 2 minimal)
|
|
67
|
-
* Spec: gloas/fork-choice.md#modified-store (
|
|
90
|
+
* Spec: gloas/fork-choice.md#modified-store (payload_timeliness_vote)
|
|
68
91
|
*
|
|
69
|
-
* Bit i
|
|
70
|
-
* Used by is_payload_timely() to determine if payload is timely
|
|
92
|
+
* Bit i = PTC member i voted payloadPresent=true (timeliness YES vote)
|
|
71
93
|
*/
|
|
72
94
|
private ptcVotes = new Map<RootHex, BitArray>();
|
|
95
|
+
/**
|
|
96
|
+
* Blob data availability votes per block.
|
|
97
|
+
* Spec: gloas/fork-choice.md#modified-store (payload_data_availability_vote)
|
|
98
|
+
*
|
|
99
|
+
* Bit i = PTC member i voted blobDataAvailable=true (DA YES vote)
|
|
100
|
+
*/
|
|
101
|
+
private daVotes = new Map<RootHex, BitArray>();
|
|
102
|
+
/**
|
|
103
|
+
* Tracks which PTC members have attested at all (any payload_status).
|
|
104
|
+
* Without this, we cannot tell "didn't vote" (None) from "voted false" —
|
|
105
|
+
* a distinction required by payload_timeliness/payload_data_availability
|
|
106
|
+
* when called with the negative parameter value.
|
|
107
|
+
*/
|
|
108
|
+
private ptcAttested = new Map<RootHex, BitArray>();
|
|
73
109
|
|
|
74
110
|
constructor({
|
|
75
111
|
pruneThreshold,
|
|
@@ -514,9 +550,11 @@ export class ProtoArray {
|
|
|
514
550
|
// Update bestChild for PENDING → EMPTY edge
|
|
515
551
|
this.maybeUpdateBestChildAndDescendant(pendingIndex, emptyIndex, currentSlot, proposerBoostRoot);
|
|
516
552
|
|
|
517
|
-
// Initialize PTC
|
|
518
|
-
// Spec: gloas/fork-choice.md#modified-on_block
|
|
553
|
+
// Initialize PTC vote bitvectors for this block.
|
|
554
|
+
// Spec: gloas/fork-choice.md#modified-on_block
|
|
519
555
|
this.ptcVotes.set(block.blockRoot, BitArray.fromBitLen(PTC_SIZE));
|
|
556
|
+
this.ptcAttested.set(block.blockRoot, BitArray.fromBitLen(PTC_SIZE));
|
|
557
|
+
this.daVotes.set(block.blockRoot, BitArray.fromBitLen(PTC_SIZE));
|
|
520
558
|
} else {
|
|
521
559
|
// Pre-Gloas: Only create FULL node (payload embedded in block)
|
|
522
560
|
const node: ProtoNode = {
|
|
@@ -558,6 +596,7 @@ export class ProtoArray {
|
|
|
558
596
|
currentSlot: Slot,
|
|
559
597
|
executionPayloadBlockHash: RootHex,
|
|
560
598
|
executionPayloadNumber: number,
|
|
599
|
+
executionPayloadGasLimit: number,
|
|
561
600
|
proposerBoostRoot: RootHex | null,
|
|
562
601
|
executionStatus: PayloadExecutionStatus,
|
|
563
602
|
dataAvailabilityStatus: DataAvailabilityStatus
|
|
@@ -613,6 +652,7 @@ export class ProtoArray {
|
|
|
613
652
|
executionStatus,
|
|
614
653
|
executionPayloadBlockHash,
|
|
615
654
|
executionPayloadNumber,
|
|
655
|
+
executionPayloadGasLimit,
|
|
616
656
|
dataAvailabilityStatus,
|
|
617
657
|
};
|
|
618
658
|
|
|
@@ -634,25 +674,37 @@ export class ProtoArray {
|
|
|
634
674
|
|
|
635
675
|
/**
|
|
636
676
|
* Update PTC votes for multiple validators attesting to a block
|
|
637
|
-
* Spec: gloas/fork-choice.md#new-
|
|
638
|
-
*
|
|
639
|
-
* @param blockRoot - The beacon block root being attested
|
|
640
|
-
* @param ptcIndices - Array of PTC committee indices that voted (0..PTC_SIZE-1)
|
|
641
|
-
* @param payloadPresent - Whether the validators attest the payload is present
|
|
677
|
+
* Spec: gloas/fork-choice.md#new-notify_ptc_messages
|
|
642
678
|
*/
|
|
643
|
-
notifyPtcMessages(
|
|
679
|
+
notifyPtcMessages(
|
|
680
|
+
blockRoot: RootHex,
|
|
681
|
+
slot: Slot,
|
|
682
|
+
ptcIndices: number[],
|
|
683
|
+
payloadPresent: boolean,
|
|
684
|
+
blobDataAvailable: boolean
|
|
685
|
+
): void {
|
|
644
686
|
const votes = this.ptcVotes.get(blockRoot);
|
|
645
|
-
|
|
687
|
+
const attended = this.ptcAttested.get(blockRoot);
|
|
688
|
+
const daVotes = this.daVotes.get(blockRoot);
|
|
689
|
+
if (votes === undefined || attended === undefined || daVotes === undefined) {
|
|
646
690
|
// Block not found or not a Gloas block, ignore
|
|
647
691
|
return;
|
|
648
692
|
}
|
|
649
693
|
|
|
694
|
+
// PTC votes can only change the vote for their assigned beacon block, return early otherwise
|
|
695
|
+
const nodeIndex = this.getDefaultNodeIndex(blockRoot);
|
|
696
|
+
const node = nodeIndex !== undefined ? this.getNodeByIndex(nodeIndex) : undefined;
|
|
697
|
+
if (node === undefined || node.slot !== slot) {
|
|
698
|
+
return;
|
|
699
|
+
}
|
|
700
|
+
|
|
650
701
|
for (const ptcIndex of ptcIndices) {
|
|
651
702
|
if (ptcIndex < 0 || ptcIndex >= PTC_SIZE) {
|
|
652
703
|
throw new Error(`Invalid PTC index: ${ptcIndex}, must be 0..${PTC_SIZE - 1}`);
|
|
653
704
|
}
|
|
654
|
-
|
|
655
705
|
votes.set(ptcIndex, payloadPresent);
|
|
706
|
+
daVotes.set(ptcIndex, blobDataAvailable);
|
|
707
|
+
attended.set(ptcIndex, true);
|
|
656
708
|
}
|
|
657
709
|
}
|
|
658
710
|
|
|
@@ -667,31 +719,61 @@ export class ProtoArray {
|
|
|
667
719
|
}
|
|
668
720
|
|
|
669
721
|
/**
|
|
670
|
-
*
|
|
671
|
-
* Spec: gloas/fork-choice.md#new-is_payload_timely
|
|
672
|
-
*
|
|
673
|
-
* Returns true if:
|
|
674
|
-
* 1. Block has PTC votes tracked
|
|
675
|
-
* 2. Payload is locally available (FULL variant exists in proto array)
|
|
676
|
-
* 3. More than PAYLOAD_TIMELY_THRESHOLD (>50% of PTC) members voted payload_present=true
|
|
677
|
-
*
|
|
678
|
-
* @param blockRoot - The beacon block root to check
|
|
722
|
+
* Spec: payload_timeliness(store, root, timely=True)
|
|
679
723
|
*/
|
|
680
724
|
isPayloadTimely(blockRoot: RootHex): boolean {
|
|
681
725
|
const votes = this.ptcVotes.get(blockRoot);
|
|
682
|
-
if (votes === undefined)
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
726
|
+
if (votes === undefined) return false;
|
|
727
|
+
if (!this.hasPayload(blockRoot)) return false;
|
|
728
|
+
return bitCount(votes.uint8Array) > PAYLOAD_TIMELY_THRESHOLD;
|
|
729
|
+
}
|
|
686
730
|
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
731
|
+
/**
|
|
732
|
+
* Spec: payload_timeliness(store, root, timely=False)
|
|
733
|
+
*/
|
|
734
|
+
isPayloadNotTimely(blockRoot: RootHex): boolean {
|
|
735
|
+
const votes = this.ptcVotes.get(blockRoot);
|
|
736
|
+
const attended = this.ptcAttested.get(blockRoot);
|
|
737
|
+
if (votes === undefined || attended === undefined) return false;
|
|
738
|
+
// Spec: not verified locally → returns `not False = True`
|
|
739
|
+
if (!this.hasPayload(blockRoot)) return true;
|
|
740
|
+
return countNoVotes(attended, votes) > PAYLOAD_TIMELY_THRESHOLD;
|
|
741
|
+
}
|
|
691
742
|
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
743
|
+
/**
|
|
744
|
+
* Spec: payload_data_availability(store, root, available=True)
|
|
745
|
+
*/
|
|
746
|
+
isPayloadDataAvailable(blockRoot: RootHex): boolean {
|
|
747
|
+
const daVotes = this.daVotes.get(blockRoot);
|
|
748
|
+
if (daVotes === undefined) return false;
|
|
749
|
+
if (!this.hasPayload(blockRoot)) return false;
|
|
750
|
+
return bitCount(daVotes.uint8Array) > DATA_AVAILABILITY_TIMELY_THRESHOLD;
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
/**
|
|
754
|
+
* Spec: payload_data_availability(store, root, available=False)
|
|
755
|
+
*/
|
|
756
|
+
isPayloadDataNotAvailable(blockRoot: RootHex): boolean {
|
|
757
|
+
const daVotes = this.daVotes.get(blockRoot);
|
|
758
|
+
const attended = this.ptcAttested.get(blockRoot);
|
|
759
|
+
if (daVotes === undefined || attended === undefined) return false;
|
|
760
|
+
// Spec: not verified locally → returns `not False = True`
|
|
761
|
+
if (!this.hasPayload(blockRoot)) return true;
|
|
762
|
+
return countNoVotes(attended, daVotes) > DATA_AVAILABILITY_TIMELY_THRESHOLD;
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
/**
|
|
766
|
+
* Spec: should_build_on_full(store, head)
|
|
767
|
+
*
|
|
768
|
+
* The proposer is forced to build on the EMPTY variant (effectively reorging)
|
|
769
|
+
* when the PTC majority voted that the blob data is not available.
|
|
770
|
+
*/
|
|
771
|
+
shouldBuildOnFull(head: ProtoBlock): boolean {
|
|
772
|
+
if (head.payloadStatus === PayloadStatus.PENDING) {
|
|
773
|
+
throw new Error("shouldBuildOnFull called with PENDING head");
|
|
774
|
+
}
|
|
775
|
+
if (head.payloadStatus === PayloadStatus.EMPTY) return false;
|
|
776
|
+
return !this.isPayloadDataNotAvailable(head.blockRoot);
|
|
695
777
|
}
|
|
696
778
|
|
|
697
779
|
/**
|
|
@@ -709,7 +791,7 @@ export class ProtoArray {
|
|
|
709
791
|
* Spec: gloas/fork-choice.md#new-should_extend_payload
|
|
710
792
|
*
|
|
711
793
|
* Returns true if payload is verified (FULL variant exists) AND:
|
|
712
|
-
* 1. Payload is timely, OR
|
|
794
|
+
* 1. Payload is timely AND data is available, OR
|
|
713
795
|
* 2. No proposer boost root (empty/zero hash), OR
|
|
714
796
|
* 3. Proposer boost root's parent is not this block, OR
|
|
715
797
|
* 4. Proposer boost root extends FULL parent
|
|
@@ -722,8 +804,8 @@ export class ProtoArray {
|
|
|
722
804
|
return false;
|
|
723
805
|
}
|
|
724
806
|
|
|
725
|
-
// Condition 1: Payload is timely
|
|
726
|
-
if (this.isPayloadTimely(blockRoot)) {
|
|
807
|
+
// Condition 1: Payload is timely AND data is available
|
|
808
|
+
if (this.isPayloadTimely(blockRoot) && this.isPayloadDataAvailable(blockRoot)) {
|
|
727
809
|
return true;
|
|
728
810
|
}
|
|
729
811
|
|
|
@@ -1132,6 +1214,8 @@ export class ProtoArray {
|
|
|
1132
1214
|
// Prune PTC votes for this block to prevent memory leak
|
|
1133
1215
|
// Spec: gloas/fork-choice.md (implicit - finalized blocks don't need PTC votes)
|
|
1134
1216
|
this.ptcVotes.delete(root);
|
|
1217
|
+
this.ptcAttested.delete(root);
|
|
1218
|
+
this.daVotes.delete(root);
|
|
1135
1219
|
}
|
|
1136
1220
|
|
|
1137
1221
|
// Store nodes prior to finalization
|