Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Deneb for v1.4.0-beta.4 #92

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apis/builder/blinded_blocks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ post:
must return an error response (400) with a description of the validation
failure.

After Deneb, this endpoint will additionally accept `SignedBlindedBlobSidecars`, and return
After Deneb, this endpoint will additionally accept `BlindedBlobSidecars`, and return
with additional unblinded blobs in response.
tags:
- Builder
Expand Down
18 changes: 4 additions & 14 deletions specs/deneb/builder.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
- [New containers](#new-containers)
- [`BlindedBlobsBundle`](#blindedblobsbundle)
- [`BlindedBlobSidecar`](#blindedblobsidecar)
- [`SignedBlindedBlobSidecar`](#signedblindedblobsidecar)
- [`SignedBlindedBlockContents`](#signedblindedblockcontents)
- [`BlobsBundle`](#blobsbundle)
- [`ExecutionPayloadAndBlobsBundle`](#executionpayloadandblobsbundle)
Expand Down Expand Up @@ -42,30 +41,21 @@ class BlindedBlobsBundle(Container):

```python
class BlindedBlobSidecar(Container):
block_root: Root
index: BlobIndex
slot: Slot
block_parent_root: Root
proposer_index: ValidatorIndex
blob_root: Root
kzg_commitment: KZGCommitment
kzg_proof: KZGProof
```

#### `SignedBlindedBlobSidecar`

```python
class SignedBlindedBlobSidecar(Container):
message: BlindedBlobSidecar
signature: BLSSignature
signed_block_header: SignedBeaconBlockHeader
kzg_commitment_inclusion_proof*:
array[KZG_COMMITMENT_INCLUSION_PROOF_DEPTH, Eth2Digest]
```

#### `SignedBlindedBlockContents`

```python
class SignedBlindedBlockContents(Container):
signed_blinded_block: SignedBlindedBeaconBlock
signed_blinded_blob_sidecars: List[SignedBlindedBlobSidecar, MAX_BLOBS_PER_BLOCK]
blinded_blob_sidecars: List[BlindedBlobSidecar, MAX_BLOBS_PER_BLOCK]
```

#### `BlobsBundle`
Expand Down
Loading