@lodestar/state-transition 1.39.0-dev.b37f2bd1bd → 1.39.0-dev.b6bba4cb8c

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 (98) hide show
  1. package/lib/block/index.d.ts.map +1 -1
  2. package/lib/block/index.js +4 -2
  3. package/lib/block/index.js.map +1 -1
  4. package/lib/block/isValidIndexedAttestation.d.ts +3 -2
  5. package/lib/block/isValidIndexedAttestation.d.ts.map +1 -1
  6. package/lib/block/isValidIndexedAttestation.js +4 -4
  7. package/lib/block/isValidIndexedAttestation.js.map +1 -1
  8. package/lib/block/processAttestationPhase0.d.ts.map +1 -1
  9. package/lib/block/processAttestationPhase0.js +1 -1
  10. package/lib/block/processAttestationPhase0.js.map +1 -1
  11. package/lib/block/processAttestationsAltair.d.ts.map +1 -1
  12. package/lib/block/processAttestationsAltair.js +1 -1
  13. package/lib/block/processAttestationsAltair.js.map +1 -1
  14. package/lib/block/processAttesterSlashing.js +1 -1
  15. package/lib/block/processAttesterSlashing.js.map +1 -1
  16. package/lib/block/processExecutionPayload.d.ts.map +1 -1
  17. package/lib/block/processExecutionPayload.js +6 -4
  18. package/lib/block/processExecutionPayload.js.map +1 -1
  19. package/lib/block/processProposerSlashing.d.ts.map +1 -1
  20. package/lib/block/processProposerSlashing.js +1 -1
  21. package/lib/block/processProposerSlashing.js.map +1 -1
  22. package/lib/block/processRandao.js +2 -2
  23. package/lib/block/processRandao.js.map +1 -1
  24. package/lib/block/processSyncCommittee.d.ts +3 -1
  25. package/lib/block/processSyncCommittee.d.ts.map +1 -1
  26. package/lib/block/processSyncCommittee.js +6 -4
  27. package/lib/block/processSyncCommittee.js.map +1 -1
  28. package/lib/block/processVoluntaryExit.d.ts.map +1 -1
  29. package/lib/block/processVoluntaryExit.js +2 -1
  30. package/lib/block/processVoluntaryExit.js.map +1 -1
  31. package/lib/cache/epochCache.d.ts +0 -3
  32. package/lib/cache/epochCache.d.ts.map +1 -1
  33. package/lib/cache/epochCache.js +0 -3
  34. package/lib/cache/epochCache.js.map +1 -1
  35. package/lib/cache/stateCache.d.ts +1 -0
  36. package/lib/cache/stateCache.d.ts.map +1 -1
  37. package/lib/cache/stateCache.js.map +1 -1
  38. package/lib/index.d.ts +1 -1
  39. package/lib/index.d.ts.map +1 -1
  40. package/lib/index.js +1 -0
  41. package/lib/index.js.map +1 -1
  42. package/lib/signatureSets/attesterSlashings.d.ts +5 -5
  43. package/lib/signatureSets/attesterSlashings.d.ts.map +1 -1
  44. package/lib/signatureSets/attesterSlashings.js +10 -7
  45. package/lib/signatureSets/attesterSlashings.js.map +1 -1
  46. package/lib/signatureSets/index.d.ts +3 -2
  47. package/lib/signatureSets/index.d.ts.map +1 -1
  48. package/lib/signatureSets/index.js +10 -10
  49. package/lib/signatureSets/index.js.map +1 -1
  50. package/lib/signatureSets/indexedAttestation.d.ts +6 -6
  51. package/lib/signatureSets/indexedAttestation.d.ts.map +1 -1
  52. package/lib/signatureSets/indexedAttestation.js +12 -9
  53. package/lib/signatureSets/indexedAttestation.js.map +1 -1
  54. package/lib/signatureSets/proposer.d.ts +3 -2
  55. package/lib/signatureSets/proposer.d.ts.map +1 -1
  56. package/lib/signatureSets/proposer.js +7 -5
  57. package/lib/signatureSets/proposer.js.map +1 -1
  58. package/lib/signatureSets/proposerSlashings.d.ts +4 -4
  59. package/lib/signatureSets/proposerSlashings.d.ts.map +1 -1
  60. package/lib/signatureSets/proposerSlashings.js +7 -4
  61. package/lib/signatureSets/proposerSlashings.js.map +1 -1
  62. package/lib/signatureSets/randao.d.ts +3 -3
  63. package/lib/signatureSets/randao.d.ts.map +1 -1
  64. package/lib/signatureSets/randao.js +6 -4
  65. package/lib/signatureSets/randao.js.map +1 -1
  66. package/lib/signatureSets/voluntaryExits.d.ts +5 -5
  67. package/lib/signatureSets/voluntaryExits.d.ts.map +1 -1
  68. package/lib/signatureSets/voluntaryExits.js +10 -7
  69. package/lib/signatureSets/voluntaryExits.js.map +1 -1
  70. package/lib/stateTransition.js +1 -1
  71. package/lib/stateTransition.js.map +1 -1
  72. package/lib/util/execution.d.ts +11 -1
  73. package/lib/util/execution.d.ts.map +1 -1
  74. package/lib/util/execution.js +26 -1
  75. package/lib/util/execution.js.map +1 -1
  76. package/package.json +6 -6
  77. package/src/block/index.ts +6 -2
  78. package/src/block/isValidIndexedAttestation.ts +7 -2
  79. package/src/block/processAttestationPhase0.ts +1 -0
  80. package/src/block/processAttestationsAltair.ts +7 -1
  81. package/src/block/processAttesterSlashing.ts +1 -1
  82. package/src/block/processExecutionPayload.ts +14 -8
  83. package/src/block/processProposerSlashing.ts +6 -1
  84. package/src/block/processRandao.ts +2 -2
  85. package/src/block/processSyncCommittee.ts +15 -4
  86. package/src/block/processVoluntaryExit.ts +4 -1
  87. package/src/cache/epochCache.ts +0 -3
  88. package/src/cache/stateCache.ts +1 -0
  89. package/src/index.ts +1 -2
  90. package/src/signatureSets/attesterSlashings.ts +14 -9
  91. package/src/signatureSets/index.ts +14 -11
  92. package/src/signatureSets/indexedAttestation.ts +18 -11
  93. package/src/signatureSets/proposer.ts +8 -5
  94. package/src/signatureSets/proposerSlashings.ts +10 -10
  95. package/src/signatureSets/randao.ts +7 -5
  96. package/src/signatureSets/voluntaryExits.ts +14 -9
  97. package/src/stateTransition.ts +1 -1
  98. package/src/util/execution.ts +39 -0
@@ -1,8 +1,9 @@
1
+ import {BeaconConfig} from "@lodestar/config";
1
2
  import {ForkSeq} from "@lodestar/params";
2
3
  import {IndexedAttestation, SignedBeaconBlock, altair, capella} from "@lodestar/types";
3
4
  import {getSyncCommitteeSignatureSet} from "../block/processSyncCommittee.js";
4
5
  import {Index2PubkeyCache} from "../cache/pubkeyCache.js";
5
- import {CachedBeaconStateAllForks, CachedBeaconStateAltair} from "../types.js";
6
+ import {SyncCommitteeCache} from "../cache/syncCommitteeCache.js";
6
7
  import {ISignatureSet} from "../util/index.js";
7
8
  import {getAttesterSlashingsSignatureSets} from "./attesterSlashings.js";
8
9
  import {getBlsToExecutionChangeSignatureSets} from "./blsToExecutionChange.js";
@@ -26,8 +27,9 @@ export * from "./voluntaryExits.js";
26
27
  * Deposits are not included because they can legally have invalid signatures.
27
28
  */
28
29
  export function getBlockSignatureSets(
30
+ config: BeaconConfig,
29
31
  index2pubkey: Index2PubkeyCache,
30
- state: CachedBeaconStateAllForks,
32
+ currentSyncCommitteeIndexed: SyncCommitteeCache,
31
33
  signedBlock: SignedBeaconBlock,
32
34
  indexedAttestations: IndexedAttestation[],
33
35
  opts?: {
@@ -36,25 +38,26 @@ export function getBlockSignatureSets(
36
38
  }
37
39
  ): ISignatureSet[] {
38
40
  // fork based validations
39
- const fork = state.config.getForkSeq(signedBlock.message.slot);
41
+ const fork = config.getForkSeq(signedBlock.message.slot);
40
42
 
41
43
  const signatureSets = [
42
- getRandaoRevealSignatureSet(index2pubkey, state, signedBlock.message),
43
- ...getProposerSlashingsSignatureSets(index2pubkey, state, signedBlock),
44
- ...getAttesterSlashingsSignatureSets(index2pubkey, state, signedBlock),
45
- ...getAttestationsSignatureSets(index2pubkey, state, signedBlock, indexedAttestations),
46
- ...getVoluntaryExitsSignatureSets(index2pubkey, state, signedBlock),
44
+ getRandaoRevealSignatureSet(config, index2pubkey, signedBlock.message),
45
+ ...getProposerSlashingsSignatureSets(config, index2pubkey, signedBlock),
46
+ ...getAttesterSlashingsSignatureSets(config, index2pubkey, signedBlock),
47
+ ...getAttestationsSignatureSets(config, index2pubkey, signedBlock, indexedAttestations),
48
+ ...getVoluntaryExitsSignatureSets(config, index2pubkey, signedBlock),
47
49
  ];
48
50
 
49
51
  if (!opts?.skipProposerSignature) {
50
- signatureSets.push(getBlockProposerSignatureSet(index2pubkey, state, signedBlock));
52
+ signatureSets.push(getBlockProposerSignatureSet(config, index2pubkey, signedBlock));
51
53
  }
52
54
 
53
55
  // Only after altair fork, validate tSyncCommitteeSignature
54
56
  if (fork >= ForkSeq.altair) {
55
57
  const syncCommitteeSignatureSet = getSyncCommitteeSignatureSet(
58
+ config,
56
59
  index2pubkey,
57
- state as CachedBeaconStateAltair,
60
+ currentSyncCommitteeIndexed,
58
61
  (signedBlock as altair.SignedBeaconBlock).message
59
62
  );
60
63
  // There may be no participants in this syncCommitteeSignature, so it must not be validated
@@ -66,7 +69,7 @@ export function getBlockSignatureSets(
66
69
  // only after capella fork
67
70
  if (fork >= ForkSeq.capella) {
68
71
  const blsToExecutionChangeSignatureSets = getBlsToExecutionChangeSignatureSets(
69
- state.config,
72
+ config,
70
73
  signedBlock as capella.SignedBeaconBlock
71
74
  );
72
75
  if (blsToExecutionChangeSignatureSets.length > 0) {
@@ -1,7 +1,7 @@
1
+ import {BeaconConfig} from "@lodestar/config";
1
2
  import {DOMAIN_BEACON_ATTESTER} from "@lodestar/params";
2
- import {IndexedAttestation, SignedBeaconBlock, phase0, ssz} from "@lodestar/types";
3
+ import {IndexedAttestation, SignedBeaconBlock, Slot, phase0, ssz} from "@lodestar/types";
3
4
  import {Index2PubkeyCache} from "../cache/pubkeyCache.js";
4
- import {CachedBeaconStateAllForks} from "../types.js";
5
5
  import {
6
6
  ISignatureSet,
7
7
  computeSigningRoot,
@@ -10,44 +10,48 @@ import {
10
10
  } from "../util/index.js";
11
11
 
12
12
  export function getAttestationDataSigningRoot(
13
- state: CachedBeaconStateAllForks,
13
+ config: BeaconConfig,
14
+ stateSlot: Slot,
14
15
  data: phase0.AttestationData
15
16
  ): Uint8Array {
16
- const slot = computeStartSlotAtEpoch(data.target.epoch);
17
- const domain = state.config.getDomain(state.slot, DOMAIN_BEACON_ATTESTER, slot);
17
+ const messageSlot = computeStartSlotAtEpoch(data.target.epoch);
18
+ const domain = config.getDomain(stateSlot, DOMAIN_BEACON_ATTESTER, messageSlot);
18
19
 
19
20
  return computeSigningRoot(ssz.phase0.AttestationData, data, domain);
20
21
  }
21
22
 
22
23
  export function getAttestationWithIndicesSignatureSet(
24
+ config: BeaconConfig,
23
25
  index2pubkey: Index2PubkeyCache,
24
- state: CachedBeaconStateAllForks,
26
+ stateSlot: Slot,
25
27
  attestation: Pick<phase0.Attestation, "data" | "signature">,
26
28
  attestingIndices: number[]
27
29
  ): ISignatureSet {
28
30
  return createAggregateSignatureSetFromComponents(
29
31
  attestingIndices.map((i) => index2pubkey[i]),
30
- getAttestationDataSigningRoot(state, attestation.data),
32
+ getAttestationDataSigningRoot(config, stateSlot, attestation.data),
31
33
  attestation.signature
32
34
  );
33
35
  }
34
36
 
35
37
  export function getIndexedAttestationSignatureSet(
38
+ config: BeaconConfig,
36
39
  index2pubkey: Index2PubkeyCache,
37
- state: CachedBeaconStateAllForks,
40
+ stateSlot: Slot,
38
41
  indexedAttestation: IndexedAttestation
39
42
  ): ISignatureSet {
40
43
  return getAttestationWithIndicesSignatureSet(
44
+ config,
41
45
  index2pubkey,
42
- state,
46
+ stateSlot,
43
47
  indexedAttestation,
44
48
  indexedAttestation.attestingIndices
45
49
  );
46
50
  }
47
51
 
48
52
  export function getAttestationsSignatureSets(
53
+ config: BeaconConfig,
49
54
  index2pubkey: Index2PubkeyCache,
50
- state: CachedBeaconStateAllForks,
51
55
  signedBlock: SignedBeaconBlock,
52
56
  indexedAttestations: IndexedAttestation[]
53
57
  ): ISignatureSet[] {
@@ -56,7 +60,10 @@ export function getAttestationsSignatureSets(
56
60
  `Indexed attestations length mismatch: got ${indexedAttestations.length}, expected ${signedBlock.message.body.attestations.length}`
57
61
  );
58
62
  }
63
+ // the getDomain() api requires the state slot as 1st param, however it's the same to block.slot in state-transition
64
+ // and the same epoch when we verify blocks in batch in beacon-node. So we can safely use block.slot here.
65
+ const blockSlot = signedBlock.message.slot;
59
66
  return indexedAttestations.map((indexedAttestation) =>
60
- getIndexedAttestationSignatureSet(index2pubkey, state, indexedAttestation)
67
+ getIndexedAttestationSignatureSet(config, index2pubkey, blockSlot, indexedAttestation)
61
68
  );
62
69
  }
@@ -1,3 +1,4 @@
1
+ import {BeaconConfig} from "@lodestar/config";
1
2
  import {DOMAIN_BEACON_PROPOSER} from "@lodestar/params";
2
3
  import {SignedBeaconBlock, SignedBlindedBeaconBlock, Slot, isBlindedBeaconBlock, phase0, ssz} from "@lodestar/types";
3
4
  import {Index2PubkeyCache} from "../cache/pubkeyCache.js";
@@ -6,21 +7,23 @@ import {computeSigningRoot} from "../util/index.js";
6
7
  import {ISignatureSet, SignatureSetType, verifySignatureSet} from "../util/signatureSets.js";
7
8
 
8
9
  export function verifyProposerSignature(
10
+ config: BeaconConfig,
9
11
  index2pubkey: Index2PubkeyCache,
10
- state: CachedBeaconStateAllForks,
11
12
  signedBlock: SignedBeaconBlock | SignedBlindedBeaconBlock
12
13
  ): boolean {
13
- const signatureSet = getBlockProposerSignatureSet(index2pubkey, state, signedBlock);
14
+ const signatureSet = getBlockProposerSignatureSet(config, index2pubkey, signedBlock);
14
15
  return verifySignatureSet(signatureSet);
15
16
  }
16
17
 
17
18
  export function getBlockProposerSignatureSet(
19
+ config: BeaconConfig,
18
20
  index2pubkey: Index2PubkeyCache,
19
- state: CachedBeaconStateAllForks,
20
21
  signedBlock: SignedBeaconBlock | SignedBlindedBeaconBlock
21
22
  ): ISignatureSet {
22
- const {config} = state;
23
- const domain = config.getDomain(state.slot, DOMAIN_BEACON_PROPOSER, signedBlock.message.slot);
23
+ // the getDomain() api requires the state slot as 1st param, however it's the same to block.slot in state-transition
24
+ // and the same epoch when we verify blocks in batch in beacon-node. So we can safely use block.slot here.
25
+ const blockSlot = signedBlock.message.slot;
26
+ const domain = config.getDomain(blockSlot, DOMAIN_BEACON_PROPOSER, blockSlot);
24
27
 
25
28
  const blockType = isBlindedBeaconBlock(signedBlock.message)
26
29
  ? config.getPostBellatrixForkTypes(signedBlock.message.slot).BlindedBeaconBlock
@@ -1,15 +1,16 @@
1
+ import {BeaconConfig} from "@lodestar/config";
1
2
  import {DOMAIN_BEACON_PROPOSER} from "@lodestar/params";
2
- import {SignedBeaconBlock, phase0, ssz} from "@lodestar/types";
3
+ import {SignedBeaconBlock, Slot, phase0, ssz} from "@lodestar/types";
3
4
  import {Index2PubkeyCache} from "../cache/pubkeyCache.js";
4
- import {CachedBeaconStateAllForks} from "../types.js";
5
5
  import {ISignatureSet, SignatureSetType, computeSigningRoot} from "../util/index.js";
6
6
 
7
7
  /**
8
8
  * Extract signatures to allow validating all block signatures at once
9
9
  */
10
10
  export function getProposerSlashingSignatureSets(
11
+ config: BeaconConfig,
11
12
  index2pubkey: Index2PubkeyCache,
12
- state: CachedBeaconStateAllForks,
13
+ stateSlot: Slot,
13
14
  proposerSlashing: phase0.ProposerSlashing
14
15
  ): ISignatureSet[] {
15
16
  const pubkey = index2pubkey[proposerSlashing.signedHeader1.message.proposerIndex];
@@ -17,11 +18,7 @@ export function getProposerSlashingSignatureSets(
17
18
  // In state transition, ProposerSlashing headers are only partially validated. Their slot could be higher than the
18
19
  // clock and the slashing would still be valid. Must use bigint variants to hash correctly to all possible values
19
20
  return [proposerSlashing.signedHeader1, proposerSlashing.signedHeader2].map((signedHeader): ISignatureSet => {
20
- const domain = state.config.getDomain(
21
- state.slot,
22
- DOMAIN_BEACON_PROPOSER,
23
- Number(signedHeader.message.slot as bigint)
24
- );
21
+ const domain = config.getDomain(stateSlot, DOMAIN_BEACON_PROPOSER, Number(signedHeader.message.slot as bigint));
25
22
 
26
23
  return {
27
24
  type: SignatureSetType.single,
@@ -33,11 +30,14 @@ export function getProposerSlashingSignatureSets(
33
30
  }
34
31
 
35
32
  export function getProposerSlashingsSignatureSets(
33
+ config: BeaconConfig,
36
34
  index2pubkey: Index2PubkeyCache,
37
- state: CachedBeaconStateAllForks,
38
35
  signedBlock: SignedBeaconBlock
39
36
  ): ISignatureSet[] {
37
+ // the getDomain() api requires the state slot as 1st param, however it's the same to block.slot in state-transition
38
+ // and the same epoch when we verify blocks in batch in beacon-node. So we can safely use block.slot here.
39
+ const blockSlot = signedBlock.message.slot;
40
40
  return signedBlock.message.body.proposerSlashings.flatMap((proposerSlashing) =>
41
- getProposerSlashingSignatureSets(index2pubkey, state, proposerSlashing)
41
+ getProposerSlashingSignatureSets(config, index2pubkey, blockSlot, proposerSlashing)
42
42
  );
43
43
  }
@@ -1,7 +1,7 @@
1
+ import {BeaconConfig} from "@lodestar/config";
1
2
  import {DOMAIN_RANDAO} from "@lodestar/params";
2
3
  import {BeaconBlock, ssz} from "@lodestar/types";
3
4
  import {Index2PubkeyCache} from "../cache/pubkeyCache.js";
4
- import {CachedBeaconStateAllForks} from "../types.js";
5
5
  import {
6
6
  ISignatureSet,
7
7
  SignatureSetType,
@@ -11,24 +11,26 @@ import {
11
11
  } from "../util/index.js";
12
12
 
13
13
  export function verifyRandaoSignature(
14
+ config: BeaconConfig,
14
15
  index2pubkey: Index2PubkeyCache,
15
- state: CachedBeaconStateAllForks,
16
16
  block: BeaconBlock
17
17
  ): boolean {
18
- return verifySignatureSet(getRandaoRevealSignatureSet(index2pubkey, state, block));
18
+ return verifySignatureSet(getRandaoRevealSignatureSet(config, index2pubkey, block));
19
19
  }
20
20
 
21
21
  /**
22
22
  * Extract signatures to allow validating all block signatures at once
23
23
  */
24
24
  export function getRandaoRevealSignatureSet(
25
+ config: BeaconConfig,
25
26
  index2pubkey: Index2PubkeyCache,
26
- state: CachedBeaconStateAllForks,
27
27
  block: BeaconBlock
28
28
  ): ISignatureSet {
29
29
  // should not get epoch from epochCtx
30
30
  const epoch = computeEpochAtSlot(block.slot);
31
- const domain = state.config.getDomain(state.slot, DOMAIN_RANDAO, block.slot);
31
+ // the getDomain() api requires the state slot as 1st param, however it's the same to block.slot in state-transition
32
+ // and the same epoch when we verify blocks in batch in beacon-node. So we can safely use block.slot here.
33
+ const domain = config.getDomain(block.slot, DOMAIN_RANDAO, block.slot);
32
34
 
33
35
  return {
34
36
  type: SignatureSetType.single,
@@ -1,6 +1,6 @@
1
- import {SignedBeaconBlock, phase0, ssz} from "@lodestar/types";
1
+ import {BeaconConfig} from "@lodestar/config";
2
+ import {SignedBeaconBlock, Slot, phase0, ssz} from "@lodestar/types";
2
3
  import {Index2PubkeyCache} from "../cache/pubkeyCache.js";
3
- import {CachedBeaconStateAllForks} from "../types.js";
4
4
  import {
5
5
  ISignatureSet,
6
6
  SignatureSetType,
@@ -10,23 +10,25 @@ import {
10
10
  } from "../util/index.js";
11
11
 
12
12
  export function verifyVoluntaryExitSignature(
13
+ config: BeaconConfig,
13
14
  index2pubkey: Index2PubkeyCache,
14
- state: CachedBeaconStateAllForks,
15
+ stateSlot: Slot,
15
16
  signedVoluntaryExit: phase0.SignedVoluntaryExit
16
17
  ): boolean {
17
- return verifySignatureSet(getVoluntaryExitSignatureSet(index2pubkey, state, signedVoluntaryExit));
18
+ return verifySignatureSet(getVoluntaryExitSignatureSet(config, index2pubkey, stateSlot, signedVoluntaryExit));
18
19
  }
19
20
 
20
21
  /**
21
22
  * Extract signatures to allow validating all block signatures at once
22
23
  */
23
24
  export function getVoluntaryExitSignatureSet(
25
+ config: BeaconConfig,
24
26
  index2pubkey: Index2PubkeyCache,
25
- state: CachedBeaconStateAllForks,
27
+ stateSlot: Slot,
26
28
  signedVoluntaryExit: phase0.SignedVoluntaryExit
27
29
  ): ISignatureSet {
28
- const slot = computeStartSlotAtEpoch(signedVoluntaryExit.message.epoch);
29
- const domain = state.config.getDomainForVoluntaryExit(state.slot, slot);
30
+ const messageSlot = computeStartSlotAtEpoch(signedVoluntaryExit.message.epoch);
31
+ const domain = config.getDomainForVoluntaryExit(stateSlot, messageSlot);
30
32
 
31
33
  return {
32
34
  type: SignatureSetType.single,
@@ -37,11 +39,14 @@ export function getVoluntaryExitSignatureSet(
37
39
  }
38
40
 
39
41
  export function getVoluntaryExitsSignatureSets(
42
+ config: BeaconConfig,
40
43
  index2pubkey: Index2PubkeyCache,
41
- state: CachedBeaconStateAllForks,
42
44
  signedBlock: SignedBeaconBlock
43
45
  ): ISignatureSet[] {
46
+ // the getDomain() api requires the state slot as 1st param, however it's the same to block.slot in state-transition
47
+ // and the same epoch when we verify blocks in batch in beacon-node. So we can safely use block.slot here.
48
+ const blockSlot = signedBlock.message.slot;
44
49
  return signedBlock.message.body.voluntaryExits.map((voluntaryExit) =>
45
- getVoluntaryExitSignatureSet(index2pubkey, state, voluntaryExit)
50
+ getVoluntaryExitSignatureSet(config, index2pubkey, blockSlot, voluntaryExit)
46
51
  );
47
52
  }
@@ -111,7 +111,7 @@ export function stateTransition(
111
111
  postState = processSlotsWithTransientCache(postState, blockSlot, options, {metrics, validatorMonitor});
112
112
 
113
113
  // Verify proposer signature only
114
- if (verifyProposer && !verifyProposerSignature(postState.epochCtx.index2pubkey, postState, signedBlock)) {
114
+ if (verifyProposer && !verifyProposerSignature(postState.config, postState.epochCtx.index2pubkey, signedBlock)) {
115
115
  throw new Error("Invalid block signature");
116
116
  }
117
117
 
@@ -2,6 +2,7 @@ import {ForkName, ForkPostBellatrix, ForkPreGloas, ForkSeq} from "@lodestar/para
2
2
  import {
3
3
  BeaconBlock,
4
4
  BeaconBlockBody,
5
+ BlindedBeaconBlock,
5
6
  BlindedBeaconBlockBody,
6
7
  ExecutionPayload,
7
8
  ExecutionPayloadHeader,
@@ -9,16 +10,54 @@ import {
9
10
  capella,
10
11
  deneb,
11
12
  isBlindedBeaconBlockBody,
13
+ isExecutionPayload,
12
14
  ssz,
13
15
  } from "@lodestar/types";
14
16
  import {
15
17
  BeaconStateAllForks,
18
+ BeaconStateBellatrix,
16
19
  BeaconStateCapella,
17
20
  BeaconStateExecutions,
18
21
  CachedBeaconStateAllForks,
19
22
  CachedBeaconStateExecutions,
20
23
  } from "../types.js";
21
24
 
25
+ /**
26
+ * Execution enabled = merge is done.
27
+ * When (A) state has execution data OR (B) block has execution data
28
+ */
29
+ export function isExecutionEnabled(state: BeaconStateExecutions, block: BeaconBlock | BlindedBeaconBlock): boolean {
30
+ if (isMergeTransitionComplete(state)) {
31
+ return true;
32
+ }
33
+
34
+ // Throws if not post-bellatrix block. A fork-guard before isExecutionEnabled() prevents this from happening
35
+ const payload = getFullOrBlindedPayload(block);
36
+
37
+ return isExecutionPayload(payload)
38
+ ? !ssz.bellatrix.ExecutionPayload.equals(payload, ssz.bellatrix.ExecutionPayload.defaultValue())
39
+ : !ssz.bellatrix.ExecutionPayloadHeader.equals(
40
+ state.latestExecutionPayloadHeader,
41
+ ssz.bellatrix.ExecutionPayloadHeader.defaultValue()
42
+ );
43
+ }
44
+
45
+ /**
46
+ * Merge is complete when the state includes execution layer data:
47
+ * state.latestExecutionPayloadHeader NOT EMPTY or state is post-capella
48
+ */
49
+ export function isMergeTransitionComplete(state: BeaconStateExecutions): boolean {
50
+ if (isCapellaStateType(state)) {
51
+ // All networks have completed the merge transition before capella
52
+ return true;
53
+ }
54
+
55
+ return !ssz.bellatrix.ExecutionPayloadHeader.equals(
56
+ (state as BeaconStateBellatrix).latestExecutionPayloadHeader,
57
+ ssz.bellatrix.ExecutionPayloadHeader.defaultValue()
58
+ );
59
+ }
60
+
22
61
  /** Type guard for bellatrix.BeaconState */
23
62
  export function isExecutionStateType(state: BeaconStateAllForks): state is BeaconStateExecutions {
24
63
  return (state as BeaconStateExecutions).latestExecutionPayloadHeader !== undefined;