-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Paul Harris <[email protected]>
- Loading branch information
1 parent
a1f0fb6
commit c097f1a
Showing
8 changed files
with
41 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,36 @@ | ||
Deneb: | ||
KZGProofs: | ||
type: array | ||
items: | ||
$ref: '../primitive.yaml#/KZGProof' | ||
minItems: 0 | ||
maxItems: 4096 | ||
|
||
Blobs: | ||
type: array | ||
items: | ||
$ref: "../primitive.yaml#/Blob" | ||
minItems: 0 | ||
maxItems: 4096 | ||
|
||
BlockContents: | ||
type: object | ||
description: "The required object for block production according to the Deneb CL spec." | ||
properties: | ||
block: | ||
$ref: "./block.yaml#/Deneb/BeaconBlock" | ||
blob_sidecars: | ||
$ref: "./blob_sidecar.yaml#/Deneb/BlobSidecars" | ||
|
||
BlindedBlockContents: | ||
type: object | ||
description: "The required object for blinded block production according to the Deneb CL spec." | ||
properties: | ||
blinded_block: | ||
$ref: "./block.yaml#/Deneb/BlindedBeaconBlock" | ||
blinded_blob_sidecars: | ||
$ref: "./blob_sidecar.yaml#/Deneb/BlindedBlobSidecars" | ||
kzg_proofs: | ||
$ref: "#/Deneb/KZGProofs" | ||
blobs: | ||
$ref: "#/Deneb/Blobs" | ||
|
||
SignedBlockContents: | ||
type: object | ||
description: "The required signed components of block production according to the Deneb CL spec." | ||
properties: | ||
signed_block: | ||
$ref: "./block.yaml#/Deneb/SignedBeaconBlock" | ||
signed_blob_sidecars: | ||
$ref: "./blob_sidecar.yaml#/Deneb/SignedBlobSidecars" | ||
|
||
SignedBlindedBlockContents: | ||
type: object | ||
description: "The required signed components of block production according to the Deneb CL spec." | ||
properties: | ||
signed_blinded_block: | ||
$ref: "./block.yaml#/Deneb/SignedBlindedBeaconBlock" | ||
signed_blinded_blob_sidecars: | ||
$ref: "./blob_sidecar.yaml#/Deneb/SignedBlindedBlobSidecars" | ||
|
||
kzg_proofs: | ||
$ref: "#/Deneb/KZGProofs" | ||
blobs: | ||
$ref: "#/Deneb/Blobs" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters