From b174fe62e69a34224b4bd3a1363aa29e3c19f6aa Mon Sep 17 00:00:00 2001 From: Wild Octopus <263697314+WildOctopus0x@users.noreply.github.com> Date: Tue, 7 Apr 2026 16:13:17 +0200 Subject: [PATCH] docs: reframe /privacy around wallet data leaks --- docs/pages/practices.mdx | 3 ++- docs/pages/privacy.mdx | 41 +++++++++++++++++++++++++++++----------- 2 files changed, 32 insertions(+), 12 deletions(-) diff --git a/docs/pages/practices.mdx b/docs/pages/practices.mdx index 2f5597901..a1ddc89b3 100644 --- a/docs/pages/practices.mdx +++ b/docs/pages/practices.mdx @@ -1,5 +1,7 @@ # Wallet Best Practices [What does the ultimate wallet look like?] +This page focuses on mitigations for the privacy problems outlined in [Privacy in Ethereum](./privacy.mdx). + ## Transaction Privacy By default ethereum transactions are transparent. This means anyone can see the amount, sender, recipient, and data within the transaction. @@ -46,4 +48,3 @@ It lets you run a wrap an existing RPC and verify its results. ### Network Privacy The extremely privacy caution person, such as a journalist or privacy enthusiast, may want to add an extra layer of protection by routing their traffic through Tor. - diff --git a/docs/pages/privacy.mdx b/docs/pages/privacy.mdx index ebd3d025c..c345ab0e1 100644 --- a/docs/pages/privacy.mdx +++ b/docs/pages/privacy.mdx @@ -1,22 +1,41 @@ # Privacy in Ethereum [Where are we at?] +Privacy in Ethereum is often framed as an extra feature. In practice, many wallet privacy problems are data leaks. +This page focuses on where those leaks happen. It is a diagnosis, not a list of mitigations. + +## Onchain Data Leaks + +Ethereum transactions are transparent by default. Amounts, senders, recipients, timing, and contract interactions are all visible onchain. + +That means wallet activity is easy to turn into an identity graph over time. Privacy tooling can reduce exposure, but the baseline is still public. + ## One account to rule them all -When you connect to a dApp today you are typically asked connect your wallet. -This allows for anyone to see exactly what you have interacted with, when, and how. +When you connect to a dApp today you are typically asked to connect the same wallet account you use everywhere else. +That makes it easy to link one address to everything you do. + +One address can reveal where you trade, bridge, donate, vote, and experiment. Many wallets still optimize for a single active account, which makes identity reuse the default. + +## RPCs & Indexers + +A lot of wallets still use a default hardcoded RPC endpoint. Some even hit that endpoint before the user has had a chance to set up their preferred configuration. + +This introduces centralization, but it also leaks intent. An RPC provider can see the balances you check, the contracts you inspect, and the chain activity you are interested in before anything is signed. + +Token discovery can create a similar problem. Many wallets rely on a centralized indexer to monitor transfer events and enrich wallet state. + +That convenience comes with a privacy cost. A third party can learn what assets a wallet receives and what activity the wallet is trying to surface. -Spreading your identity across multiple accounts, by for example having one address per dApp could already be a good start. -Unfortunately not many wallets operate this way, most have a user experience designed for "a single active account at a time". +## Network Metadata -## Default RPC +Even when the requested data is minimal, network metadata can still leak. IP address, timing, and request patterns can help associate wallet activity with a person, device, or location. -A lot of wallets today use a default hardcoded RPC endpoint. Some even hitting the endpoint before the user has had a chance to setup their preferred configuration. +Wallet privacy is not only about what gets requested. It is also about where requests come from and how those requests can be correlated over time. -In addition to introducing centralization, this also introduced the risk of associating you with your wallet activity. +## UI-side Leakage -## Token Discovery +Some leaks happen before a request even leaves the interface. Fingerprintable settings, installed capabilities, and other client-side behavior can make one wallet instance easier to distinguish from another. -Due to the nature of how token discovery works the majority of wallets today use a centralized indexer to monitor "all transfer events" on-chain. +This is a broader wallet ecosystem problem, and not every protocol library can solve it on its own. It is still part of the privacy model. -This allows for the discovery of new tokens right as theyre sent to your wallet. -Although this is a nice-to-have it does have privacy drawbacks. +For mitigations and wallet design choices, see [Wallet Best Practices](./practices.mdx).