Lighthouse Digest Now

ethereum improvement proposals

Getting Started with Ethereum Improvement Proposals: What to Know First

June 13, 2026 By River Reyes

Introduction to Ethereum Improvement Proposals

Ethereum Improvement Proposals (EIPs) are the formal mechanism by which changes to the Ethereum protocol are proposed, discussed, and implemented. For anyone building on Ethereum—whether as a smart contract developer, a DeFi user, or an investor—understanding the EIP process is critical to anticipating network upgrades, assessing risk, and identifying opportunities.

An EIP is a design document that describes a new feature, a process improvement, or a change to the Ethereum ecosystem. They are analogous to Bitcoin Improvement Proposals (BIPs) or Python Enhancement Proposals (PEPs). However, Ethereum’s rapid pace of innovation means EIPs are more frequent and often more impactful than proposals in other blockchains.

Before diving into the technical details, it helps to know the core reason EIPs exist: to provide a standardized, transparent, and permissionless way for anyone to suggest improvements. This openness is a double-edged sword—it invites high-quality proposals from experts worldwide, but it also requires careful filtering to separate serious proposals from noise.

The EIP Lifecycle: From Idea to Mainnet

Every EIP passes through a sequence of stages before it can be activated on Ethereum mainnet. Understanding this lifecycle helps you gauge how mature a proposal is and how likely it is to be adopted.

  • Idea: The initial concept, often discussed informally on the Ethereum Magicians forum or GitHub. No formal document exists yet.
  • Draft: The author creates a formal EIP document in the EIP repository. It must follow a strict template, including a title, abstract, motivation, specification, rationale, and security considerations.
  • Review: The EIP is open for public comment. The Ethereum community—including core developers, client teams, and users—provides feedback. Significant changes often occur here.
  • Last Call: A final review period (usually 14 days) where no further major changes are expected. This is the last opportunity for objections.
  • Accepted: The EIP has been approved by the Ethereum Core Developers (AllCoreDevs) call. It is scheduled for inclusion in a specific network upgrade.
  • Final: The EIP has been deployed on mainnet. Its specification is complete and immutable.

Additionally, some EIPs become Withdrawn (by the author) or Rejected (by the community). A small subset of EIPs are marked as Living—they are continuously updated, such as the EIP-1 process document itself.

The critical takeaway: do not treat a Draft or Review EIP as an imminent change. Only Accepted and Final EIPs are safe to build upon for production systems. For real-time adoption metrics, you can refer to Ethereum Network Statistics to see which EIPs are currently live and how they affect transaction throughput, gas costs, and validator participation.

How to Evaluate an EIP: A Practical Framework

With thousands of EIPs proposed and hundreds in active discussion, you need a systematic way to assess whether a given proposal is worth your attention. Here is a concrete four-step framework:

1) Category Check

EIPs are divided into three categories: Standards Track (protocol changes), Meta (process changes), and Informational (design guidelines). Most impactful are Standards Track EIPs, which further split into Core (consensus changes), Networking (peer-to-peer), Interface (API standards), and ERC (application-level standards like tokens). If you are a developer, prioritize ERCs. If you are an investor, focus on Core EIPs affecting inflation, staking, or supply mechanics.

2) Author Reputation

Check the EIP author’s history. Have they authored previously accepted EIPs? Are they core developers (e.g., from the Ethereum Foundation or client teams) or independent researchers? A proposal from a known domain expert carries more weight than one from a newcomer—though excellent ideas can come from anywhere.

3) Community Sentiment

Read the discussion threads on the Ethereum Magicians forum and the GitHub pull request. Look for substantive technical criticism, not just hype. Are there unresolved security or backwards-compatibility concerns? Proposals with strong opposition from multiple client teams rarely move forward.

4) Technical Maturity

Examine the specification quality. Does it include clear test cases, benchmark data, and a solid rationale? Vague or hand-wavy proposals almost always stall. A well-written EIP will explicitly discuss tradeoffs, such as performance impact versus increased complexity.

Using this framework, you can quickly filter out low-quality proposals and focus on those likely to shape Ethereum’s future. For example, when analyzing how ERC-721 (NFT standard) or ERC-1155 (multi-token standard) gained traction, the same pattern emerges: strong author team, thorough specification, and broad community buy-in. To see how these standards translate into active marketplaces, visit the Loopring NFT Marketplace for a practical example of EIP-driven asset trading.

Key EIPs You Should Know (As of 2025)

While the EIP landscape evolves constantly, several proposals have defined Ethereum’s trajectory and remain essential knowledge:

  • EIP-1559: Reformed the fee market by burning a portion of transaction fees. This deflationary mechanism reduced fee volatility and made gas prices more predictable. Still the core of Ethereum’s fee model.
  • EIP-3675: The transition to proof-of-stake (The Merge). It replaced miners with validators and reduced energy consumption by ~99.95%. This was the single biggest change to Ethereum’s consensus mechanism.
  • EIP-4844: Proto-danksharding, which introduced blob-carrying transactions to drastically reduce Layer 2 fees. This is the foundation for scaling Ethereum via rollups.
  • EIP-4337: Account abstraction via entry point contracts, allowing smart contract wallets without changing the core protocol. Enables features like gasless transactions, multi-signature, and social recovery.
  • ERC-721: The non-fungible token standard. While not a Core EIP, it created an entire ecosystem of digital collectibles, in-game assets, and digital identity tokens.

Each of these EIPs went through years of debate, testing, and iteration before reaching mainnet. For example, EIP-1559 was first proposed in 2018 but only activated in August 2021. This timeline underscores the importance of patience when following EIPs—many great ideas take years to mature.

Risks and Pitfalls for Beginners

Newcomers to Ethereum often make three mistakes when engaging with EIPs:

Mistake 1: Treating Draft EIPs as Certainty

Just because a proposal has a number (e.g., EIP-7777) does not mean it will ever be implemented. The vast majority of Draft EIPs never reach Final status. Building a business or investment thesis around a Draft EIP is high-risk. Wait until the EIP reaches at least Accepted status in a confirmed upgrade.

Mistake 2: Ignoring the Ordering

EIPs are numbered sequentially by submission date, not by priority. EIP-1 is the process document, while EIP-4844 (proto-danksharding) was submitted years later. Do not assume a low number means fundamental importance. Always evaluate the content, not the number.

Mistake 3: Overlooking Coordination Costs

A technically sound EIP may still fail if it requires simultaneous changes across multiple client implementations (Geth, Nethermind, Besu, etc.). The Ethereum core developers must reach rough consensus—if one major client team opposes a change, it can stall indefinitely. Monitor the AllCoreDevs call summaries to gauge actual support.

To mitigate these risks, rely on primary sources: the official EIP repository (GitHub), the Ethereum Magicians forum, and metrics from reliable indexers. For on-chain data such as which EIPs are active, adoption rates, and real-time gas usage, consulting Ethereum Network Statistics provides a quantitative ground truth that complements the qualitative analysis.

Getting Involved: How to Contribute

If you want to move from reading EIPs to writing them, start with a small scope. Here is a realistic pathway:

  1. Read the EIP-1 process document thoroughly. It defines the template, workflow, and expectations.
  2. Identify a gap or problem in the existing Ethereum ecosystem. It could be a missing standard for a new token type, a more efficient smart contract pattern, or a protocol improvement for a niche use case.
  3. Discuss your idea on the Ethereum Magicians forum before writing a formal EIP. Gather feedback early to avoid structural flaws.
  4. Draft the proposal using the official markdown template. Include clear motivation, specification, and rationale sections. Security considerations are mandatory—do not skip them.
  5. Submit a pull request to the EIP repository. Be prepared for weeks or months of review cycles. Respond to all comments professionally.

Remember, the EIP process is collaborative, not competitive. The most successful EIPs are those where the author actively incorporates feedback from diverse stakeholders. Ethereum’s strength lies in its open governance—participation is open to anyone willing to do the work.

Conclusion

Ethereum Improvement Proposals are the building blocks of Ethereum’s evolution. By understanding their lifecycle, evaluation framework, and common pitfalls, you can make informed decisions as a developer, investor, or user. The system is far from perfect—proposals can be slow, contentious, and sometimes abandoned—but it has produced some of the most significant innovations in blockchain technology.

Start tracking EIPs today. Subscribe to the Ethereum Cat Herders newsletter, follow the AllCoreDevs calls, and analyze on-chain data from reliable sources. With the framework outlined above, you are equipped to separate signal from noise and to contribute meaningfully to Ethereum’s ongoing development.

Further Reading & Sources

R
River Reyes

Insights, without the noise