Skip to content
Merged
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
7 changes: 6 additions & 1 deletion apis/validator/aggregate_attestation.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
get:
operationId: "getAggregatedAttestation"
summary: "Get aggregated attestation"
description: "Aggregates all attestations matching given attestation data root and slot"
description: |
Aggregates all attestations matching given attestation data root and slot.

A 503 error must be returned if the block identified by the response
`beacon_block_root` is optimistic (i.e. the aggregated attestation attests
to a block that has not been fully verified by an execution engine).
tags:
- ValidatorRequiredApi
- Validator
Expand Down
7 changes: 6 additions & 1 deletion apis/validator/attestation_data.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ get:
- Validator
operationId: "produceAttestationData"
summary: "Produce an attestation data"
description: "Requests that the beacon node produce an AttestationData."
description: |
Requests that the beacon node produce an AttestationData.

A 503 error must be returned if the block identified by the response
Comment thread
mpetrunic marked this conversation as resolved.
`beacon_block_root` is optimistic (i.e. the attestation attests to a block
that has not been fully verified by an execution engine).
parameters:
- name: slot
in: query
Expand Down
7 changes: 6 additions & 1 deletion apis/validator/sync_committee_contribution.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ get:
- Validator
operationId: "produceSyncCommitteeContribution"
summary: "Produce a sync committee contribution"
description: "Requests that the beacon node produce a sync committee contribution."
description: |
Requests that the beacon node produce a sync committee contribution.

A 503 error must be returned if the block identified by the response
Comment thread
mpetrunic marked this conversation as resolved.
`beacon_block_root` is optimistic (i.e. the sync committee contribution
refers to a block that has not been fully verified by an execution engine).
parameters:
- name: slot
in: query
Expand Down