← All MIPs

MIP-1: MIP Purpose and Guidelines 💬🔗

Guidelines and procedures for the Monad Improvement Proposal process

AuthorQEDK (@qedk)
StatusDraft
TypeMeta
CategoryProcess
Created2026-02-24
Discussionhttps://forum.monad.xyz/t/mip-1-mip-purpose-and-guidelines

What is a MIP?

MIP stands for Monad Improvement Proposal. A MIP is a design document providing information to the Monad community, or describing a new feature for Monad or its processes or environment. The MIP should provide a concise technical specification of the feature and a rationale for the feature. The MIP author is responsible for building consensus within the community and documenting dissenting opinions.

MIP Rationale

MIPs are the primary mechanism for proposing new features, for collecting community technical input on an issue, and for documenting the design decisions that have gone into Monad. Because MIPs are maintained as text files in a versioned repository, their revision history is the historical record of the feature proposal.

For Monad implementers, MIPs are a convenient way to track the progress of their implementation. Ideally, each implementation maintainer would list the MIPs that they have implemented. This will give end users a convenient way to know the current status of a given implementation or library.

MIP Types

There are three types of MIP:

It is highly recommended that a single MIP contain a single key proposal or new idea. The more focused the MIP, the more successful it tends to be.

A MIP must meet certain minimum criteria. It must be a clear and complete description of the proposed enhancement. The enhancement must represent a net improvement. The proposed implementation, if applicable, must be solid and must not complicate the protocol unduly.

Special Requirements for Core MIPs

If a Core MIP mentions or proposes changes to the EVM (Ethereum Virtual Machine) or Monad-specific EVM extensions, it should refer to instructions by their mnemonics and define the opcodes of those mnemonics at least once. A preferred way is the following:

REVERT (0xfd)

Because Monad’s execution and consensus layers are maintained as separate components, Core MIPs SHOULD clearly indicate which component(s) are affected: the execution daemon, the consensus daemon, or both.

Network Upgrade Meta MIPs

Named network upgrades on Monad (such as MONAD_NINE) MUST be specified by a Meta MIP with category Hardfork. The network upgrade Meta MIP MUST list all included Standards Track MIPs and specify the activation timestamps for each network (Monad Testnet, Monad Mainnet). The network upgrade Meta MIP MUST use requires to reference all included MIPs.

MIP Work Flow

Shepherding a MIP

Parties involved in the process are you, the champion or MIP author, the MIP editors, and the Monad Core Developers.

Before you begin writing a formal MIP, you should vet your idea. Ask the Monad community first if an idea is original to avoid wasting time on something that will be rejected based on prior research. It is thus recommended to open a discussion thread on the Monad community forum to do this.

Once the idea has been vetted, your next responsibility will be to present (by means of a MIP) the idea to the reviewers and all interested parties, invite editors, developers, and the community to give feedback on the aforementioned channels. You should try and gauge whether the interest in your MIP is commensurate with both the work involved in implementing it and how many parties will have to conform to it. For example, the work required for implementing a Core MIP will be much greater than for an MRC and the MIP will need sufficient interest from the Monad client team. Negative community feedback will be taken into consideration and may prevent your MIP from moving past the Draft stage.

Core MIPs

For Core MIPs, given that they require client implementations to be considered Final (see “MIP Process” below), you will need to either provide an implementation for clients or convince client teams to implement your MIP.

Because Monad uses a two-daemon architecture (a consensus daemon and an execution daemon), Core MIPs may require changes to one or both components. Authors SHOULD coordinate with the relevant teams accordingly.

The best way to get client implementers to review your MIP is to present it on a Monad Core Developers call. These calls serve as a way for client implementers to do three things. First, to discuss the technical merits of MIPs. Second, to gauge what will be implemented. Third, to coordinate MIP implementation for network upgrades.

These calls generally result in a “rough consensus” around what MIPs should be implemented. Social consensus gathering during the MIP process is critical, and provides the MIP author and stakeholders with signal that the proposed changes are agreeable within the ecosystem. This “rough consensus” rests on the assumptions that MIPs are not contentious enough to cause a network split and that they are technically sound.

In short, your role as the champion is to write the MIP using the style and format described below, shepherd the discussions in the appropriate forums, and build community consensus around the idea.

MIP Process

The following is the standardization process for all MIPs in all tracks:

MIP Status Diagram

Idea - An idea that is pre-draft. This is not tracked within the MIP Repository.

Draft - The first formally tracked stage of a MIP in development. A MIP is merged by a MIP Editor into the MIP repository when properly formatted.

Review - A MIP Author marks a MIP as ready for and requesting Peer Review.

Last Call - This is the final review window for a MIP before it is moved to Final. A MIP enters Last Call when the specification is stable and the author opens a PR with a review end date (last-call-deadline), typically 14 days later. If this period results in necessary normative changes, the MIP will revert to Review.

Final - This MIP represents the final standard. A Final MIP exists in a state of finality and should only be updated to correct errata and add non-normative clarifications. A PR moving a MIP from Last Call to Final SHOULD contain no changes other than the status update. Any content or editorial proposed change SHOULD be separate from this status-updating PR and committed prior to it.

Stagnant - Any MIP in Draft or Review or Last Call if inactive for a period of 3 months or greater is moved to Stagnant. A MIP may be resurrected from this state by Authors or MIP Editors through moving it back to Draft or its earlier status. If not resurrected, a proposal may stay forever in this status.

MIP Authors are notified of any algorithmic change to the status of their MIP

Withdrawn - The MIP Author(s) have withdrawn the proposed MIP. This state has finality and can no longer be resurrected using this MIP number. If the idea is pursued at a later date, it is considered a new proposal.

Living - A special status for MIPs that are designed to be continually updated and not reach a state of finality. This includes most notably MIP-1.

What Belongs in a Successful MIP?

Each MIP should have the following parts:

MIP Formats and Templates

MIPs should be written in Markdown format. There is a template to follow.

MIP Header Preamble

Each MIP must begin with an RFC 822 style header preamble, preceded and followed by three hyphens (---). This header is also termed “front matter” by Jekyll. The headers must appear in the following order.

mip: MIP number

title: The MIP title is a few words, not a complete sentence

description: Description is one full (short) sentence

author: The list of the author’s or authors’ name(s) and/or username(s), or name(s) and email(s). Details are below.

discussions-to: The URL pointing to the official discussion thread

status: Draft, Review, Last Call, Final, Stagnant, Withdrawn, Living

last-call-deadline: The date last call period ends on (Optional field, only needed when status is Last Call)

type: One of Standards Track, Meta, or Informational

category: One of Core, Networking, Interface, or MRC for Standards Track MIPs; one of Process or Hardfork for Meta MIPs (Optional field, only needed for Standards Track and Meta MIPs)

created: Date the MIP was created on

requires: MIP number(s) (Optional field)

withdrawal-reason: A sentence explaining why the MIP was withdrawn. (Optional field, only needed when status is Withdrawn)

Headers that permit lists must separate elements with commas.

Headers requiring dates will always do so in the format of ISO 8601 (yyyy-mm-dd).

author Header

The author header lists the names, email addresses or usernames of the authors/owners of the MIP. Those who prefer anonymity may use a username only, or a first name and a username. The format of the author header value must be:

Random J. User <[email protected]>

or

Random J. User (@username)

or

Random J. User (@username) <[email protected]>

if the email address and/or GitHub username is included, and

Random J. User

if neither the email address nor the GitHub username are given.

At least one author must use a GitHub username, in order to get notified on change requests and have the capability to approve or reject them.

discussions-to Header

While a MIP is a draft, a discussions-to header will indicate the URL where the MIP is being discussed.

The preferred discussion URL is a topic on the Monad community forum. The URL cannot point to GitHub pull requests, any URL which is ephemeral, and any URL which can get locked over time (i.e. Reddit topics).

type Header

The type header specifies the type of MIP: Standards Track, Meta, or Informational. If the track is Standards, please include the subcategory (Core, Networking, Interface, or MRC). If the track is Meta, please include the subcategory (Process or Hardfork).

category Header

The category header specifies the MIP’s category. This is required for Standards Track and Meta MIPs only.

created Header

The created header records the date that the MIP was assigned a number. The header should be in yyyy-mm-dd format, e.g. 2025-11-24.

requires Header

MIPs may have a requires header, indicating the MIP numbers that this MIP depends on. If such a dependency exists, this field is required.

A requires dependency is created when the current MIP cannot be understood or implemented without a concept or technical element from another MIP. Merely mentioning another MIP does not necessarily create such a dependency.

Linking to External Resources

Other than the specific exceptions listed below, links to external resources SHOULD NOT be included. External resources may disappear, move, or change unexpectedly.

Permitted External Resources

The following external resources may be linked:

Linking to Other MIPs

References to other MIPs should follow the format MIP-N where N is the MIP number you are referring to. Each MIP that is referenced in a MIP MUST be accompanied by a relative markdown link the first time it is referenced, and MAY be accompanied by a link on subsequent references. The link MUST always be done via relative paths so that the links work in this GitHub repository, forks of this repository, and mirrors. For example, you would link to this MIP as ./MIP-1.md.

When referring to a MIP with a category of MRC, it must be written in the hyphenated form MRC-X where X is that MIP’s assigned number. When referring to MIPs with any other category, it must be written in the hyphenated form MIP-X where X is that MIP’s assigned number.

Auxiliary Files

Images, diagrams and auxiliary files should be included in a subdirectory of the assets folder for that MIP as follows: assets/MIP-N (where N is to be replaced with the MIP number). When linking to an image in the MIP, use relative links such as ../assets/MIP-1/image.png. Prefer SVG diagrams, then PNG, and finally everything else.

Transferring MIP Ownership

It occasionally becomes necessary to transfer ownership of MIPs to a new champion. In general, we’d like to retain the original author as a co-author of the transferred MIP, but that’s really up to the original author. A good reason to transfer ownership is because the original author no longer has the time or interest in updating it or following through with the MIP process, or is unreachable. A bad reason to transfer ownership is because you don’t agree with the direction of the MIP. We try to build consensus around a MIP, but if that’s not possible, you can always submit a competing MIP.

If you are interested in assuming ownership of a MIP, send a message asking to take over, addressed to both the original author and the MIP editor. If the original author doesn’t respond in a timely manner, the MIP editor will make a unilateral decision.

MIP Editors

The current MIP editors are:

MIP Editor Responsibilities

For each new MIP that comes in, an editor does the following:

If the MIP isn’t ready, the editor will send it back to the author for revision, with specific instructions.

Once the MIP is ready for the repository, the MIP editor will:

The editors don’t pass judgment on MIPs. They merely do the administrative and editorial part.

Style Guide

Titles

The title field in the preamble:

Descriptions

The description field in the preamble:

MIP Numbers

When referring to a MIP with a category of MRC, it must be written in the hyphenated form MRC-X where X is that MIP’s assigned number. When referring to MIPs with any other category, it must be written in the hyphenated form MIP-X where X is that MIP’s assigned number.

RFC 2119 and RFC 8174

MIPs are encouraged to follow RFC 2119 and RFC 8174 for terminology and to insert the following at the beginning of the Specification section:

The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “NOT RECOMMENDED”, “MAY”, and “OPTIONAL” in this document are to be interpreted as described in RFC 2119 and RFC 8174.

Do not use RFC 2119 keywords (all-caps SHOULD/MUST/etc.) outside of the Specification section.

Relationship to Ethereum EIPs

Monad is EVM-compatible and shares substantial heritage with the Ethereum protocol. Where Monad adopts an Ethereum feature without modification, a MIP MAY reference the corresponding EIP directly rather than duplicating its specification in full. Where Monad diverges from Ethereum behavior or introduces Monad-specific extensions, a standalone MIP MUST be written to document the differences.

Network upgrades that activate a bundle of upstream Ethereum EIPs (such as EIPs from an Ethereum hard fork like Fusaka) SHOULD be tracked as a single Standards Track MIP specifying which EIPs are activated and any Monad-specific modifications, and then included in the corresponding network upgrade Meta MIP.

History

This document was derived heavily from Ethereum’s EIP-1 written by Martin Becze, Hudson Jameson, et al., which in turn was derived from Bitcoin’s BIP-0001 written by Amir Taaki, which in turn was derived from Python’s PEP-0001. In many places text was simply copied and modified. The authors of those documents are not responsible for its use in the Monad Improvement Process, and should not be bothered with technical questions specific to Monad or the MIP process. Please direct all comments to the MIP editors.

Copyright and related rights waived via CC0.

Citation

Please cite this document as:

QEDK (@qedk), "MIP-1: MIP Purpose and Guidelines," Monad Improvement Proposals, no. 1, February 2026. [Online serial]. Available: http://mips.monad.xyz/MIPS/MIP-1.