From 11936ea29482b742b3d875d7d3dbfd5b7fa61ae1 Mon Sep 17 00:00:00 2001 From: Jim McDonald Date: Tue, 13 Jun 2023 07:09:11 +0100 Subject: [PATCH] Update maximum blobs from 4 to 6 for 1.4.0-alpha 3. Ref: https://github.com/ethereum/consensus-specs/blob/v1.4.0-alpha.3/specs/deneb/beacon-chain.md#execution --- CHANGES.md | 1 + types/deneb/blob_sidecar.yaml | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index a3cbeb8a..15e42740 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -19,6 +19,7 @@ There are likely to be descriptions etc outside of the list below, but new query | [#286](https://github.com/ethereum/beacon-APIs/pull/286) NEW `/eth/v1/beacon/blob_sidecars/{block_id}` | | | | | | | [#319](https://github.com/ethereum/beacon-APIs/pull/319) `/eth/v1/debug/beacon/heads` removed deprecated endpoint | | | | | | | [#302](https://github.com/ethereum/beacon-APIs/pull/302) Added `BlockContents` structures for `deneb` blocks and blob_sidecars | | | | | | +| [#327](https://github.com/ethereum/beacon-APIs/pull/327) Increased maximum number of blobs from 4 to 6 | | | | | | The Following are no longer in the Standard API, removed since the latest version. diff --git a/types/deneb/blob_sidecar.yaml b/types/deneb/blob_sidecar.yaml index 5bb43ff3..4f287b75 100644 --- a/types/deneb/blob_sidecar.yaml +++ b/types/deneb/blob_sidecar.yaml @@ -4,7 +4,7 @@ Deneb: items: $ref: '#/Deneb/BlobSidecar' minItems: 0 - maxItems: 4 + maxItems: 6 BlobSidecar: type: object @@ -32,7 +32,7 @@ Deneb: items: $ref: '#/Deneb/SignedBlobSidecar' minItems: 0 - maxItems: 4 + maxItems: 6 SignedBlobSidecar: type: object @@ -48,7 +48,7 @@ Deneb: items: $ref: '#/Deneb/BlindedBlobSidecar' minItems: 0 - maxItems: 4 + maxItems: 6 BlindedBlobSidecar: type: object @@ -76,7 +76,7 @@ Deneb: items: $ref: '#/Deneb/SignedBlindedBlobSidecar' minItems: 0 - maxItems: 4 + maxItems: 6 SignedBlindedBlobSidecar: type: object