Skip to content

Commit 887120e

Browse files
authored
Merge branch 'master' into validator-identities
2 parents c3b4b87 + 203410d commit 887120e

20 files changed

+397
-11
lines changed

apis/beacon/blob_sidecars/blob_sidecars.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ get:
3939
properties:
4040
version:
4141
type: string
42-
enum: [phase0, altair, bellatrix, capella, deneb]
42+
enum: [phase0, altair, bellatrix, capella, deneb, electra]
4343
example: "deneb"
4444
execution_optimistic:
4545
$ref: "../../../beacon-node-oapi.yaml#/components/schemas/ExecutionOptimistic"

apis/beacon/blocks/blinded_block.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ get:
2626
properties:
2727
version:
2828
type: string
29-
enum: [phase0, altair, bellatrix, capella, deneb]
29+
enum: [phase0, altair, bellatrix, capella, deneb, electra]
3030
example: "phase0"
3131
execution_optimistic:
3232
$ref: "../../../beacon-node-oapi.yaml#/components/schemas/ExecutionOptimistic"
@@ -39,6 +39,7 @@ get:
3939
- $ref: "../../../beacon-node-oapi.yaml#/components/schemas/Bellatrix.SignedBlindedBeaconBlock"
4040
- $ref: "../../../beacon-node-oapi.yaml#/components/schemas/Capella.SignedBlindedBeaconBlock"
4141
- $ref: "../../../beacon-node-oapi.yaml#/components/schemas/Deneb.SignedBlindedBeaconBlock"
42+
- $ref: "../../../beacon-node-oapi.yaml#/components/schemas/Electra.SignedBlindedBeaconBlock"
4243
application/octet-stream:
4344
schema:
4445
description: "SSZ serialized block bytes. Use Accept header to choose this response type"

apis/beacon/blocks/blinded_blocks.v2.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ post:
5555
- $ref: "../../../beacon-node-oapi.yaml#/components/schemas/Bellatrix.SignedBlindedBeaconBlock"
5656
- $ref: "../../../beacon-node-oapi.yaml#/components/schemas/Capella.SignedBlindedBeaconBlock"
5757
- $ref: "../../../beacon-node-oapi.yaml#/components/schemas/Deneb.SignedBlindedBeaconBlock"
58+
- $ref: "../../../beacon-node-oapi.yaml#/components/schemas/Electra.SignedBlindedBeaconBlock"
5859
application/octet-stream:
5960
schema:
6061
description: "SSZ serialized block bytes. Use content type header to indicate that SSZ data is contained in the request body."

apis/beacon/blocks/blinded_blocks.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ post:
3434
- $ref: "../../../beacon-node-oapi.yaml#/components/schemas/Bellatrix.SignedBlindedBeaconBlock"
3535
- $ref: "../../../beacon-node-oapi.yaml#/components/schemas/Capella.SignedBlindedBeaconBlock"
3636
- $ref: "../../../beacon-node-oapi.yaml#/components/schemas/Deneb.SignedBlindedBeaconBlock"
37+
- $ref: "../../../beacon-node-oapi.yaml#/components/schemas/Electra.SignedBlindedBeaconBlock"
3738
application/octet-stream:
3839
schema:
3940
description: "SSZ serialized block bytes. Use content type header to indicate that SSZ data is contained in the request body."

apis/beacon/blocks/block.v2.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ get:
2626
properties:
2727
version:
2828
type: string
29-
enum: [phase0, altair, bellatrix, capella, deneb]
29+
enum: [phase0, altair, bellatrix, capella, deneb, electra]
3030
example: "phase0"
3131
execution_optimistic:
3232
$ref: "../../../beacon-node-oapi.yaml#/components/schemas/ExecutionOptimistic"
@@ -39,6 +39,7 @@ get:
3939
- $ref: "../../../beacon-node-oapi.yaml#/components/schemas/Bellatrix.SignedBeaconBlock"
4040
- $ref: "../../../beacon-node-oapi.yaml#/components/schemas/Capella.SignedBeaconBlock"
4141
- $ref: "../../../beacon-node-oapi.yaml#/components/schemas/Deneb.SignedBeaconBlock"
42+
- $ref: "../../../beacon-node-oapi.yaml#/components/schemas/Electra.SignedBeaconBlock"
4243
application/octet-stream:
4344
schema:
4445
description: "SSZ serialized block bytes. Use Accept header to choose this response type"

apis/beacon/blocks/blocks.v2.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ post:
5454
- $ref: "../../../beacon-node-oapi.yaml#/components/schemas/Bellatrix.SignedBeaconBlock"
5555
- $ref: "../../../beacon-node-oapi.yaml#/components/schemas/Capella.SignedBeaconBlock"
5656
- $ref: "../../../beacon-node-oapi.yaml#/components/schemas/Deneb.SignedBlockContents"
57+
- $ref: "../../../beacon-node-oapi.yaml#/components/schemas/Electra.SignedBlockContents"
5758
application/octet-stream:
5859
schema:
5960
description: "SSZ serialized block bytes. Use content type header to indicate that SSZ data is contained in the request body."

apis/beacon/blocks/blocks.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ post:
3333
- $ref: "../../../beacon-node-oapi.yaml#/components/schemas/Bellatrix.SignedBeaconBlock"
3434
- $ref: "../../../beacon-node-oapi.yaml#/components/schemas/Capella.SignedBeaconBlock"
3535
- $ref: "../../../beacon-node-oapi.yaml#/components/schemas/Deneb.SignedBlockContents"
36+
- $ref: "../../../beacon-node-oapi.yaml#/components/schemas/Electra.SignedBlockContents"
3637
application/octet-stream:
3738
schema:
3839
description: "SSZ serialized block bytes. Use content type header to indicate that SSZ data is contained in the request body."

apis/debug/state.v2.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ get:
2626
properties:
2727
version:
2828
type: string
29-
enum: [ phase0, altair, bellatrix, capella, deneb ]
29+
enum: [phase0, altair, bellatrix, capella, deneb, electra]
3030
example: "phase0"
3131
execution_optimistic:
3232
$ref: "../../beacon-node-oapi.yaml#/components/schemas/ExecutionOptimistic"
@@ -39,6 +39,7 @@ get:
3939
- $ref: "../../beacon-node-oapi.yaml#/components/schemas/Bellatrix.BeaconState"
4040
- $ref: "../../beacon-node-oapi.yaml#/components/schemas/Capella.BeaconState"
4141
- $ref: "../../beacon-node-oapi.yaml#/components/schemas/Deneb.BeaconState"
42+
- $ref: "../../beacon-node-oapi.yaml#/components/schemas/Electra.BeaconState"
4243
application/octet-stream:
4344
schema:
4445
description: "SSZ serialized state bytes. Use Accept header to choose this response type"

apis/validator/blinded_block.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ get:
4949
properties:
5050
version:
5151
type: string
52-
enum: [ phase0, altair, bellatrix, capella, deneb ]
52+
enum: [phase0, altair, bellatrix, capella, deneb, electra]
5353
example: "bellatrix"
5454
data:
5555
anyOf:
@@ -58,6 +58,7 @@ get:
5858
- $ref: "../../beacon-node-oapi.yaml#/components/schemas/Bellatrix.BlindedBeaconBlock"
5959
- $ref: "../../beacon-node-oapi.yaml#/components/schemas/Capella.BlindedBeaconBlock"
6060
- $ref: "../../beacon-node-oapi.yaml#/components/schemas/Deneb.BlindedBeaconBlock"
61+
- $ref: "../../beacon-node-oapi.yaml#/components/schemas/Electra.BlindedBeaconBlock"
6162
application/octet-stream:
6263
schema:
6364
description: "SSZ serialized block bytes. Use Accept header to choose this response type, version string is sent in header `Eth-Consensus-Version`."

apis/validator/block.v2.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ get:
4646
properties:
4747
version:
4848
type: string
49-
enum: [ phase0, altair, bellatrix, capella, deneb ]
49+
enum: [phase0, altair, bellatrix, capella, deneb, electra]
5050
example: "phase0"
5151
data:
5252
anyOf:
@@ -55,6 +55,7 @@ get:
5555
- $ref: "../../beacon-node-oapi.yaml#/components/schemas/Bellatrix.BeaconBlock"
5656
- $ref: "../../beacon-node-oapi.yaml#/components/schemas/Capella.BeaconBlock"
5757
- $ref: "../../beacon-node-oapi.yaml#/components/schemas/Deneb.BlockContents"
58+
- $ref: "../../beacon-node-oapi.yaml#/components/schemas/Electra.BlockContents"
5859
application/octet-stream:
5960
schema:
6061
description: "SSZ serialized block bytes. Use Accept header to choose this response type, version string is sent in header `Eth-Consensus-Version`."

0 commit comments

Comments
 (0)