Skip to content

Commit b96e789

Browse files
committed
small fixes
1 parent 2953725 commit b96e789

File tree

8 files changed

+30
-32
lines changed

8 files changed

+30
-32
lines changed

apis/beacon/execution_payload/bid.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ post:
1313
content:
1414
application/json:
1515
schema:
16-
$ref: "../../beacon-node-oapi.yaml#/components/schemas/Gloas.SignedExecutionPayloadBid"
16+
$ref: "../../../beacon-node-oapi.yaml#/components/schemas/Gloas.SignedExecutionPayloadBid"
1717
application/octet-stream:
1818
schema:
1919
description: "SSZ serialized SignedExecutionPayloadBid bytes. Use Content-Type header to specify this format"
@@ -29,13 +29,13 @@ post:
2929
content:
3030
application/json:
3131
schema:
32-
$ref: "../../beacon-node-oapi.yaml#/components/schemas/ErrorMessage"
32+
$ref: "../../../beacon-node-oapi.yaml#/components/schemas/ErrorMessage"
3333
example:
3434
code: 400
3535
message: "Invalid signed execution payload bid"
3636
"406":
37-
$ref: "../../beacon-node-oapi.yaml#/components/responses/NotAcceptable"
37+
$ref: "../../../beacon-node-oapi.yaml#/components/responses/NotAcceptable"
3838
"415":
39-
$ref: "../../beacon-node-oapi.yaml#/components/responses/UnsupportedMediaType"
39+
$ref: "../../../beacon-node-oapi.yaml#/components/responses/UnsupportedMediaType"
4040
"500":
41-
$ref: "../../beacon-node-oapi.yaml#/components/responses/InternalError"
41+
$ref: "../../../beacon-node-oapi.yaml#/components/responses/InternalError"

apis/beacon/execution_payload/envelope.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ post:
1313
content:
1414
application/json:
1515
schema:
16-
$ref: "../../beacon-node-oapi.yaml#/components/schemas/Gloas.SignedExecutionPayloadEnvelope"
16+
$ref: "../../../beacon-node-oapi.yaml#/components/schemas/Gloas.SignedExecutionPayloadEnvelope"
1717
application/octet-stream:
1818
schema:
1919
description: "SSZ serialized SignedExecutionPayloadEnvelope bytes. Use Content-Type header to specify this format"
@@ -29,13 +29,13 @@ post:
2929
content:
3030
application/json:
3131
schema:
32-
$ref: "../../beacon-node-oapi.yaml#/components/schemas/ErrorMessage"
32+
$ref: "../../../beacon-node-oapi.yaml#/components/schemas/ErrorMessage"
3333
example:
3434
code: 400
3535
message: "Invalid signed execution payload envelope"
3636
"406":
37-
$ref: "../../beacon-node-oapi.yaml#/components/responses/NotAcceptable"
37+
$ref: "../../../beacon-node-oapi.yaml#/components/responses/NotAcceptable"
3838
"415":
39-
$ref: "../../beacon-node-oapi.yaml#/components/responses/UnsupportedMediaType"
39+
$ref: "../../../beacon-node-oapi.yaml#/components/responses/UnsupportedMediaType"
4040
"500":
41-
$ref: "../../beacon-node-oapi.yaml#/components/responses/InternalError"
41+
$ref: "../../../beacon-node-oapi.yaml#/components/responses/InternalError"

apis/beacon/pool/payload_attestations.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ get:
77
in: query
88
required: false
99
schema:
10-
$ref: '../../../beacon-node-oapi.yaml#/components/schemas/Uint64'
10+
$ref: "../../../beacon-node-oapi.yaml#/components/schemas/Uint64"
1111
tags:
1212
- Beacon
1313
responses:
@@ -27,7 +27,7 @@ get:
2727
data:
2828
type: array
2929
items:
30-
$ref: '../../../beacon-node-oapi.yaml#/components/schemas/Gloas.PayloadAttestationMessage'
30+
$ref: "../../../beacon-node-oapi.yaml#/components/schemas/Gloas.PayloadAttestationMessage"
3131
"400":
3232
description: "The slot could not be parsed"
3333
content:
@@ -38,7 +38,7 @@ get:
3838
code: 400
3939
message: "Invalid slot parameter"
4040
"500":
41-
$ref: '../../../beacon-node-oapi.yaml#/components/responses/InternalError'
41+
$ref: "../../../beacon-node-oapi.yaml#/components/responses/InternalError"
4242

4343
post:
4444
operationId: submitPayloadAttestationMessage
@@ -60,7 +60,7 @@ post:
6060
content:
6161
application/json:
6262
schema:
63-
$ref: "../../beacon-node-oapi.yaml#/components/schemas/Gloas.PayloadAttestationMessage"
63+
$ref: "../../../beacon-node-oapi.yaml#/components/schemas/Gloas.PayloadAttestationMessage"
6464
application/octet-stream:
6565
schema:
6666
description: "SSZ serialized PayloadAttestationMessage bytes. Use Content-Type header to indicate that SSZ data is contained in the request body."
@@ -76,8 +76,8 @@ post:
7676
content:
7777
application/json:
7878
schema:
79-
$ref: "../../beacon-node-oapi.yaml#/components/schemas/ErrorMessage"
79+
$ref: "../../../beacon-node-oapi.yaml#/components/schemas/ErrorMessage"
8080
"415":
81-
$ref: "../../beacon-node-oapi.yaml#/components/responses/UnsupportedMediaType"
81+
$ref: "../../../beacon-node-oapi.yaml#/components/responses/UnsupportedMediaType"
8282
"500":
83-
$ref: "../../beacon-node-oapi.yaml#/components/responses/InternalError"
83+
$ref: "../../../beacon-node-oapi.yaml#/components/responses/InternalError"

apis/validator/duties/ptc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ post:
5656
data:
5757
type: array
5858
items:
59-
$ref: '../../../beacon-node-oapi.yaml#/components/schemas/PtcDuty'
59+
$ref: "../../../beacon-node-oapi.yaml#/components/schemas/PtcDuty"
6060
"400":
6161
description: "Invalid epoch or index"
6262
content:

apis/validator/execution_payload_bid.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,26 +11,25 @@ get:
1111
required: true
1212
description: "Slot for which the execution payload bid is requested. Must be current slot or next slot."
1313
schema:
14-
$ref: '../../beacon-node-oapi.yaml#/components/schemas/Uint64'
14+
$ref: "../../beacon-node-oapi.yaml#/components/schemas/Uint64"
1515
- name: builder_index
1616
in: path
1717
required: true
1818
description: "Index of the builder from which the execution payload bid is requested."
1919
schema:
20-
$ref: '../../beacon-node-oapi.yaml#/components/schemas/Uint64'
20+
$ref: "../../beacon-node-oapi.yaml#/components/schemas/Uint64"
2121
responses:
2222
"200":
2323
description: "Successful response"
2424
headers:
2525
Eth-Consensus-Version:
26-
$ref: '../../beacon-node-oapi.yaml#/components/headers/Eth-Consensus-Version'
27-
required: true
26+
$ref: "../../beacon-node-oapi.yaml#/components/headers/Eth-Consensus-Version"
2827
content:
2928
application/json:
3029
schema:
3130
title: GetExecutionPayloadBidResponse
3231
type: object
33-
required: [data]
32+
required: [version, execution_optimistic, finalized, data]
3433
properties:
3534
version:
3635
type: string

apis/validator/execution_payload_envelope.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,25 @@ get:
1313
required: true
1414
description: "Slot for which the execution payload envelope is requested."
1515
schema:
16-
$ref: '../../beacon-node-oapi.yaml#/components/schemas/Uint64'
16+
$ref: "../../beacon-node-oapi.yaml#/components/schemas/Uint64"
1717
- name: builder_index
1818
in: path
1919
required: true
2020
description: "Index of the builder from which the execution payload envelope is requested."
2121
schema:
22-
$ref: '../../beacon-node-oapi.yaml#/components/schemas/Uint64'
22+
$ref: "../../beacon-node-oapi.yaml#/components/schemas/Uint64"
2323
responses:
2424
"200":
2525
description: "Successful response"
2626
headers:
2727
Eth-Consensus-Version:
28-
$ref: '../../beacon-node-oapi.yaml#/components/headers/Eth-Consensus-Version'
29-
required: true
28+
$ref: "../../beacon-node-oapi.yaml#/components/headers/Eth-Consensus-Version"
3029
content:
3130
application/json:
3231
schema:
3332
title: GetExecutionPayloadEnvelopeResponse
3433
type: object
35-
required: [data]
34+
required: [version, execution_optimistic, finalized, data]
3635
properties:
3736
version:
3837
type: string

apis/validator/payload_attestation_data.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ get:
1717
required: true
1818
description: "The slot for which payload attestation data should be created."
1919
schema:
20-
$ref: ../../beacon-node-oapi.yaml#/components/schemas/Uint64
20+
$ref: "../../beacon-node-oapi.yaml#/components/schemas/Uint64"
2121
responses:
2222
"200":
2323
description: "Success response"
@@ -34,9 +34,9 @@ get:
3434
schema:
3535
description: "SSZ serialized PayloadAttestationData bytes. Use Accept header to choose this response type"
3636
"400":
37-
$ref: '../../beacon-node-oapi.yaml#/components/responses/InvalidRequest'
37+
$ref: "../../beacon-node-oapi.yaml#/components/responses/InvalidRequest"
3838
"406":
39-
$ref: '../../beacon-node-oapi.yaml#/components/responses/NotAcceptable'
39+
$ref: "../../beacon-node-oapi.yaml#/components/responses/NotAcceptable"
4040
"500":
4141
$ref: "../../beacon-node-oapi.yaml#/components/responses/InternalError"
4242
"503":

types/gloas/execution_payload_envelope.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@ Gloas:
4141
$ref: "#/Gloas/ExecutionPayloadEnvelope"
4242
signature:
4343
allOf:
44-
- $ref: "../primitive.yaml#/BLSSignature"
44+
- $ref: "../primitive.yaml#/Signature"
4545
- description: "BLS signature of the execution payload envelope"

0 commit comments

Comments
 (0)