Research/Bitcoin

Bitcoin Privacy in 2026: Silent Payments, Payjoin, and the Surveillance Arms Race

An overview of Bitcoin's evolving privacy toolkit, from silent payments to payjoin, and the regulatory pressures pushing against them.

bcMaoJun 2, 2026

Bitcoin privacy is under more pressure in 2026 than at any point in the protocol's history. On one side, blockchain surveillance firms like Chainalysis and Elliptic have raised hundreds of millions in funding and expanded their heuristic toolkits to cover dozens of blockchains. On the other, silent payments, payjoin, and Layer 2 architectures are introducing privacy properties that these heuristics cannot easily defeat. The result is an arms race between surveillance infrastructure and privacy-preserving technology, with regulation caught in the middle.

This article examines the current state of Bitcoin privacy: what chain analysis firms can actually do, the technical countermeasures gaining adoption, and the legal landscape shaping which tools survive.

How Bitcoin Transactions Leak Privacy

Bitcoin's transparency is a feature, not a bug: every transaction is publicly auditable on a shared ledger. But that transparency also means that anyone with the right tools can trace fund flows between addresses. The techniques used by chain analysis firms exploit structural patterns in how wallets construct transactions.

The Common Input Ownership Heuristic

The common input ownership heuristic (CIOH) is the foundation of most blockchain surveillance. It assumes that all inputs in a single transaction belong to the same entity. Since spending multiple UTXOs requires the corresponding private keys, analysts cluster every input address together as belonging to one wallet. Satoshi Nakamoto acknowledged this risk in the original Bitcoin whitepaper, noting that "transactions with multiple inputs necessarily reveal that their inputs were owned by the same owner."

Change Output Detection

When a transaction sends more Bitcoin than the payment requires, the excess returns to the sender as a change output. Analysts identify change by examining patterns: script type matching (if inputs are P2WPKH and one output matches while the other does not), round number amounts on the payment side, and address reuse on the change side. Once the change output is identified, the analyst can follow the sender's funds forward through subsequent transactions.

Taint Analysis and Clustering

By combining CIOH with change detection, taint analysis maps the flow of specific satoshis across the graph of transactions. Firms like Chainalysis use proprietary clustering algorithms that incorporate exchange deposit data, known entity addresses, and behavioral patterns to link pseudonymous addresses to real-world identities. Their Reactor software currently covers over 30 blockchains and integrates directly with law enforcement investigation workflows.

The Surveillance Industry in 2026

Blockchain analytics is now a mature industry backed by institutional capital and government contracts.

FirmLatest FundingValuationKey Government Clients
Chainalysis$170M Series F (2022)~$2.5B (2024, down from $8.6B peak)IRS, FBI, DEA, SEC, FinCEN, ICE, Secret Service
Elliptic$120M Series D (May 2026)$610MBacked by HSBC, JPMorgan, Deutsche Bank, Nasdaq Ventures

Chainalysis holds over $10 million in U.S. federal contracts across the IRS, FBI, DEA, and other agencies. The IRS alone accounts for $4.1 million over five years, including a $1.25 million contract specifically to develop Monero tracing capabilities. Elliptic reported $30 million in revenue for the year to March 2025 (a 61% year-over-year increase) and claims that two-thirds of global crypto trading volume flows through exchanges using its compliance products.

Accuracy under scrutiny: In the Bitcoin Fog trial, an independent analysis by CipherTrace found a roughly 64% discrepancy in accuracy for the behavioral clustering heuristic used by Chainalysis. In September 2025, ChainArgos filed an amicus brief describing blockchain forensics techniques as "fundamentally unscientific," arguing that Chainalysis could not provide statistical error rates for its Reactor software.

Despite these challenges to reliability, chain analysis tools remain the standard for regulatory compliance. Exchanges, payment processors, and custodial wallets integrate these services to meet KYC/AML obligations, creating a feedback loop: the more entities use clustering data, the more data the firms collect, and the more accurate their models become.

The CoinJoin Crackdown

CoinJoin was once the most accessible privacy technique for Bitcoin users. By combining inputs from multiple participants into a single transaction with equal-value outputs, CoinJoin breaks the common input ownership heuristic and makes it difficult to trace which input funded which output. That changed in 2024.

Samourai Wallet

On April 24, 2024, the U.S. Department of Justice arrested Keonne Rodriguez and William Lonergan Hill, the founders of Samourai Wallet, charging them with conspiracy to commit money laundering and operating an unlicensed money transmitting business. Prosecutors alleged that Samourai's Whirlpool CoinJoin service laundered over $237 million in criminal proceeds.

Both defendants pleaded guilty in July 2025 to the money transmission charge (the laundering charge was dropped). Rodriguez received a five-year prison sentence in November 2025; Hill received four years. They forfeited approximately $6.37 million in fees earned by the service. As of May 2026, Rodriguez is serving his sentence at FPC Morgantown, West Virginia.

Wasabi Wallet

Days after the Samourai arrests, zkSNACKs (the company behind Wasabi Wallet) announced it would shut down its CoinJoin coordination service effective June 1, 2024, citing regulatory uncertainty. The company also blocked U.S. residents from accessing its products. The shutdown affected not only Wasabi users but also other wallet clients that relied on the zkSNACKs coordinator, including Trezor Suite and BTCPay Server. Wasabi continues to operate as a standard Bitcoin wallet, but without its signature privacy feature.

The Ethereum mixer Tornado Cash was sanctioned by OFAC in August 2022 for laundering over $7 billion, including $455 million stolen by North Korea's Lazarus Group. The Fifth Circuit overturned the sanctions in November 2024, ruling that immutable smart contracts are not "property" under the International Emergency Economic Powers Act. OFAC officially removed Tornado Cash from the sanctions list in March 2025. However, developer Alexey Pertsev was convicted of money laundering in the Netherlands (sentenced to 64 months), and Roman Storm was found guilty in August 2025 of operating an unlicensed money transmitter, with the DOJ seeking retrial on deadlocked money laundering charges as of March 2026.

The chilling effect: Even where legal outcomes remain contested, the prosecutions achieved their practical goal. The two largest Bitcoin CoinJoin coordinators shut down within weeks of each other, and no comparable replacement has emerged at scale. Privacy tool developers now face personal criminal liability, not just regulatory risk for their companies.

Silent Payments: Solving Address Reuse

BIP-352 (silent payments) introduces a mechanism for receiving Bitcoin at unique, unlinkable on-chain addresses derived from a single static identifier. The specification, authored by Josie Baker and Ruben Somsen, was merged into the bitcoin/bips repository in May 2024, with version 1.1.0 released in March 2026.

How Silent Payments Work

The receiver publishes a silent payment address containing two public keys: a scan key (B_scan) and a spend key (B_spend). When sending a payment, the sender performs an Elliptic Curve Diffie-Hellman (ECDH) key exchange using the input keys from their transaction and the receiver's scan public key to derive a shared secret. The unique output address is computed as: P = B_spend + hash(shared_secret) × G. Each payment creates a fresh, unlinkable address that only the receiver can detect and spend.

Unlike BIP-47 reusable payment codes, silent payments require no on-chain notification transaction, eliminating both the fee cost and the privacy leak of linking sender to receiver on-chain. The tradeoff is computational: receivers must scan every transaction's inputs to detect payments addressed to them, which is more resource intensive than monitoring known addresses.

Implementation Status

Bitcoin Core 28.0+ includes full send and receive support for silent payments, backed by a dedicated scanning index. Supporting specifications include BIP-375 (sending via PSBTs, merged 2025) and BIP-376 (PSBTv2 tweak data). On the wallet side, Cake Wallet was among the first mobile implementations, followed by Silentium (a dedicated silent payments wallet), BlueWallet, and Nunchuk. Light wallet support remains limited because efficient scanning requires access to full transaction data, an area of active development.

Payjoin: Breaking the Ownership Heuristic

While silent payments address the receiving side of privacy, payjoin targets the transaction structure itself. In a standard Bitcoin transaction, all inputs come from the sender. In a payjoin, both sender and receiver contribute inputs, directly breaking the common input ownership heuristic.

BIP-78: The Original Protocol

BIP-78 defines the synchronous payjoin protocol. The receiver presents a BIP-21 URI with a payjoin endpoint. The sender constructs a signed PSBT, sends it to the receiver, who adds their own inputs, adjusts outputs, and returns a modified transaction for the sender to validate, sign, and broadcast. The resulting on-chain transaction looks like any ordinary payment but is structurally ambiguous: analysts cannot tell which inputs belong to which party.

The privacy benefit extends beyond payjoin users. Even modest adoption casts doubt on the CIOH for all Bitcoin transactions, because any transaction could be a payjoin. This externality means payjoin improves network-wide privacy even for non-participants.

BIP-77: Serverless Payjoin

The original protocol required the receiver to run an HTTPS server, limiting adoption to merchants with infrastructure like BTCPay Server. BIP-77 eliminates this requirement with an asynchronous design: an untrusted "Payjoin Directory" acts as a store-and-forward relay, with all payloads encrypted and protected by Oblivious HTTP (OHTTP) to shield metadata like IP addresses. Sender and receiver no longer need to be online simultaneously.

Bull Bitcoin became the first end-user mobile wallet to ship BIP-77 payjoin v2 with both send and receive capabilities. This is significant: by removing the server requirement, serverless payjoin expands the potential user base from merchants to any mobile wallet user.

Lightning Network Privacy

The Lightning Network provides inherent privacy advantages over on-chain transactions. Payments route through a series of intermediary nodes using onion routing (SPHINX), where each hop only knows the previous and next node in the path. Unlike on-chain transactions, Lightning payments leave no permanent public record. For a deeper analysis, see Lightning Network privacy analysis and onion routing on Lightning.

Blinded Paths and BOLT12

Blinded paths (route blinding) allow the receiver to hide their node identity from the sender. The receiver pre-computes the final portion of the route, encrypting it so each successive hop can only decrypt its own forwarding instructions. Even the payment sender cannot determine the destination beyond an introduction node.

BOLT12 offers were officially merged into the Lightning specification and use blinded paths by default for receiver privacy. Three major implementations support it: Core Lightning, LDK, and Eclair/Phoenix. Phoenix wallet offers full BOLT12 support with automatic channel management via splicing, and Strike announced support for paying BOLT12 offers in August 2024.

Remaining Weaknesses

Lightning privacy is not absolute. Most users in 2026 still interact primarily through BOLT11 invoices, which do not use blinded paths. Probing attacks remain a concern: adversaries can send payments designed to fail in order to map channel balances across the network. And Lightning Service Providers (LSPs) that manage channels on behalf of mobile users can observe their clients' payment activity, creating centralized points of metadata collection.

Privacy Approaches Compared

Different privacy technologies protect against different attack vectors. The following table compares the major approaches available to Bitcoin users in 2026.

TechniqueWhat It ProtectsStatus (2026)Tradeoff
Silent Payments (BIP-352)Receiver address linkabilityBitcoin Core 28.0+, Cake Wallet, SilentiumReceiver must scan all transactions
Payjoin (BIP-78/77)Common input ownership heuristicBTCPay Server, Bull Bitcoin (v2)Requires interactive protocol between parties
CoinJoinTransaction graph linkabilityNo major coordinators operationalRegulatory risk; coordinator dependency
Lightning (onion routing)Payment amounts and endpointsProduction, widespread adoptionChannel state is visible; LSP metadata risk
BOLT12 blinded pathsReceiver node identityMerged into spec; CLN, LDK, EclairAdoption limited; BOLT11 still dominant
Coin controlUTXO linkabilityAvailable in most desktop walletsManual; requires user discipline
Tor/I2P broadcastIP address linkabilityBitcoin Core 31.0 adds -privatebroadcastLatency; Tor exit node trust

Privacy Coins vs Bitcoin Privacy

Monero and Zcash take fundamentally different approaches. Monero enforces privacy by default using ring signatures, Pedersen commitments, and stealth addresses on every transaction. Zcash offers optional shielded transactions using zk-SNARKs. Both achieve stronger cryptographic privacy guarantees than any current Bitcoin technique.

The cost is regulatory survival. As of early 2026, at least 73 exchanges have delisted Monero, including Binance, Coinbase, Kraken, OKX, and Bitstamp. India instructed all registered exchanges to halt privacy coin trading in January 2026. Dubai, Japan, and South Korea have introduced direct exchange bans. The EU is phasing in custodial bans on privacy coins under MiCA's Anti-Money Laundering Regulation, targeting 2027 enforcement.

Bitcoin's approach differs: privacy is opt-in and layered. Individual techniques like silent payments or payjoin do not make transactions opaque; they break specific heuristics while preserving the base layer's auditability. This distinction matters for regulatory viability. No jurisdiction has proposed banning Bitcoin for supporting optional privacy features.

The Regulatory Landscape

The FATF Travel Rule

The Financial Action Task Force's Travel Rule requires virtual asset service providers (VASPs) to share sender and receiver information for transactions above specified thresholds. As of 2025, 85 of 117 surveyed jurisdictions have passed or are in the process of passing Travel Rule legislation for virtual assets (73% of responding jurisdictions).

The EU's Transfer of Funds Regulation, effective December 2024 under MiCA, applies to all crypto transactions with no minimum threshold. The United States requires compliance for transactions above $3,000 under the Bank Secrecy Act, with FinCEN having proposed reducing the cross-border threshold to $250. In June 2025, FATF updated Recommendation 16 to strengthen transparency requirements for cross-border payments over $1,000, with formal compliance deadlines set for end of 2030.

Enforcement vs Self-Custody

A critical distinction shapes this landscape: the Travel Rule applies to VASPs, not to peer- to-peer transactions between self-custodial wallets. When Alice sends Bitcoin directly to Bob without an intermediary, no VASP is involved and no Travel Rule obligation is triggered. This regulatory asymmetry is precisely why privacy-preserving technologies at the protocol level matter: they protect the peer-to-peer use case that regulation explicitly exempts.

However, the on-ramp and off-ramp points remain chokepoints. Exchanges applying chain analysis tools can flag addresses associated with privacy-enhanced transactions, creating friction for users who move between self-custody and regulated services. Some exchanges have already begun flagging UTXOs with CoinJoin history, requiring users to provide additional documentation.

Bitcoin Core's Privacy Roadmap

Beyond silent payments, Bitcoin Core continues to add privacy-relevant features at the infrastructure level.

  • Bitcoin Core 31.0 (testnet April 2026) introduced the -privatebroadcast option, enabling transactions to be broadcast exclusively through Tor or I2P. Each transaction uses a separate connection, preventing IP-level linkability between unrelated transactions from the same node.
  • Cluster Mempool, also in v31.0, redesigns how unconfirmed transactions are organized (bounded groups of up to 64 transactions or 101 KB), improving eviction, relay, and replacement validation. While primarily a performance feature, it reduces the information leakage from mempool observation.
  • Taproot (BIP-341) adoption continues to grow, making complex spending conditions (multisig, timelocks, HTLCs) indistinguishable from simple single-key spends when the cooperative path is used. This directly reduces the amount of information that spending conditions leak to chain observers.

Layer 2 Privacy: Beyond the Base Chain

The most significant privacy gains in Bitcoin may come not from on-chain techniques but from moving activity off-chain entirely. When transactions do not touch the base layer, chain analysis firms have nothing to trace.

Lightning achieves this for payment routing but still requires on-chain channel opens and closes, which are visible and linkable. Ecash protocols like Fedimint and Cashu provide strong privacy within their trust boundaries using blind signatures, but require trusting a mint or federation with custody.

Spark offers a different tradeoff. Because Spark transfers change key ownership off-chain using statechain mechanics, they produce no on-chain footprint at all during normal operation. There is no channel open, no channel close, no routing record on a public network. The on-chain UTXO sits unchanged while ownership transfers between parties via FROST threshold signatures. This reduces the surveillance surface compared to both standard Bitcoin transactions and Lightning, where analysts can at least observe channel lifecycle events.

The tradeoff is the Spark trust model: users must trust that at least one of the Spark operators behaves honestly during each transfer. But from a privacy perspective, the architecture is inherently resistant to the chain analysis techniques described above: there are simply no on-chain transactions to cluster, no change outputs to track, and no address reuse to exploit.

What Comes Next

The Bitcoin privacy landscape is evolving along several axes simultaneously. Silent payments are gaining wallet support but need better light client infrastructure before they reach mainstream adoption. Payjoin v2 removes the server barrier that limited v1 adoption, but needs wallet developers to integrate BIP-77. CoinJoin as a coordinated service appears finished in its previous form, with no clear path to resurrection given the legal precedents set by the Samourai and Tornado Cash cases.

The most promising direction may be the convergence of Layer 2 privacy with on-chain techniques. A user who receives funds via a silent payment address, holds them on Spark (where transfers leave no chain footprint), and pays Lightning invoices through Spark Service Providers achieves privacy properties that no single technique provides alone: unlinkable receiving, invisible transfers, and onion-routed payments.

For developers building on Bitcoin, the Spark SDK documentation covers how to integrate self-custodial transfers with these privacy properties. For a broader look at how payjoin fits into the Bitcoin privacy stack, see the payjoin deep dive.

This article is for educational purposes only. It does not constitute financial or investment advice. Bitcoin and Layer 2 protocols involve technical and financial risk. Always do your own research and understand the tradeoffs before using any protocol.