Skip to content

Commit

Permalink
fix: update blockcontents typing to be more precise (#6907)
Browse files Browse the repository at this point in the history
  • Loading branch information
g11tech committed Jun 25, 2024
1 parent b453b37 commit 0f3109f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/types/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,9 @@ type TypesByFork = {
BuilderBid: deneb.BuilderBid;
SignedBuilderBid: deneb.SignedBuilderBid;
SSEPayloadAttributes: deneb.SSEPayloadAttributes;
BlockContents: {block: BeaconBlock<ForkBlobs>; kzgProofs: deneb.KZGProofs; blobs: deneb.Blobs};
BlockContents: {block: BeaconBlock<ForkName.deneb>; kzgProofs: deneb.KZGProofs; blobs: deneb.Blobs};
SignedBlockContents: {
signedBlock: SignedBeaconBlock<ForkBlobs>;
signedBlock: SignedBeaconBlock<ForkName.deneb>;
kzgProofs: deneb.KZGProofs;
blobs: deneb.Blobs;
};
Expand Down

0 comments on commit 0f3109f

Please sign in to comment.