The post Encrypted mempool EIP hardens MEV and censorship resistance appeared on BitcoinEthereumNews.com. Ethereum researchers are advancing an encrypted mempoolThe post Encrypted mempool EIP hardens MEV and censorship resistance appeared on BitcoinEthereumNews.com. Ethereum researchers are advancing an encrypted mempool

Encrypted mempool EIP hardens MEV and censorship resistance

2025/12/18 03:23
10 min di lettura
Per feedback o dubbi su questo contenuto, contattateci all'indirizzo crypto.news@mexc.com.

Ethereum researchers are advancing an encrypted mempool eip proposal that would harden the protocol against MEV-related abuse while keeping block production efficient and permissionless.

Overview of the proposed encrypted mempool

The new Ethereum Improvement Proposal (EIP) introduces an enshrined encrypted mempool directly at the protocol level. It allows users to submit encrypted transactions that remain hidden until included in a block, mitigating front running and sandwich attacks while improving censorship resistance. However, the upgrade does not target long-term privacy, as every transaction is eventually decrypted and revealed on-chain.

The design is explicitly encryption-scheme agnostic. It supports arbitrary decryption key providers using threshold encryption, MPC committees, TEEs, delay encryption, or FHE-based systems. Moreover, traditional plaintext transactions remain fully supported, and the chain is guaranteed to keep progressing even if specific key providers fail to supply keys.

The proposal builds on prior initiatives such as the Shutterized Beacon Chain and a live, out-of-protocol encrypted mempool deployed on Gnosis Chain. That said, by moving this functionality in-protocol, the EIP aims to address long-standing MEV issues and to reduce harmful second-order effects such as builder centralization.

Motivation and role in Ethereum’s roadmap

The primary motivation is to defend users against malicious transaction reordering, including front running and sandwiching. By temporarily blinding builders and other market participants, the mechanism also seeks to increase the protocol’s real-time, or so-called “weak”, censorship resistance. Moreover, it aims to lower regulatory risks for block builders by limiting their visibility into user intent during block construction.

The EIP is not designed as a privacy upgrade in the classic sense. Instead, it acts as a MEV mitigation and fairness layer, ensuring that user transactions are not exploited during the critical pre-inclusion window. The design fits naturally with enshrined proposer-builder separation (ePBS), making it a logical extension of Ethereum’s long-term roadmap.

Key provider registry contract and trust graph

On the execution layer, the proposal deploys a key provider registry contract. Any account can register as a key provider and receives a unique ID. Registration requires specifying a contract with both a decryption function and a key validation function, each accepting a key ID and a key message as byte strings. Additionally, key providers may designate other providers as directly trusted, forming a directed trust graph.

Under this model, a key provider A is considered to trust a provider B if and only if there is a directed path from A to B in that graph. The beacon chain mirrors the state of the registry, using a mechanism analogous to how beacon chain deposits are handled today. This ensures that both the execution and consensus layers have a consistent view of registered key providers.

Registration is explicitly technology neutral, minimizing barriers to entry and enabling users to select preferred schemes. However, many advanced encryption systems are inefficient to express in the EVM, which would require dedicated precompiles. Strategy and implementers note that such precompiles are out of scope for this EIP.

Transaction format and ordering rules

The EIP introduces a new encrypted transaction type made of two components: an envelope and an encrypted payload. The envelope specifies an envelope nonce, gas amount, gas price parameters, key provider ID, key ID, and the envelope signature. The encrypted payload contains its own payload nonce, value, calldata, and payload signature, which collectively represent the actual transaction logic.

In a valid block, the protocol enforces strict ordering rules. Any transaction encrypted with a key from provider A may only be preceded by plaintext transactions, encrypted transactions using keys from provider A, or encrypted transactions using keys from providers that A trusts. This ordering binds encrypted inclusion to the trust graph and thereby reflects user preferences indirectly via their chosen providers.

This structure effectively splits every block into two sections: a plaintext segment followed by an encrypted segment. Builders can fully simulate the plaintext section and apply existing block building and MEV strategies. Moreover, they can then append encrypted transactions to the end of the block without significant opportunity cost, preserving competitiveness in PBS auctions.

Envelope execution and decryption workflow

During execution payload processing, once all plaintext transactions are handled, the envelopes of encrypted transactions are executed in a batch. This updates the nonces of the envelope signers and charges gas fees from the corresponding accounts. The fee is designed to cover block space used by the envelope, decrypted payload, and decryption key, as well as computation associated with decryption and key validation.

Subsequently, the protocol attempts to decrypt each payload using the decryption function specified by the relevant key provider. If decryption succeeds, the resulting payload transaction is executed, bounded by both the gas limit on the envelope and the overall block gas limit. However, if decryption or execution fails, or if the decryption key is attested as missing, the protocol simply skips the transaction without reverting the already executed envelope.

The inclusion of the signature inside the encrypted payload is chosen for simplicity. A less private but more efficient approach would be to treat the envelope signer as the ultimate sender of the payload. That said, the current design prioritizes flexibility and clear separation between envelope metadata and underlying transaction logic.

Key revelation process and the role of the PTC

In each slot, once a key provider sees the execution payload published by the builder, it collects all key IDs referenced in the envelopes addressed to it. For every such key ID, the provider must publish either the corresponding decryption key or a key withhold notice. The decryption key message references the relevant beacon block hash, preventing replays in future slots. Providers may publish immediately or delay release until later in the same slot.

Members of the Payload Timeliness Committee (PTC) are required to listen for all such decryption keys. They then validate each key using the validation function defined in the registry, subject to a small, hardcoded gas limit per key. Finally, the PTC attests to the presence or absence of a valid decryption key for each encrypted transaction through an extended payload attestation message with a dedicated bitfield.

This mechanism introduces an additional layer of cryptographic accountability for key providers. Moreover, it creates in-protocol data that can be consumed by off-chain monitoring or custom slashing schemes, enabling the market to reward reliable providers and penalize poor performance.

User trust assumptions and security implications

Users must trust their chosen key providers not to release decryption keys prematurely, which would expose them to classic MEV tactics, or too late, which would cause their transactions to fail while still paying the envelope fee. Providers can build this trust through cryptographic guarantees such as threshold encryption, hardware-based protection, economic penalties like slashing, or governance-driven reputation.

To a lesser extent, users also have to trust all key providers used for encrypted transactions that appear before theirs in a block. These providers can decide to publish or withhold keys after observing keys for subsequent transactions, granting them one bit of influence over the pre-state of later transactions. Maliciously designed “decryption” schemes could abuse this to manipulate specific parts of the decrypted state and perform a more powerful front running sandwiching mitigation bypass.

Importantly, users do not have to trust any key provider used for encrypted transactions included after theirs, as later payloads do not affect the pre-state of their own transaction. Similarly, users who submit plaintext transactions do not need to trust key providers, although they continue to rely on honest behavior from builders.

Mitigating reorgs and decryption key front running

Because decryption keys are published before the underlying encrypted transactions are finalized, a chain reorg can lead to situations where a transaction becomes public even if it ultimately is not included. However, the decryption key messages reference the beacon block hash, enabling the validation function to invalidate keys when the underlying block is not part of the canonical chain. This prevents execution of the payload and limits front running opportunities.

A separate risk involves attackers exploiting shared key IDs. When a user encrypts with a specific key ID, an attacker could observe that transaction in-flight and craft another encrypted transaction using the same key provider and key ID. If the second transaction lands first, a naive provider might reveal the key, unintentionally exposing the original transaction. This is one form of decryption key withholding attack pressure.

Key providers can mitigate such scenarios by “namespacing” key IDs. For example, they may only release keys where the key ID is prefixed with the envelope signer’s address and withhold all others. Since the attacker typically lacks control over the victim’s signing account, they cannot generate a valid transaction with the correctly namespaced key ID, preserving the original user’s confidentiality window.

Incentives, collusion risks and future extensions

The current EIP deliberately avoids defining in-protocol rewards or penalties for key providers. Instead, it leaves room for diverse incentive models to develop off-chain. Key providers may charge users on a per-transaction basis, make bespoke agreements with builders, or even operate as public goods, possibly backed by external funding. Moreover, providers can voluntarily adopt slashing rules for unjustified key withholding to enhance their credibility.

A potential collusion vector involves key providers and builders. To build a new block, builders must know the full post-state of the previous block, including which keys were revealed or withheld. While this information becomes public once PTC attestations are broadcast, a malicious provider could privately inform a favored builder earlier, granting a small head start in block construction.

The impact of such collusion is considered limited. The interval between PTC attestations and slot end is typically long enough for competitive block building, and the critical moment remains near the end of the slot when the full transaction set is known. Additionally, delaying key publication to favor one builder risks missing PTC attestation, negating any advantage. If few encrypted transactions rely on the colluding provider, optimistic strategies that approximate state without full decryption may also mitigate the edge.

Execution payload encryption and backwards compatibility

The authors outline a possible future evolution in which builders use the same key providers to encrypt the entire execution payload. This would allow builders to publish payloads immediately after construction, instead of waiting until around the 50% slot mark. Such a change could improve peer-to-peer efficiency and reduce missed slots due to crashes, especially if combined with zero-knowledge proofs attesting to which keys are used in a block.

In that scenario, attaching a zero-knowledge proof would allow the decryption window to start earlier and last longer, providing more flexibility for key providers. However, this functionality is explicitly left for a future EIP to avoid overcomplicating the current design. The present proposal still introduces backwards-incompatible changes to both the execution layer and consensus layer, as it alters transaction types, block structure, and the rules for payload timeliness committee attestation.

Overall, the encrypted mempool eip proposal represents a substantial step toward protocol-level MEV mitigation, aligning closely with Ethereum’s long-term push toward robust proposer-builder separation epbs and fairer transaction ordering.

Summary

The encrypted mempool aims to embed encrypted transactions envelope execution, key provider coordination, and structured decryption into Ethereum’s core protocol. By doing so, it strengthens user protection against MEV, enhances censorship resistance, and opens the door to future upgrades such as full execution payload encryption, all while preserving optionality for users and builders.

Source: https://en.cryptonomist.ch/2025/12/17/encrypted-mempool-eip/

Opportunità di mercato
Logo Blockstreet
Valore Blockstreet (BLOCK)
$0,005026
$0,005026$0,005026
+3,82%
USD
Grafico dei prezzi in tempo reale di Blockstreet (BLOCK)
Disclaimer: gli articoli ripubblicati su questo sito provengono da piattaforme pubbliche e sono forniti esclusivamente a scopo informativo. Non riflettono necessariamente le opinioni di MEXC. Tutti i diritti rimangono agli autori originali. Se ritieni che un contenuto violi i diritti di terze parti, contatta crypto.news@mexc.com per la rimozione. MEXC non fornisce alcuna garanzia in merito all'accuratezza, completezza o tempestività del contenuto e non è responsabile per eventuali azioni intraprese sulla base delle informazioni fornite. Il contenuto non costituisce consulenza finanziaria, legale o professionale di altro tipo, né deve essere considerato una raccomandazione o un'approvazione da parte di MEXC.

Potrebbe anche piacerti

Nav3 Router: Convenient Navigation on Top of Jetpack Navigation 3

Nav3 Router: Convenient Navigation on Top of Jetpack Navigation 3

Jetpack Navigation 3 is a new Google navigation library that is fundamentally different from previous versions. The main idea of Nav3 is simple: you have a NavBackStack — a regular mutable list where each element represents a screen in your application.
Condividi
Hackernoon2025/09/17 20:00
Revolutionary: CME SOL XRP Futures Options Set to Transform Crypto Trading

Revolutionary: CME SOL XRP Futures Options Set to Transform Crypto Trading

BitcoinWorld Revolutionary: CME SOL XRP Futures Options Set to Transform Crypto Trading Exciting news is rippling through the cryptocurrency world! The U.S. Chicago Mercantile Exchange (CME), a titan in traditional finance, is reportedly planning to launch CME SOL XRP futures options. This significant development, initially reported by Walter Bloomberg, marks a pivotal moment for institutional involvement in the altcoin market. It signals a new era for how Solana (SOL) and Ripple (XRP) might be traded, potentially opening doors to broader adoption and increased market maturity. What Does the Launch of CME SOL XRP Futures Mean for Crypto? When an institution like CME, known for its rigorous standards and vast trading volume, enters a new market, it brings a wave of legitimacy. The introduction of CME SOL XRP futures options indicates a growing acceptance of these digital assets within mainstream finance. This move could fundamentally change how investors perceive and interact with SOL and XRP. Futures options are financial derivatives that give traders the right, but not the obligation, to buy or sell an underlying asset at a specific price on or before a certain date. For SOL and XRP, this means: Enhanced Price Discovery: More participants and trading volume can lead to more efficient and accurate pricing. Institutional Access: It provides regulated avenues for large institutional investors to gain exposure to SOL and XRP without directly owning the underlying assets. Risk Management: Traders can use these options to hedge against potential price fluctuations in their existing SOL and XRP holdings. Why Are SOL and XRP Chosen for CME SOL XRP Futures? The selection of Solana (SOL) and Ripple (XRP) for these new futures options is not arbitrary. Both cryptocurrencies hold significant positions in the market and offer distinct value propositions: Solana (SOL): Known for its high-performance blockchain, offering fast transaction speeds and low costs. Its robust ecosystem supports numerous decentralized applications (dApps), NFTs, and DeFi projects, attracting considerable developer and user interest. Ripple (XRP): Primarily focused on facilitating fast, low-cost international payments for financial institutions. Despite ongoing regulatory discussions, XRP maintains a strong market presence and a dedicated community, highlighting its potential for cross-border transactions. Their substantial market capitalization and existing liquidity make them attractive candidates for institutional-grade derivative products. This choice reflects a strategic assessment by CME of assets that can sustain significant trading interest and volume. Navigating the Landscape: Opportunities and Considerations for CME SOL XRP Futures The introduction of CME SOL XRP futures options presents a wealth of opportunities, yet it also comes with important considerations. On the opportunity front, we can expect increased liquidity, which benefits all market participants by making it easier to buy and sell without significant price impact. Moreover, it could attract new capital from traditional financial players who prefer regulated products. However, traders and investors should also consider the implications: Market Volatility: While derivatives can offer hedging, they can also amplify market movements. Regulatory Clarity: The regulatory landscape for cryptocurrencies, particularly for XRP, continues to evolve. CME’s move might encourage further clarity but also means ongoing scrutiny. Learning Curve: Understanding futures options requires a certain level of financial literacy, which new entrants to the crypto market may need to develop. These products offer sophisticated tools for managing exposure and speculating on price movements, but they demand a careful approach. What’s Next for the Crypto Market with CME SOL XRP Futures? The reported launch of CME SOL XRP futures options is more than just a new product offering; it represents a significant milestone in the ongoing convergence of traditional finance and the digital asset space. It underscores the growing maturity of the cryptocurrency market and its increasing integration into global financial systems. As institutional interest continues to surge, we can anticipate further innovation and a broader range of regulated products for other altcoins. This development is poised to offer sophisticated tools for investors and traders, potentially stabilizing market dynamics while simultaneously introducing new avenues for growth and investment. The crypto market is evolving rapidly, and CME’s latest initiative is a clear indicator of this exciting trajectory. To learn more about the latest crypto market trends, explore our article on key developments shaping the cryptocurrency market institutional adoption. Frequently Asked Questions (FAQs) What is the Chicago Mercantile Exchange (CME)? The CME is one of the world’s largest and most diverse derivatives marketplaces, offering a wide range of futures and options products across various asset classes, including equities, commodities, and now, expanding into specific cryptocurrencies. What are futures options in the context of SOL and XRP? Futures options for SOL and XRP are financial contracts that give the holder the right, but not the obligation, to buy or sell SOL or XRP futures contracts at a predetermined price on or before a specific date. They allow for hedging and speculation on price movements. Why are Solana (SOL) and Ripple (XRP) chosen for these new options? SOL and XRP were likely chosen due to their significant market capitalization, established liquidity, and distinct use cases within the crypto ecosystem, making them attractive for institutional-grade derivative products. How might CME SOL XRP futures options affect the prices of SOL and XRP? The introduction of these options could lead to increased liquidity and institutional participation, potentially influencing price discovery and stability. However, like all derivatives, they can also contribute to market volatility. When are these CME SOL XRP futures options expected to launch? While Walter Bloomberg reported CME’s plans, an official launch date has not yet been publicly announced by CME. Market participants should monitor official CME channels for updates. If you found this article insightful, please consider sharing it with your network! Help us spread the word about the exciting developments in the crypto space by sharing this article on your social media platforms. This post Revolutionary: CME SOL XRP Futures Options Set to Transform Crypto Trading first appeared on BitcoinWorld.
Condividi
Coinstats2025/09/18 00:45
Gold Hits $3,700 as Sprott’s Wong Says Dollar’s Store-of-Value Crown May Slip

Gold Hits $3,700 as Sprott’s Wong Says Dollar’s Store-of-Value Crown May Slip

The post Gold Hits $3,700 as Sprott’s Wong Says Dollar’s Store-of-Value Crown May Slip appeared on BitcoinEthereumNews.com. Gold is strutting its way into record territory, smashing through $3,700 an ounce Wednesday morning, as Sprott Asset Management strategist Paul Wong says the yellow metal may finally snatch the dollar’s most coveted role: store of value. Wong Warns: Fiscal Dominance Puts U.S. Dollar on Notice, Gold on Top Gold prices eased slightly to $3,678.9 […] Source: https://news.bitcoin.com/gold-hits-3700-as-sprotts-wong-says-dollars-store-of-value-crown-may-slip/
Condividi
BitcoinEthereumNews2025/09/18 00:33