Informational EIP: Author Handbook

Creating a new EIP (Informational) to provide suggestions for Authors.
See Create a new informational EIP for author instruction by xinbenlv · Pull Request #5976 · ethereum/EIPs · GitHub

1 Like

Should Core EIP uses a number or a placeholder when introducing

Cross-posting some comments from this PR #6054

@axic says

You absolutely need to define some number otherwise nobody can implement and test it. It is also absolutely fine to resolve conflicts when things are accepted into a protocol upgrade. This has been the practice.

@xinbenlv responded

@axic the placeholder mark is meant to archive exactly what you mean here.
When using a placeholder mark, implementers have to choose some number, and just like all parameters will be passed in, placeholder mark will also be passed in some number by implementer for sure. In addition to choosing some number, using placeholder highlights such number is subject to change, not only when finalized, but also during draft. because:"

  1. Having a placeholder name helps people search across different implementations, geth, ethereumjs with consistent parameter naming and make them configurable.
  2. This will be particularly useful say when they want to run cross-implementation consensus testing so a tester can config the placeholder to the same number and start testing.

We could avoid this case: different implementers who implemented EIP-663 before this PR may hardcode the 0xb0 but implementer after this PR may hardcode 0xb3 for DUPN, and didn’t get reminded for paramatize DUPN as a placeholder for cross-platform testing.

and

Another benefit is that, if there is any implied mathematical relationship between multiple instructions introduced by an EIP, having placeholder marks for all of them kind of help reminding EIP Author to explain such relationship. For example, when I read

`DUPN` (`0xb3`)
`SWAPN ` (`0xb4`)

I interpret that it implies you are suggesting they are better to (1) be allocated starting with 0xb_ section, and are better to (2) be consecutive.

But when I read

`DUPN` (`0xb0`)
`SWAPN ` (`0xb1`)

In addition to (1), (2), there was also a possible interpretation (3) that this EIP Author wants to suggest putting DUPN and SWAPN to a new Hex-teen(0x10) sector. Such implied interpretation is now removed because of this PR#6054.

Such mathematical relationship may affect when people want to design chips / physical circuits for EVMs in the future so I assume sometime authors may care.

@frangio for feedback about this:

This handbook’s current snapshot proposes for ERCs to move to Final it requires 2 or more independent implementations and deployment on public testnets or mainnet.

Maybe it’s too restrictive, love to get your thought.

Alternatives are to require some sort of “discussion” or “wait some longer time duration” but these has been rejected / deem unfavorable by some in last EIPIP meeting but “some sort of discussion” could easily suffer from Sybil attack. Length of time to wait is also not a good “worthiness” or “thoroughness of discussion” indicator.

Cross posting a relevant statement of "reference implementation is also a quality signal for EIP" by @fulldecent

The reference implementation is a quality signal that shows the author actually took the time to read the thing they themselves wrote. I support such a quality signal and I think it is or should be a requirement for publishing an ERC.

Speaking from my own personal concerns and where I think we are missing guidelines: I believe this should focus solely on ERCs, which as we know are a completely different kind of EIP when compared to Core EIPs and deserve specific guidelines that may not apply generally.

I think requiring 2 independent implementations is way too much, but it would be good to require 1 implementation. IMO discussion is the more important part, and indirectly interest. I’m not sure that it makes sense to worry about Sybil attacks. I’ll keep thinking about it.

I agree with you that this particular finalizing criteria shall only apply to ERC not all EIPs.

requiring two impl is way too much

When you say “its way too much to require two imp”, do you mean as a criteria for “Draft” or “Final”? I am proposing two impl for “Final”. If we only require one, it’s hardly demonstrating someone else other than author who would want to build impl for this standard. And less point of “Finalizing” it because if only one impl, no one cares if interface change, nobody would the sole implementation need to convince to change.

Yes, please do. By “sybil attack” in this context I mean it’s very easy for a motivated author to create a second account or ask co-worker / friend to comment and thus I feel it’s a bit too weak using discussion as a “Final” criteria. Ok to serve as a Draft criteria IMO.

Let me move the discussion about criteria of publishing draft and advancing status into a separate thread because I think that’s an important issue and worthy of a focused discussion.

@anett for your comment~

1 Like

Is this related to EIP-5069: EIP Editor Handbook ?

There’s also EIP ERC Editor Handbook which is in a sense extended version of EIP-5069

A while ago @souptacular kicked off EIP IP group which purpose was to “clean up” the EIP process, initially to separate ERCs from EIPs. As ERCs are more of a standardised solidity functions specs.
From my last conversation with some ECH members, Core EIPs are going to be separated and will have a little bit different governance process. I’m sure @poojaranjan can share more up-to-date information.

Thank you for tagging me @xinbenlv

1 Like

As per my understanding, currently, Core EIPs follow a bit different process than what is proposed in the strawman criteria for advancing EIP statuses.

Generally speaking, Core EIPs are tightly coupled with the Network Upgrade process.

Thus, instead of following “reference implementation” and “number of days” it passes through different phases inviting “rough consensus”and “client’ implementation”.

Here is a high level diagram of status change criteria. Also, refer to the ECH blogpost explaining phases requirements.

As @anett mentioned, Core EIPs in an Executable Spec World is proposed to bring some changes to the existing process of Core EIPs documentation & implementation. Worth following the discussion and sharing thoughts, if any.

1 Like

@anett thanks for the response. I look at the differences this way: EIP Editor Handbook is focusing on instructing EIP editors who to edit EIPs. EIP Author Handbook is more for handholding new authors or returning authors to get up-to-speed to the EIP process from their angle.

Author Handbook covers more basic stuff that EIP Editor Handbook may assume editors are already super familiar with, such as “Identifying Related and Competing EIPs”. It omit things that only EIP Editors needs to know, such as how to apply to become an EIP editor or how long does an EIP becomes Stagnent.