Skip to content

Commit 2526ec7

Browse files
committed
docs: reframe /privacy around wallet data leaks
1 parent 173d694 commit 2526ec7

2 files changed

Lines changed: 32 additions & 12 deletions

File tree

docs/pages/practices.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Wallet Best Practices [What does the ultimate wallet look like?]
22

3+
This page focuses on mitigations for the privacy problems outlined in [Privacy in Ethereum](./privacy.mdx).
4+
35
## Transaction Privacy
46

57
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.
4648
### Network Privacy
4749

4850
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.
49-

docs/pages/privacy.mdx

Lines changed: 30 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,41 @@
11
# Privacy in Ethereum [Where are we at?]
22

3+
Privacy in Ethereum is often framed as an extra feature. In practice, many wallet privacy problems are data leaks.
4+
This page focuses on where those leaks happen. It is a diagnosis, not a list of mitigations.
5+
6+
## Onchain Data Leaks
7+
8+
Ethereum transactions are transparent by default. Amounts, senders, recipients, timing, and contract interactions are all visible onchain.
9+
10+
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.
11+
312
## One account to rule them all
413

5-
When you connect to a dApp today you are typically asked connect your wallet.
6-
This allows for anyone to see exactly what you have interacted with, when, and how.
14+
When you connect to a dApp today you are typically asked to connect the same wallet account you use everywhere else.
15+
That makes it easy to link one address to everything you do.
16+
17+
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.
18+
19+
## RPCs & Indexers
20+
21+
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.
22+
23+
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.
24+
25+
Token discovery can create a similar problem. Many wallets rely on a centralized indexer to monitor transfer events and enrich wallet state.
26+
27+
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.
728

8-
Spreading your identity across multiple accounts, by for example having one address per dApp could already be a good start.
9-
Unfortunately not many wallets operate this way, most have a user experience designed for "a single active account at a time".
29+
## Network Metadata
1030

11-
## Default RPC
31+
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.
1232

13-
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.
33+
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.
1434

15-
In addition to introducing centralization, this also introduced the risk of associating you with your wallet activity.
35+
## UI-side Leakage
1636

17-
## Token Discovery
37+
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.
1838

19-
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.
39+
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.
2040

21-
This allows for the discovery of new tokens right as theyre sent to your wallet.
22-
Although this is a nice-to-have it does have privacy drawbacks.
41+
For mitigations and wallet design choices, see [Wallet Best Practices](./practices.mdx).

0 commit comments

Comments
 (0)