HackMD
    • Sharing Link copied
    • /edit
    • View mode
      • Edit mode
      • View mode
      • Book mode
      • Slide mode
      Edit mode View mode Book mode Slide mode
    • 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
    • More (Comment, Invitee)
    • Publishing
    • Commenting Enable
      Disabled Forbidden Owners Signed-in users Everyone
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Invitee
    • No invitee
    • Options
    • Versions and GitHub Sync
    • Transfer ownership
    • Delete this note
    • Template
    • Save as template
    • Insert from template
    • Export
    • Google Drive Export to Google Drive
    • Gist
    • Import
    • Google Drive Import from Google Drive
    • Gist
    • Clipboard
    • Download
    • Markdown
    • HTML
    • Raw HTML
Menu Sharing Help
Menu
Options
Versions and GitHub Sync Transfer ownership Delete this note
Export
Google Drive Export to Google Drive Gist
Import
Google Drive Import from Google Drive Gist Clipboard
Download
Markdown HTML Raw HTML
Back
Sharing
Sharing Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
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
More (Comment, Invitee)
Publishing
More (Comment, Invitee)
Commenting Enable
Disabled Forbidden Owners Signed-in users Everyone
Permission
Owners
  • Forbidden
  • Owners
  • Signed-in users
  • Everyone
Invitee
No invitee
   owned this note    owned this note      
Published Linked with GitHub
Like BookmarkBookmarked
Subscribed
  • Any changes
    Be notified of any changes
  • Mention me
    Be notified of mention me
  • Unsubscribe
Subscribe
# Executable Spec instead of Core EIPs ## Discussion link https://ethereum-magicians.org/t/core-eips-in-an-executable-spec-world/8640 --- ## Contents [toc] ## Context Today, [Core EIPs](https://eips.ethereum.org/core) are used to specify changes affecting the execution layer (EL) which need to be activated through coordinated network upgrades (a.k.a. soft/hard forks). Core EIPs currently serve two purposes: explaining the motivation/rationale/security implications of the change and formally specifying it. While the former is very useful, and helps the Ethereum community understand and debate changes, the latter isn't ideal for a few reasons: 1. The EIP format is very different than the "full specification" for the EL, the Yellow Paper. The YP often lags behind network upgrades for several months before reflecting the current state of the network. This means the actual specification is often "Yellow Paper + EIPs A, B, C" 2. Complex EIPs which touch several parts of Ethereum, e.g. [EIP-1559](https://eips.ethereum.org/EIPS/eip-1559), can require authors re-write a "skeleton spec" for Ethereum to highlight the changes they introduce. 3. The consensus layer (CL) uses a different process: an [executable specification](https://github.com/ethereum/consensus-specs/) on which changes are directly proposed as a diff. Changes' motivation/rationale/security implications are not generally detailled in EIPs. 4. Changes spanning both the consensus and execution layer are awkward to specify and now require "proto EIPs" to act as a meta-spec, e.g. for [withdrawals](https://notes.ethereum.org/@ralexstokes/validator-withdrawals-meta-spec), or many crosslinks, e.g. for [4844](https://github.com/ethereum/consensus-specs/pull/2850) We now (almost!) have an executable specification for the EL as well ([link](https://github.com/ethereum/execution-specs/#consensus-specification-work-in-progress)). Here is a proposal for how we could harmonize the process across EL + CL. ## Constraints A few things we are trying to optimize for here: 1. **EIP Editors bandwidth**: EIP Editors are part time volunteers with incredibly high opportunity cost. We already have less than we would like, and we need to make sure we don't burn out or drive away the ones we do have. * **Links**: One particularly challenging topic for EIP editors is external links. Currently, they aren't allowed. Because links vary in quality and degrade over time, making a judgement call about them is something that adds a ton of overhead to EIP editors. 3. **Coherent process across EL + CL:** while it's OK if there are small differences between the EL & CL processes, post-merge, there is just one Ethereum. We need to make sure that the overall process is coherent across both the EL + CL layers, and legible to the broader Ethereum community. 4. **Varying Quality of EIPs**: EIPs are open for anyone to submit, which, while good, leads to a lot of stale, poor quality, duplicate, etc. proposals. We need to make sure that these can be easily triaged from potential proposals for an upgrade and from EIPs which have been included in an upgrade. 5. **EIP Champions bandwidth**: It's hard to get an EIP implemented in a network update, we want to make sure we're not creating unnecessary work for the people who endeavour to try. 6. **Little external dependencies**: Changes to the Ethereum protocol should ideally use processes which are tool-agnostic. Whenever possible, for example, we should use code or markdown rather than, say, Github PRs or Issues. ## High Level Proposals ### 1. Move Core EIPs directly in EL/CL specs Separate Core EIPs from other EIP categories, and store them directly in the executable and consensus spec repositories. The technical "Specification" section would instead be represented by the accompanying changes to the specification itself, while the other text-based sections would move into reStructuredText files alongside the code changes in the same repository. ### 2. Use Core EIPs alongside EL/CL specs Similar to (1), but keep using Core EIPs as a way to describe changes, provide rationale, etc. and link to the EL and/or CL specs for actual implementation details. ## Implementation Details ### EIP Location & Format Currently all EIPs live in the [`ethereum/EIPs`](https://github.com/ethereum/EIPs) repository. Under this proposal, the specification for changes would instead live in [`ethereum/execution-specs`](https://github.com/ethereum/execution-specs) and [`ethereum/consensus-specs`](https://github.com/ethereum/consensus-specs) under a subdirectory. If Core EIPs were moved to the specifications repository as well, they would be formatted with reStructuredText for consistency with the inline documentation. ### Core EIPs Template Make the following changes to the [template](https://github.com/ethereum/EIPs/blob/master/eip-template.md): > #### Specification If Core EIPs remain in the EIP repository, allow links to [`ethereum/execution-specs`](https://github.com/ethereum/execution-specs) and [`ethereum/consensus-specs`](https://github.com/ethereum/consensus-specs) in this section. > #### Test Cases TBD. > #### Reference Implementation Make this section optional, for cases where things are easier to express using a different notation, but the implementation(s) in the specs repositories should be considered canonical. #### Notes: * This will require maintaining two templates: one for Core EIPs and one for everything else. While this isn't the end of the world, we should be mindful of it. ### Executable Specifications Use branches to highlight EIPs in various stages, specifically: * `master`: what is currently live on the Ethereum mainnet * `forks/$FORK_NAME`: PR target branch for EIPs slated for inclusion in `$FORK_NAME` * `eips/$EIP_NUMBER`: a specific EIP's specification When an EIP goes from being proposed to being [Considered for Inclusion (CFI)](https://github.com/ethereum/execution-specs/tree/master/network-upgrades#definitions) for a fork, merge `eips/$EIP_NUMBER` into `forks/$FORK_NAME`. When `$FORK_NAME` is deployed on mainnet, merge `forks/$FORK_NAME` into `master`. _**Note:** if a CFI'd EIP is then removed from the fork specification, the merging of it into `$FORK_NAME` will have to be reverted._ This means that specifications for historical EIPs will forever live as branches in the executable spec repository. If the EIP wants to be proposed for another fork, an author must update its branch by rebasing it. ### EIP Process Currently, Core EIPs roughly follow this process: | Stage | Name | EIP Location | Description | | ----- | -------- | -------- | -------- | | 0 | Pre-Draft | _any git repository_ | Open PR in `ethereum/EIPs`, no requirements | | 1 | Draft | _`ethereum/EIPs master`_ | Meets minimum requirements in EIP-1 | | 2 | Review | _`ethereum/EIPs master`_ | EIP is fully specified, but changes are expected. | | 3 | Last Call | _`ethereum/EIPs master`_ | Changes are no longer expected to the EIP. Required before testnet deployements. | | 4 | Final | _`ethereum/EIPs master`_ | EIP is live on mainnet. Material changes are no longer possible. | Note that EIPs tend to be made CFI when they are either in Draft or Review. Instead if we, as an example, combine this with the Executable Specifications flow using a single repository, we get: | Stage | Name | Specification Location | Description | | ----- | -------- | -------- | -------- | | 0 | Pre-Draft | _any git repository_ | Open PR in `ethereum/execution-specs`, no requirements. | | 1 | Draft | _`ethereum/execution-specs eips/4444`_ | Meets minimum requirements in EIP-1 | | 2 | Review | _`ethereum/execution-specs eips/4444`_ | EIP is fully specified, but changes are expected. | | 3 | Last Call | _`ethereum/execution-specs eips/4444`_ | Changes are no longer expected to the EIP. Required before testnet deployements. | | 4 | Final | _`master`_ | Material changes are no longer possible. | If we were to keep Core EIPs alongside Executable Specifications, you would have the following flow: | Stage | Name |Specification Location | Description | | ----- | -------- | -------- | -------- | | 0 | Pre-Draft | _any git repositories_ | Open PR in `ethereum/eips` **and** `ethereum/execution-specs`, no requirements. | | 0.5 | Draft | _`ethereum/EIPs master`_ **and** _any git repository_ | Once PR is merged in `eips`, use the EIP number to name the `execution-specs` branch. | 1 | Draft | _`ethereum/EIPs master`_ **and** _`ethereum/execution-specs eips/4444`_ | Meets minimum requirements in EIP-1, has EIP number assigned. | | 2 | Review | _`ethereum/EIPs master`_ **and** _`ethereum/execution-specs eips/4444`_ | EIP is fully specified, has a specification in `execution-specs`, but changes are expected. | | 3 | Last Call | _`ethereum/EIPs master`_ **and**_`ethereum/execution-specs eips/4444`_ | Changes are no longer expected to the EIP. Required before testnet deployements. | | 4 | Final | _`ethereum/EIPs master`_ **and** _`ethereum/execution-specs forks/london`_ | Material changes are no longer possible. | **Note:** this would apply across both the EL **and CL**, implying that CL changes would also require an EIP for specification. ## Keeping Core EIPs vs. Specs-Only One contentious aspect of moving to executable specifications is whether to keep using Core EIPs in the`eips` repository to describe non-code aspects of the change, or whether to exclusively use exectuable specifications for everything. ### EIPs Repository #### Pros * Well known within the broader Ethereum community, legitimacy around the name/process/etc. * Basic infrastructure exists (eips.ethereum.org, EIP bot) * Will require changes * Clear identifiers for changes ("EIP-X", everyone knows what e.g. EIP-1559, ERC-20, ERC-721, etc. refers to). * Counterpoint: people may get used to things like "ELIP-X" and "CLIP-Y" * Can use the same number to describe EL + CL changes (e.g. EIP-4844) rather than having a different PR/branch number to specify a change across the EL & CL (e.g. [CL "withdrawals"](https://github.com/ethereum/consensus-specs/pull/2836) and [EIP-4895](https://eips.ethereum.org/EIPS/eip-4895)) #### Cons * Awkward to have to wait for an EIP draft to be merged before you can have a branch number on the EL/CL spec. * Counterpoint: may reduce the number of branches on the specs? * Need to maintain 2-3 resources (EIP + EL/CL specs) rather than 1-2 and ensure they are in alignment with each other. * Core EIP template will likely diverge from general template. ### Specs Only #### Pros * Everything is self-contained within the specs repo, no dependency on other repositories * Counterpoint: features which span EL + CL * Countercounterpoint: EL + CL spec could end up in the same repository * Can have a different template to describe changes, adapted to core protocol changes, without affecting EIPs #### Cons * No unified naming scheme / less community recognition * When EIPs get bundled and become a fork, it may be harder to untangle the different changes which went into a fork. * Counterpoint: will still have English descriptions _somewhere_ in specs repos, and this will still be true to an extent if we use the executable specs at all.

Import from clipboard

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 lost 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?

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

Sign in via SAML

or

Sign in via GitHub

Help

  • English
  • 中文
  • 日本語

Documents

Tutorials

Book Mode Tutorial

Slide Example

YAML Metadata

Resources

Releases

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

Versions and GitHub Sync

Sign in to link this note to GitHub Learn more
This note is not linked with GitHub Learn more
 
Add badge Pull Push GitHub Link Settings
Upgrade now

Version named by    

More Less
  • Edit
  • Delete

Note content is identical to the latest version.
Compare with
    Choose a version
    No search result
    Version not found

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. Learn more

       Sign in to GitHub

      HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.

      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
      Available push count

      Upgrade

      Pull from GitHub

       
      File from GitHub
      File from HackMD

      GitHub Link Settings

      File linked

      Linked by
      File path
      Last synced branch
      Available push count

      Upgrade

      Danger Zone

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

      Syncing

      Push failed

      Push successfully