aguzmant103
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • 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
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights New
    • Engagement control
    • Make a copy
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Note Insights Versions and GitHub Sync Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Engagement control Make a copy Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
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
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       Owned this note    Owned this note      
    Published Linked with GitHub
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    --- date: 2026-02-20 tags: [blog, pse.dev, privacy-stack, strategy, ecosystem] status: draft target: pse.dev blog --- # Ethereum's Privacy Stack: What Leaks, What's Fixed, and What's Missing Privacy on Ethereum is not one problem. It's at least six. You can use a shielded pool to hide a swap, but your RPC provider still sees the query that triggered it. You can submit transactions through private RPC, but the builder processing them sees the full plaintext. You can hide your onchain activity behind zero-knowledge proofs, but your IP address leaks to every peer in the gossip network. The result is that users get a false sense of security, and builders don't know what they're missing or what ecosystem gaps exist. At PSE, we've been building a model to see the full picture. We call it the Ethereum Privacy Stack. It maps every point in the Ethereum architecture where information leaks, who's building fixes, and where the gaps remain. This post walks through the first iteration of this mental model. The goal is to give privacy builders, funders and activist a way to reason, understand dependencies, and see what's missing above and below. ## The Model The stack has five layers plus one cross-cutting concern. From top (user-facing) to bottom (protocol infrastructure): | Layer | Privacy Question | What Leaks Today | |-------|-----------------|-------------------| | **1. Applications** | Who is using this? | Identity, activity patterns, anonymity set size | | **2. Wallets** | Which identity is acting? | Address correlation across dApps, IP leakage | | **3. Gateway** | What are you reading and submitting? | RPC queries, tx content, IP address | | **4a. Execution / State** | What's visible on-chain? | Balances, transfer history, calldata | | **4b. Mempool** | What's visible before inclusion? | Tx content, ordering opportunity for MEV | | **5. Consensus** | Who is validating? | Proposer identity, validator behavior | | **Networking** | Who is talking to whom? | IP, timing, gossip patterns at every layer boundary | Three design principles make this model work: - **Layers are defined by what they abstract**, not by what they contain. - **Reads and writes fork at Layer 4.** When a user queries state, the path is Gateway to Execution/State (and stops there). When a user submits a transaction, the path is Gateway to Mempool to Consensus. - **Networking is cross-cutting.** Every layer boundary has a transport privacy concern. The gossip network leaks metadata at the mempool layer. WalletConnect leaks wallet-to-dApp pairings at the wallet layer. ## Layer by Layer ### Layer 1: Applications -- Who is using this? The application layer is where users interact with privacy features directly: anonymous group membership (Semaphore), private voting (MACI), shielded transfers with compliance proofs (Privacy Pools), and identity attestation without document disclosure (zkEmail, Anon Aadhaar). Here is where use cases live: - finance:: transfers & defi - governance:: voting & collaborating - identity This is Ethereum's strongest layer. The apps and tools exist, they work, and several are in production. **The gap is below.** Application-level anonymity sets are only as strong as the layers underneath. A Semaphore group proof that proves membership without revealing identity is worthless if the user's RPC provider logs the query that generated the proof. Privacy at this layer depends entirely on the layers below. ### Layer 2: Wallets -- Which identity is acting? The wallet layer manages keys, identities, and signing. The privacy question: can an observer correlate a user's activity across addresses? Today, the answer is almost always yes. MetaMask, with 30 million monthly active users, has zero privacy features -- it leaks IP addresses to the RPC provider, uses a single connection for all accounts, and ships with telemetry. The most-used wallets are the least private. **Who's building:** Brume Wallet does per-account Tor isolation (unique circuit per address). Railgun provides shielded balance management with $100M TVL. Blanksquare offers a privacy SDK with ~1s ZK proof generation. PSE is building Kohaku SDK as a reference privacy wallet. **The gap:** Wallet-level privacy depends on wallet adoption. The privacy-preserving options are niche. Until the mainstream wallets integrate basic features -- per-account network isolation, stealth address support, zero telemetry -- the wallet layer remains the weakest link for most users. ### Layer 3: Gateway -- What are you reading and submitting? The Gateway is where user-space meets protocol-space: where your wallet connects to the Ethereum network, where your queries go out, and where your transactions go in. It is the single biggest metadata chokepoint on Ethereum today. **The read side:** Infura handles over 50% of all Ethereum RPC traffic. Every eth_call, every balance check, every contract read -- logged, with your IP. Even if your on-chain activity is shielded, your RPC queries reveal what you're looking at. Private Information Retrieval (PIR) and TEE-ORAM are research-stage solutions that would let users query state without revealing which state they're querying. **The write side:** Flashbots Protect and MEV Blocker are production solutions for private transaction submission, routing around the public mempool to prevent frontrunning. Over 50% of Ethereum transactions already use private submission channels. But these are trust-based: the operator sees your full transaction. **The gap:** Read privacy is almost entirely unsolved. Nobody in the ecosystem except PSE is working on production-grade private state queries. This is the layer where a single infrastructure change -- a private RPC standard -- could have the highest leverage across the entire stack. ### Layer 4a: Execution / State -- What's visible on-chain? After a transaction is included in a block, what can observers learn from the on-chain record? Balances, transfer amounts, contract interactions, calldata -- by default, everything is public. **Who's building:** This is the most crowded layer. Railgun uses zk-SNARKs for shielded balances. Privacy Pools adds compliance through proofs of innocence. Stealth addresses (EIP-5564) provide unlinkable recipient addresses, with FluidKey, Umbra Cash, and Curvy all shipping implementations. On the confidential compute side, Zama's fhEVM brings fully homomorphic encryption to EVM contracts (mainnet since December 2025), and Fhenix, Inco, and Nillion offer variants of encrypted computation. **The gap:** Fragmentation. There are many teams building execution-layer privacy, but no interoperability standards. Shielded state from Railgun can't compose with Privacy Pools. FHE-encrypted state on Zama can't interact with ZK-shielded state on Aztec. The opportunity here isn't another privacy protocol -- it's a standards convening role that helps these solutions interoperate. ### Layer 4b: Mempool -- What's visible before inclusion? Before your transaction lands in a block, it passes through the mempool -- and today, that means broadcasting its contents to anyone watching. The result: MEV extraction. Sandwich attacks alone accounted for 51% of all MEV on Ethereum in 2025, extracting $290 million from users. Mempool privacy is evolving through three generations, each reducing trust assumptions: **Gen 0: Public mempool.** The current default. Your transaction is visible to everyone. Bots sandwich you. No protection. **Gen 1: Private mempools** (Flashbots Protect, MEV Blocker, Alchemy). You send your transaction to a trusted operator instead of broadcasting publicly. The operator sees your full transaction but promises not to exploit you. In exchange, you can get kickbacks -- MEV-Share returns approximately 90% of backrun profits to users. Trust model: "won't be evil." **Gen 2: Encrypted mempools** (EIP-8105 / Shutter, Fairblock). Your transaction is encrypted before submission and decrypted only after ordering is committed. Nobody -- not the builder, not the proposer, not the relay -- sees the plaintext until it's too late to reorder. Trust model: "can't be evil." Trade-off: +1 slot latency (~12 seconds), no orderflow revenue. **The gap:** Gen 1 is production. Gen 2 is not yet live on Ethereum mainnet (Shutter runs on Gnosis Chain today). EIP-8105 proposes enshrining encrypted mempools at the protocol level for Ethereum's Hegota upgrade. This is the most significant near-term protocol change for user protection. Gen 1 and Gen 2 will coexist. Gen 1 offers revenue (you get paid for your orderflow). Gen 2 offers guarantees (nobody can exploit you, period). Over time, Gen 2 becomes the default floor, and Gen 1 competes on value-adds above it. The long-term direction: privacy should be infrastructure, not a service you subscribe to. ### Layer 5: Consensus -- Who is validating? The consensus layer determines who proposes and validates blocks. The privacy concern: if the next proposer is known in advance, they can be targeted for DOS attacks or bribed for censorship. **The numbers are alarming.** A USENIX 2025 study demonstrated that 15% of Ethereum validators could be deanonymized using just 4 monitoring nodes over 3 days. Validator identity leakage is not theoretical -- it's measured. **Who's building:** Secret leader election (SSLE/WHISK) hides the next proposer's identity until their slot. Distributed Validator Technology (Obol, SSV Network) eliminates single-operator targets. FOCIL (forced inclusion lists) provides censorship resistance by letting validators force-include transactions. **The gap:** These are all protocol-level changes requiring hard forks. The timeline depends on EF research priorities and the Ethereum upgrade schedule. Not a market gap -- a governance gap. ### Cross-cutting: Networking -- Who is talking to whom? Networking is the privacy concern that nobody owns and everybody needs. At every layer boundary, transport metadata leaks: IP addresses, timing patterns, message correlation. | Boundary | What Leaks | Fix | |----------|-----------|-----| | Wallet to Gateway | RPC provider sees wallet IP + all queries | Tor, Brume per-account isolation | | Gateway to Mempool | Node operator sees submitted tx | Private relayers | | Mempool to Mempool (gossip) | Peers identify tx origin node | Dandelion++, DC Nets | | Consensus (gossip) | Network sees which validator proposes | SSLE / WHISK | Two paradigms are competing: **mix networks** (Tor, Nym, HOPR) trade latency for strong anonymity, routing packets through multiple mixing layers. **DC Nets** (Flashbots' NAMP/FlashNet) trade bandwidth for latency, using secret-sharing schemes that offer anonymity without the mixing delay. **The gap:** This is the least-addressed layer overall. No mandatory network-layer privacy exists on Ethereum. Tor and mixnets are opt-in. Dandelion++ was explored and found impractical for the consensus layer. DC Nets are research-stage. Meanwhile, every other layer's privacy guarantees are degraded by network-level metadata leakage. ## Where the Gaps Are Taken together, here's the ecosystem health across the full stack: | Layer | Health | Biggest Gap | Who Should Act | |-------|--------|-------------|----------------| | **Applications** | Strong | Anonymity sets are limited by the layers below | App devs: integrate private wallets and RPCs | | **Wallets** | Weak | Dominant wallets have zero privacy | Wallet teams: adopt stealth addresses, per-account isolation | | **Gateway** | Weak | Read privacy is unsolved at scale | Infra teams: PIR and private RPCs need production implementations | | **Execution / State** | Moderate | Fragmented, no interoperability | Standards bodies: coordinate shielded state formats | | **Mempool** | Strong (external) | Encrypted mempools not yet on mainnet | Protocol devs: advance EIP-8105 for Hegota | | **Consensus** | EIP-dependent | Proposer anonymity requires a hard fork | EF research: SSLE/WHISK timeline | | **Networking** | Weak | No mandatory network privacy | Core devs: this is the universal gap | Two patterns stand out: **First, the top layers are strong and the bottom layers are weak.** Applications and mempool solutions are production-grade. Wallets, Gateway, and Networking are not. This means the ecosystem has built good tools for specific use cases but hasn't secured the infrastructure those tools depend on. **Second, the weakest layers are the ones with the least market incentive.** Read privacy, wallet-level isolation, and network-layer anonymity don't have obvious business models. Nobody charges for "your RPC queries are private." These are public goods -- and they're underinvested precisely because of that. ## What This Means Privacy is not a feature you bolt onto a single layer. It's a property of the full stack. A leak at any layer compromises the layers above it. An encrypted mempool doesn't help if the gateway leaks which transactions you're submitting. A shielded transfer doesn't help if your wallet correlates your accounts. A zero-knowledge proof doesn't help if the network reveals your IP address to everyone in the gossip layer. The stack model gives every project in the ecosystem a way to locate itself, see what's above and below, and understand what it needs from its neighbors. If you're building an application: what wallet-level guarantees do you depend on? If you're building a wallet: what gateway privacy does your user need? If you're building mempool infrastructure: what networking assumptions are you making? PSE's role is to work on the layers where market incentives alone won't produce solutions. That means Gateway (read privacy, where nobody else is building), tooling (private proving, where the barrier to adoption is developer experience), and coordination across the stack (because privacy at one layer without the others is privacy theater). The full ecosystem map, team profiles, and landscape analyses behind this model are being published alongside this post. If your project fits somewhere in this stack, we want to hear from you.

    Import from clipboard

    Paste your markdown or webpage here...

    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 lose 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?
    Turn this template into a regular note and keep its content, versions, and comments.

    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

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    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 and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    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.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        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
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

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

        Syncing

        Push failed

        Push successfully