SIGNAL · LIVEFILE // PRIVACY.SOLPG 01 / 06

Privacyon Solana.

From pseudonymous wallets to fully encrypted computation, Solana supports every level of privacy.

Explore Privacy Toolsv.2026.04 · MAINNET
§ 02
—— 06

Privacy is a Spectrum.

Most discussions about privacy assume only two modes: public or private. But real systems are more nuanced. Privacy can be understood across two axes, identity visibility and data visibility, creating four distinct models.

AXES
IDENTITY VISIBLE
IDENTITY HIDDEN
DATA · VISIBLE
Pseudonymity
LV. 01

Data is public, but identity is not. A pseudonymous system lets anyone inspect transactions, balances, and history, but none of it is linked to a real-world person unless the owner chooses to reveal themselves.

  • On Solana, this is the default. Every wallet address is a cryptographic public key
  • Standard SPL token transfers are fully visible on-chain, but no address carries inherent identity
Anonymity
LV. 02

The transaction itself may be visible, but the link between sender and receiver is cryptographically broken. No observer can determine who paid whom. This goes beyond pseudonymity: even if you can see that a transfer happened, you cannot trace it back to a specific address or person.

  • On Solana, high throughput makes ZK-based anonymity systems practical at scale
  • Proof verification that would bottleneck slower chains runs within Solana's 400ms slot times
  • Protocols like Light Protocol offer anonymous state management in real-world applications
DATA · HIDDEN
Confidentiality
LV. 03

The participants may be known, but the contents of their transactions are hidden. Amounts, balances, and transfer data are encrypted so that only the parties involved can read them. Observers can verify that rules were followed without seeing the underlying values.

  • On Solana, Confidential Token Extensions encrypt transfer amounts and balances at the protocol level using zero-knowledge proofs
  • Enterprise payments and payroll without exposing compensation data
  • Stablecoin transfers where amounts stay private between sender and receiver
  • Trading strategies that remain hidden from front-runners
Full Privacy
LV. 04

Neither identity nor data is visible. Computation happens on encrypted inputs inside secure environments. Only proofs or final results are published on-chain. The chain verifies correctness without ever seeing the underlying data.

  • On Solana, projects like Arcium and Inco bring encrypted multi-party computation and FHE to Solana programs
  • Private DeFi where order flow, positions, and strategies remain encrypted
  • Confidential DAO governance with sealed votes and hidden proposals
  • On-chain games with hidden state that players cannot inspect
§ 03
—— 06

Design Principles.

01/

Privacy Should Be Programmable

Developers should be able to choose the right privacy level for their application. A payroll system has different requirements than a public governance vote. Privacy primitives should be composable building blocks, not all-or-nothing switches.

principle // 01

composable true
scope per-app
opt-in default
02/

Privacy and Compliance Go Together

Privacy does not mean avoiding regulation. With zero-knowledge proofs, users can prove solvency without exposing balances, verify eligibility without revealing identity, and satisfy audit requirements without making data public. Compliant privacy is not a compromise, it is better design.

principle // 02

zk-proof native
audit selective
disclosure opt-in
03/

Performance Matters

Privacy technologies are often computationally heavy. ZK proof generation and verification, homomorphic encryption, and secure multi-party computation all demand significant resources. Solana's throughput makes these primitives usable in real-world applications.

principle // 03

slot 400ms
tps high
fees low
§ 05
—— 06

What Privacy Unlocks.

Privacy is not just about hiding data. It enables entirely new categories of applications that cannot exist on transparent chains.

CONFIDENTIAL · 01

Private Payments

Send and receive tokens without exposing amounts or balances to the public. Essential for salary payments, business transactions, and personal transfers.

tx    ▸ 0x••••3f
from ▸ aL71…ke9
to    ▸ m3Vp…q8x
amt  ▸ USDC
CONFIDENTIAL · 02

Private Trading

Execute trades without revealing strategy, position size, or timing to front-runners and MEV bots. Confidential order flow protects both retail and institutional traders.

order ▸ #0xab   side ▸
size  ▸    fill ▸
CONF · 03

Confidential Payroll

Pay employees and contractors on-chain without making compensation data public. Employers retain audit capability while keeping individual amounts private.

ANONYMOUS · 04

Private DAO Voting

Vote on proposals without revealing individual choices until results are finalized. Prevents vote-buying, social pressure, and strategic last-minute swings.

FOR
▒▒%
AGN
▒▒%
ANONYMOUS · 05

Encrypted Identity

Prove attributes like age, citizenship, or credential ownership without revealing the underlying data. Zero-knowledge identity enables compliant privacy.

claim ▸ age >= 21
proof ▸ π·0x9f…b3
state ▸ VERIFIED ✓
FULLY PRIVATE · 06

Confidential AI Agents

Autonomous agents that transact, hold assets, and execute strategies without leaking proprietary logic or user data to on-chain observers.

agent.run( )
→ returns
LIVE ON MAINNET

Build with Confidential Tokens

Confidential Token Extensions are live on Solana mainnet. Encrypt balances, hide transfer amounts, and verify with zero-knowledge proofs, all at the protocol level. No external dependencies required.

© 2026 Solana Foundation. All rights reserved.
Privacy on Solana | Confidential Transactions & Zero-Knowledge Proofs | Solana