Skip to content
Closed
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
10 changes: 4 additions & 6 deletions specs/gloas/validator.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
- [Block proposal](#block-proposal)
- [Constructing `signed_execution_payload_bid`](#constructing-signed_execution_payload_bid)
- [Constructing `payload_attestations`](#constructing-payload_attestations)
- [Blob sidecars](#blob-sidecars)
- [Constructing Data column sidecars](#constructing-data-column-sidecars)
- [Payload timeliness attestation](#payload-timeliness-attestation)
- [Constructing a payload attestation](#constructing-a-payload-attestation)
- [Modified functions](#modified-functions)
Expand Down Expand Up @@ -162,12 +162,10 @@ construct the `payload_attestations` field in `BeaconBlockBody`:
indices with respect to the PTC that is obtained from
`get_ptc(state, block_slot - 1)`.

#### Blob sidecars
#### Constructing Data column sidecars

The blob sidecars are no longer broadcast by the validator, and thus their
construction is not necessary. This deprecates the corresponding sections from
the Honest Validator specifications in the Fulu fork, moving them, albeit with
some modifications, to the [Honest Builder](./builder.md) specifications.
Unless a validator self-builds, the data column sidecars are no longer broadcast
by the validator, and thus their construction is not necessary.
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thus their construction is not necessary

So this is still inaccurate. If validators can/will self-build, their construction is necessary.

This sentence needs a complete re-write in my opinion.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yup it does require more clarification

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what about something like:

Data column sidecar construction and broadcast will be handled by builders. 

Validators will still have to construct and broadcast the data column sidecars if 
they choose to self-build.


### Payload timeliness attestation

Expand Down