Alex Stokes
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Versions and GitHub Sync Note Insights Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       owned this note    owned this note      
    Published Linked with GitHub
    Subscribed
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    Subscribe
    # The road to PeerDAS in Pectra The core dev community has decided that PeerDAS is a top priority to ship as soon as possible in order to scale Ethereum's data throughput. Given that scaling the throughput amounts to raising the in-protocol blob count maximum, this suggests the next hard fork should contain both features: 1. Deploying PeerDAS for data sampling 2. Raising the blob count This document further explains how we can deploy PeerDAS and makes two concrete suggestions to reduce the "decision surface" when raising the blob count. If the feedback from this document is positive, I'm happy to make PRs for the engine API and the PeerDAS validator guide to reflect the proposed changes. ## Deploying PeerDAS It was decided on [ACDC #134](https://github.com/ethereum/pm/issues/1050) to implement PeerDAS as a feature set on top of Pectra with a separate activation fork epoch. This strategy means that we have some optionality to easily remove PeerDAS if we get to a point where the rest of the Pectra EIPs are ready to ship and we still don't have confidence in the PeerDAS implementation. To illustrate, there are two relevant fork epochs the consensus layer client must reason about: `PECTRA_FORK_EPOCH` and `PEERDAS_ACTIVATION_EPOCH`. I strongly suggest that either these two values are identical (meaning PeerDAS goes live with Pectra), or `PEERDAS_ACTIVATION_EPOCH` is left as a maximum value while `PECTRA_FORK_EPOCH` is set to its mainnet value. Having two separate epochs means that development can proceed in parallel without all of the ceremony around an entirely new fork (e.g. PeerDAS in the F/Osaka fork) in clients that would complicate the implementation and testing of PeerDAS along with the other Pectra features. ## Uncertainty around deployment timeline and cross-layer concerns The above "uncoupled" strategy should streamline R&D, but it does mean it is not clear if Pectra will have a blob count increase. The current implementation of the blob count maximum has a value both on the CL (max blob commitments possible) and EL layer (max blob data gas). The fact that this decision is coupled across the CL and EL means that the uncertainty around the CL timeline imposes uncertainty around the EL timeline. This uncertainty is unwanted as scoping the EL side of Pectra is also quite complex given many parallel features with demand from different members of the Ethereum community. And as long as this coupling exists, this problem will keep presenting itself: an entire hard fork just to change this one constant across both CL and EL clients. To uncouple the two protocol layers around the blob count, I suggest the following (h/t Dankrad for suggesting something along these lines): :::info - Remove a hard-coded data gas limit from the EL - Have the CL send the data gas limit (or equivalently just the maximum blob commitment count) to the EL for each payload across the Engine API ::: The data gas limit should only change at fork boundaries so we could imagine the CL only sending once per fork, but there is precedent already to send data from CL to EL with each payload (c.f. the parent beacon block root for EIP-4788) and sending the data with each message makes validation self-contained (rather than demanding the EL track some state for each payload received). By doing this, the EL no longer has to care about what the blob gas limit is and can simply follow the CL's directive here. We can then uncouple timeline discussions around raising the blob count from EL scoping discussions. I think the best place to specify this behavior would be in the Pectra Engine API spec. ## On raising the blob count in Pectra Assuming the PeerDAS implementations go well over the next few months and we are ready to ship it in Pectra, we will need to determine how to adjust the maximum blob count. We can already see today's maximum blob count of 6 brings a higher rate of orphaned blocks in [this analysis done by Toni](https://ethresear.ch/t/big-blocks-blobs-and-reorgs/19674#blobs-3). The likely explanation is that blocks with 6 blobs are already straining nodes on the network with lower available resources (e.g. solo stakers at home). Raising the maximum blob count further will only exacerbate this issue, and in the terminal state of Ethereum's scaling roadmap we assume that blob production will be handled by specialized nodes that can handle 32 MB messages. At the same time, we do not want to completely exclude the home staker from participating in blob production as they are an important member of the Ethereum network. The simple answer to resolve all of these tensions is to have consensus clients support a flag for a local target for block/blob production. To suggest an implementation: :::info `CL_BEACON_NODE --local-block-production.maximum-blob-count N`, where `N` is the maximum number of blobs a beacon node should include in a proposer's block when building locally, regardless of the in-protocol maximum. ::: Note that more powerful nodes, like execution builders, can either omit this flag (using the in-protocol max), or suggest a higher number than a solo staker may prefer. My understanding was that a target of 3 and max of 6 blobs would be fine to start for all nodes on the network, but the data suggests otherwise and so the time to implement this feature is with Pectra. Doing so in Pectra also helps derisk a blob count increase for the network, at the cost of a slightly more complex deployment for the solo staker (who needs to be aware of this flag and configure it in their own staking setup). Another option suggested by Josh Rudolf was to default this flag to a sufficiently low number, and let execution builders take on the task of customzing for a higher blob count. This option moves complexity from the solo staker to the specialized block builders which is more inline with our resource model of these node types; however, I would point out that defaults are powerful and we don't want to accidentally block a blob increase simply because builders are unaware of this requirement. I think the best place to specify this possibility would be in the EIP-7594 validator guide in the consensus specs under block construction. It would be up to each consensus client how to structure the flag and the relevant documentation for their users.

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully