Back
Privacy on Solana: Past, Present, and Future of the Chain's Most Underrated Development
Solana's privacy ecosystem has evolved from failed experiments into a multi-layered stack of live protocols, encrypted infrastructure, and institutional backing. Here's a deep dive..

Synopsis
In this Trojan Intel report we cover the full state of Privacy on Solana: from early projects that didn't make it, to the native Confidential Balances now baked into the token standard, the competing infrastructure approaches from Arcium, MagicBlock, and Darklake, and the applications processing real volume today. Plus what's coming next.
NOTE: This is a very long document, it is intended to give a comprehensive rundown and review of the state of Privacy developments on Solana. If you want an easier to digest, trimmed down version see this X-article. If you're ready to go deep, grab a coffee and settle in.
Executive Summary
Solana's privacy ecosystem has undergone a dramatic transformation from 2022 through early 2026, evolving from a handful of experimental privacy protocols into a rich, multi-layered landscape with dedicated infrastructure, applications, and now formal institutional support in the form of hackathons. Where early privacy attempts like Otter Cash and Elusiv struggled to gain traction and eventually pivoted or shut down, a new generation of privacy projects is now shipping production-ready tools at significant scale.
In December 2025, Solana's official account spotlighted 12 privacy projects spanning six categories: encrypted computation, privacy infrastructure, payment wallets, private transactions, prediction markets, and smart protection. The Solana Foundation followed this signal with the Privacy Hack—a January 2026 hackathon offering over $100,000 in prizes across three tracks—confirming that privacy is now a strategic ecosystem priority, not a niche concern.
This report covers the full landscape: native protocol-level features like Confidential Balances, the infrastructure layer anchored by Arcium and MagicBlock, application-layer projects including Umbra, Privacy Cash, Vanish, Darklake, and more, plus a deep examination of the Privacy Hack 2026 and what its outputs signal about the ecosystem's direction.
1. The Privacy Problem on Solana
Solana is one of the most transparent blockchains in existence. Every transaction—sender, recipient, and token amounts—is publicly visible to any observer with a block explorer and a wallet address. This radical transparency, while essential for verifiability, creates serious practical limitations for real-world adoption:
Businesses cannot keep payroll or B2B payment amounts private from competitors.
Traders expose their strategies and positions to MEV bots that front-run and sandwich their orders.
Institutions cannot onboard to DeFi without broadcasting their every move to the world.
Individuals cannot conduct personal financial activity with any expectation of confidentiality.
The challenge is compounded by Solana's architecture: unlike Ethereum where some shielded computation had already been pioneered by projects like Aztec, Solana's high-throughput, account-based model requires custom cryptographic solutions that work within its unique runtime constraints. Early privacy projects discovered this the hard way.
The framing that has emerged in the ecosystem, and adopted by the Solana Foundation itself, is a distinction between privacy and confidentiality. 'Privacy' in the absolute sense (e.g., Monero-style anonymity, where even chain observers cannot confirm a transfer occurred) is not what most of the current generation of Solana projects is building. Instead, they are building confidentiality: the ability to hide amounts, balances, and execution details from public observers while still maintaining auditability for authorized parties (e.g., regulators, auditors) and verifiability on-chain. This framing is better suited to institutional adoption and regulatory compliance.
2. Historical Context: Privacy 1.0 on Solana
Before the current generation of projects, several pioneering efforts attempted to bring privacy to Solana. Understanding their trajectories illuminates why the current ecosystem approach is different.
2.1 Otter Cash (2022)
One of the earliest Solana privacy protocols, Otter Cash launched in early 2022 as an anonymous transaction protocol using zero-knowledge proofs to break the link between source and destination addresses. It never reached widespread adoption. The team ultimately pivoted entirely, leaving Solana to build Renegade, a dark pool on Arbitrum using Secure Multi-Party Computation (MPC). The pivot was telling: at the time, the cryptographic infrastructure required to build robust privacy on Solana did not yet exist at the protocol level.
Source: Arcium, "The Rebirth of Privacy on Solana," December 2024. arcium.com
2.2 Elusiv (2022–2024)
Elusiv was the most prominent Privacy 1.0 project on Solana. It deployed a shared privacy pool governed by an on-chain program. Users deposited tokens into the pool (public transactions), then sent privately within the pool using ZK-SNARKs, and could create viewing keys to selectively disclose transaction history. Elusiv also worked on ZEUS (Zero-Knowledge Encrypted User-Safeguarding), a decentralized compliance solution.
Despite being technically sophisticated and winning early developer attention, Elusiv announced on February 29, 2024 that it would sunset the platform, entering withdrawal-only mode through January 2025. The team regrouped and relaunched the entire project as Arcium, pivoting from an application-layer privacy wallet to a general-purpose encrypted computation network. This evolution is arguably the most significant transformation in the Solana privacy ecosystem.
Source: QuickNode, "How to Enable Token Privacy on Solana with Zero-Knowledge Proofs from Elusiv," quicknode.com
2.3 Light Protocol (2021–present)
Light Protocol started in summer 2021 with the mission of building private voting systems and private transactions using zero-knowledge proofs on Solana. Its original vision, private program execution through ZK circuits on the client side, was technically ahead of its time. The ZK proofs used in their early system encoded program logic into ZK circuits on the client, which were then verified on-chain by a dedicated verifier.
During the bear market of 2022–2023, the team made a crucial pivot: the same ZK technology they had built for privacy could be repurposed to solve Solana's growing state storage problem. This led to ZK Compression, a protocol that uses zero-knowledge proofs and Merkle trees to store account commitments on-chain at drastically reduced cost (by orders of magnitude compared to standard Solana accounts). The tradeoff is that ZK Compression itself does not provide privacy; transactions are still public. But it lays the cryptographic groundwork for future private applications, and the compressed state structures are ZK-friendly by design. Light Protocol's GitHub (github.com/Lightprotocol/light-protocol) remains one of the most active Solana privacy-adjacent open-source repositories, with circuits formally verified by Reilabs and audited by OtterSec, Neodyme, and Zellic.
Source: Light Protocol Whitepaper, zkcompression.com; GitHub: Lightprotocol/light-protocol
3. Native Protocol-Level Privacy: Token Extensions & Confidential Balances
The most significant institutional-grade privacy development on Solana is not a third-party protocol; it is built into the core token standard itself. The journey began with Token-2022 (Token Extensions) and has evolved into the Confidential Balances suite.
3.1 Token Extensions (Token-2022)
Token Extensions is Solana's next-generation token program (technically called Token-2022 or SPL Token-2022). It introduces a modular set of extensions that can be configured per-token at mint creation. Unlike the old SPL Token program, Token Extensions allows fine-grained, programmable behavior. Relevant extensions for privacy include:
Confidential Transfers: Hides token amounts during transfers using ElGamal encryption and ZK proofs. The sender, recipient, and optional auditor can see amounts; the public cannot.
Token-Gated Transfers: Controls which wallets can receive tokens based on KYC identifiers.
Transfer Hooks: Calls custom on-chain logic when tokens transfer, enabling compliance checks.
Required Metadata: Binds payment attribution data to transactions.
A notable early adopter of Token Extensions is PayPal's PYUSD stablecoin on Solana, which initialized the confidential transfer extension (though as of that writing, it was not necessarily actively enforcing confidential transfers). This demonstrated that major enterprises were thinking about privacy features from the very moment they deployed on Solana.
Source: PayPal Community Blog, "A Deep Dive into PYUSD and Solana Token Extensions," developer.paypal.com
3.2 Confidential Balances (April 2025)
The original Confidential Transfers extension, launched with Token-2022 in June 2024, was just the beginning. On April 8, 2025, Helius Labs and Solana developers announced a major upgrade: Confidential Balances, described as 'the first ZK-powered encrypted token standard built for institutional compliance without sacrificing sub-second finality.'
Confidential Balances expands the original Confidential Transfers into a broader suite of three coordinated extensions:
Confidential Transfers (enhanced): Hides token amounts during transfers, with auditor key support for selective disclosure.
Confidential Transfer Fee: Uses the same cryptographic primitives as transfer fees but with confidentiality; fee amounts are also hidden.
Confidential Mint and Burn: Token issuers can now conceal how many tokens are minted or burned, not just transferred.
The cryptographic stack underlying all three is ElGamal homomorphic encryption combined with zero-knowledge proofs (specifically, ZK ElGamal proofs verified by a native Solana program: ZkE1Gama1Proof11111111111111111111111111111). Homomorphic encryption allows the system to mathematically verify that transaction sums balance correctly without decrypting any of the actual amounts. This means the blockchain can confirm 'sender had enough tokens and recipient received the right amount' without anyone knowing the amounts.
A key design principle is the Auditor Key mechanism: token issuers can designate a single ElGamal public key (derivable from a standard ed25519 private key) as an auditor. This designated party can decrypt all balances and transfer amounts, providing a compliance mechanism without compromising general user privacy. This 'privacy for users, transparency for regulators' architecture is central to the institutional pitch.
As of April 2025, Confidential Balances are 'implementation-ready' for Rust-based backends. JavaScript-based ZK proof libraries for browser and mobile wallets were expected later in 2025. The ZK ElGamal Proof program was temporarily disabled on mainnet and devnet for a security audit as of documentation writing, meaning care should be taken to check current status before implementing.
Important limitation: Confidential Balances hide amounts, not identities. The public addresses of sender and recipient remain visible on-chain. This is by design. It is confidentiality, not anonymity.
Source: Helius, "Confidential Balances: Empowering Confidentiality on Solana," April 8, 2025. helius.dev
Source: The Block, "Solana developers launch new 'Confidential Balances' token extensions," April 8, 2025.
Source: Solana Docs, solana.com/docs/tokens/extensions/confidential-transfer
4. The Privacy Infrastructure Layer
While native token extensions address transaction amount confidentiality, a new generation of infrastructure projects is building generalized encrypted computation for Solana, enabling truly private program execution, shared private state, and confidential multi-party coordination.
4.1 Arcium — The Encrypted Supercomputer
Arcium is, as of early 2026, the most technically sophisticated and well-funded privacy infrastructure project on Solana. Originally built as Elusiv (the privacy wallet that shut down in 2024), the team completely reinvented the project as a general-purpose encrypted computation network.
What Arcium Is
Arcium describes itself as an 'encrypted supercomputer', a decentralized network of nodes that can perform computation on fully encrypted data. This is fundamentally different from a privacy mixer or a shielded token system. With Arcium, developers can write programs that operate on encrypted inputs and produce encrypted outputs, with none of the nodes (or anyone else) ever seeing the underlying data in plaintext.
Core Technology
Arcium's core primitive is Multi-Party Computation (MPC). Rather than relying on a single trusted party to encrypt/decrypt data, MPC distributes computation across multiple nodes such that no individual node has enough information to reconstruct any sensitive value. Arcium combines MPC with:
Fully Homomorphic Encryption (FHE): Computation on ciphertext
Zero-Knowledge Proofs (ZKPs): Verification without disclosure
Trusted Execution Environments (TEEs): Hardware-level isolation where relevant
The fundamental architecture involves Multi-Party eXecution Environments (MXEs), virtual machines for defining MPC computations. Each MXE can be individually configured by the developer: which MPC protocol to use, trust assumptions, hardware requirements, etc. The distributed execution engine is called arxOS (Arcium's distributed operating system), which coordinates computation across Arx nodes and manages keyshare distribution.
MPC Protocols: Cerberus and Manticore
A standout technical feature of Arcium is offering two different MPC backend protocols, suited to different use cases:
Cerberus: Operates under a 'dishonest majority' trust model. Privacy is guaranteed as long as at least one node is honest, a much stronger guarantee than the 'honest majority' (51%) assumption most protocols require. Cerberus features cheating detection and identifiable abort mechanisms, meaning dishonest nodes can be identified, removed, and penalized. This makes it highly resistant to collusion.
Manticore: Designed for AI and machine learning scenarios. Slightly weaker security assumptions than Cerberus but optimized for environments with access control, such as training AI models in trusted multi-party settings.
Integration with Solana
Arcium uses Solana as its orchestration and mempool layer. An on-chain Solana program acts as the consensus mechanism, determining which computations should execute, and in what order. Arx nodes read from Solana, execute encrypted computations off-chain, and post results back on-chain. This design is elegant: Solana's consensus provides accountability (nodes can't misbehave without being detected), while the actual encrypted execution happens off the main chain where it can scale without burdening validators.
Developers write privacy-preserving applications using Arcis, a Rust-based Domain Specific Language (DSL) compiled to MPC computation. Arcis provides a familiar development experience while abstracting the complex cryptographic details.
Ecosystem and Scale
By early 2026, Arcium had launched its Mainnet Alpha with over 25 projects building across DeFi, AI, DePIN, and gaming. Key ecosystem metrics as reported include 500+ nodes and 10,000+ daily confidential computations. A strategic acquisition of Inpher, a Web2 confidential computing company founded in 2015, brought proven enterprise optimization techniques into the network. Arcium raised $11 million in total through an angel round completed March 2025, with investors including Jupiter co-founders Meow and Siong, and a 2% community token sale on CoinList at a $200M FDV.
The flagship Arcium ecosystem application is Umbra (see Section 5.1). Other applications building on Arcium include Darklake (private AMM), Melee and Pythia (private prediction markets), and Loyal (on-chain AI with privacy). Arcium's architecture is explicitly designed as 'Privacy 2.0', where private state can be shared and computed over by multiple parties, enabling new classes of multi-party applications that were previously impossible.
Source: Arcium, arcium.com; Helius, "Arcium: Privacy 2.0 for Solana," helius.dev/blog/solana-privacy
Source: BlockEden, "Arcium Mainnet Alpha: The Encrypted Supercomputer Reshaping Solana's Privacy Future," February 2026.
Source: The Block, "Arcium-powered privacy protocol Umbra receives $155 million in ICO commitments on MetaDAO," October 2025.
4.2 MagicBlock — Private Ephemeral Rollups with TEEs
MagicBlock began as an on-chain gaming engine, raised $10.5 million total (with a $7.5M seed round in April 2025 led by Faction, with participation from Maven11, Mechanism Capital, Robot Ventures, Delphi Ventures, and angels including Solana co-founder Toly and Helius CEO Mert), and then pivoted in September 2025 to build Ephemeral Rollup, a TEE-protected scaling and privacy solution natively supported on Solana.
Ephemeral Rollups use Intel TDX (Trust Domain Extensions) secure enclaves to create hardware-validated 'black boxes' where transactions execute with hardware-enforced confidentiality. The approach is pragmatic: rather than relying purely on cryptographic privacy (which introduces proof generation overhead), MagicBlock uses trusted hardware to provide real-time privacy at native Solana speeds. Key capabilities include:
Confidential order books and dark pools
DeFi protocols with regulatory compliance and built-in privacy controls
Secure auditable payment channels
Consumer-grade games and applications requiring privacy (e.g., poker, strategy games with hidden information)
According to MagicBlock, this is the first privacy infrastructure built on TEE specifically designed for native Solana support. Deployment is designed to be developer-friendly, requiring only a few lines of code to integrate. The approach trades the pure cryptographic trustlessness of MPC for the speed and practicality of hardware-based guarantees.
Source: WEEX/MEXC/Bitget, "12 New Projects, a List of Privacy Projects Officially Recognized by Solana," December 2025.
4.3 Light Protocol — ZK Compression (Privacy Infrastructure Foundation)
As detailed in Section 2.3, Light Protocol pivoted from privacy to ZK Compression. However, it deserves mention as infrastructure because ZK Compression lays the cryptographic foundation that many privacy applications build on. By storing compressed account commitments in Merkle trees, Light Protocol introduces ZK-friendly data structures into Solana's state model. Applications can efficiently prove custom off-chain computations over ZK-compressed state, enabling private applications that compose with the broader Solana ecosystem.
Light Protocol's zkcompression.com documentation is the canonical reference. Their Forester service provides a decentralized network that maintains Merkle trees, with epoch-based coordination for processing queued operations. The Photon Indexer (maintained by Helius at github.com/helius-labs/photon) provides state queries and Merkle proofs for compressed accounts. Light Protocol is a key sponsor in the Privacy Hack 2026, supporting the open track prize pool.
Source: Light Protocol Whitepaper, zkcompression.com/references/whitepaper; GitHub: Lightprotocol/light-protocol
4.4 Darklake — Privacy-Forward ZK Infrastructure and AMM
Darklake is a dual-purpose project: part ZK infrastructure provider and part concrete privacy application. They describe their mission as 'building the ZK infrastructure that lets every app, wallet, and protocol think securely at Solana speed.'
Technical Approach
Darklake's core product is a zkAMM, an Automated Market Maker where trade parameters (slippage tolerance, order size, price limits) are encrypted using zero-knowledge proofs before being broadcast to the network. The system adds a cryptographic commitment layer to AMM swaps, making slippage data invisible to searchers (MEV bots and validators) but verifiable after execution.
Darklake's custom proving scheme is particularly noteworthy. Rather than using standard circuit-based ZK systems (like Groth16 or PLONK), they developed their own polynomial commitment scheme. This allows them to commit directly to the polynomial representing their AMM logic, skipping the constraint system decomposition step. Incoming swaps pass approximately 750 bytes of proof data including EC (elliptic curve) points, partial proof commitments, and swap parameters.
Darklake is also partnering with Arcium to combine their zkAMM with Arcium's MPC runtime for fully encrypted DeFi execution, eliminating mempool exposure, slippage signaling, and validator front-running simultaneously.
MEV Context
Darklake's urgency is grounded in documented harm. In March 2025, the Solana validator DeezNode demonstrated the scale of MEV extraction by operating a private mempool and RPC cluster, executing 1.55 million sandwich attacks in one month and extracting $13.43 million from traders. Darklake's approach makes this attack impossible by ensuring that even if a validator sees incoming encrypted order parameters, they cannot reconstruct the actual trade intent before the transaction finalizes.
Importantly, Darklake's protection improves as Solana gets faster: shorter block times decrease the window for MEV exploitation even further, making the encrypted proof system more effective as the network scales.
Source: Darklake, darklake.fi; Darklake Blog, blog.darklake.fi
Source: Taproot/Medium, "Solana Privacy Ecosystem — Post Accelerate 25," June 2025.
Source: JuCoin, "Darklake: Mitigate Maximal Extractable Value In Solana DEXs," May 2025.
5. Application-Layer Privacy Projects
Below the infrastructure layer, a growing set of user-facing applications is translating the cryptographic primitives into practical privacy tools.
5.1 Umbra — Incognito Mode for Solana
Umbra is the flagship consumer-facing privacy application in the Solana ecosystem, described as 'incognito mode for Solana.' It is powered by Arcium's MPC infrastructure and operates through a Shielding Pool mechanism.
How It Works
Umbra's anonymity layer is built around a Shielding Pool, a smart contract that holds tokens from multiple users in a commingled pool. When a user deposits into the pool, the protocol captures the deposit details and encrypts them using Arcium's encrypted ledger operations. Once tokens are in the pool and mixed with others, it becomes computationally infeasible to determine specific ownership. With more users and assets flowing in, the anonymity set grows and privacy improves.
Umbra also provides a voluntary audit feature: users can disclose their transaction history to third parties (regulators, auditors) without compromising general privacy. This enables compliance without breaking the privacy model for normal users. Umbra operates on three core technical principles: local validation (independently verifying Solana's state), a privacy fabric (per-dApp identities and ZK processes), and distributed connectivity via P2P relays that remove centralized RPC chokepoints.
Traction and Funding
Umbra's ICO on MetaDAO in October 2025 was a watershed moment for the Solana privacy ecosystem. The raise attracted $154.9 million in USDC commitments from 10,518 investors, the largest raise on MetaDAO to date. Because the cap was set at $3 million, each investor received approximately 2% of their committed amount, with the rest refunded. The $UMBRA token launched in November 2025.
Proceeds are funding Umbra's development roadmap including: private swaps within the app, a redesigned interface, a Zcash–Solana bridge to unlock ZEC liquidity for cross-chain privacy, and a tiered fee model with an SDK for wallet and dApp integration. As of early 2026, Umbra was in phased private mainnet launch, onboarding 100 users weekly under a $500 deposit limit, with plans for broader access rollout through February 2026.
Source: The Block, "Arcium-powered privacy protocol Umbra receives $155 million in ICO commitments on MetaDAO," October 2025.
Source: Invezz, "Is privacy becoming an emerging narrative on Solana?," February 2026.
5.2 Privacy Cash — The Solana Mixer
Privacy Cash is the most actively used privacy protocol on Solana as measured by transaction volume and daily active addresses. It operates similarly to Tornado Cash on Ethereum, a ZK-powered mixer, but with a compliance-first framing. Since launching in August 2025, Privacy Cash has processed over $210 million in transfers (per official X account claims), with a TVL exceeding $2.1 million and 1,192+ daily active addresses hitting new highs as of January 2026.
How It Works
Users shield SOL (and select SPL tokens) by depositing into a privacy pool, which generates a cryptographic commitment added to an on-chain Merkle tree. Recipients can withdraw from any address using ZK proofs that verify they hold a valid commitment, without revealing which specific deposit corresponds to the withdrawal. This breaks the observable link between sender and recipient.
Important limitation: Privacy Cash requires users to send to fresh wallets. It cannot retroactively anonymize already-tracked wallet addresses. The protocol relies on zero-knowledge circuits that have reportedly undergone 14 separate security audits.
Private Swaps
On January 15, 2026, just days into the Privacy Hack, Privacy Cash launched private swaps, routing trades through Jupiter DEX via a temporary client-side ephemeral wallet, then reshielding the output token back to the user's wallet. A 0.35% swap fee applies plus standard aggregator fees. This made Privacy Cash the most feature-complete user-facing privacy app on Solana at launch.
Privacy Cash has an open-source GitHub repository (github.com/Privacy-Cash/privacy-cash) with the core Solana program and SDK, enabling developers to integrate privacy features into their own projects.
Source: SolanaFloor, "Privacy Cash Launches Swaps as Daily Addresses Hits All-Time High," January 15, 2026.
Source: Invezz, "Is privacy becoming an emerging narrative on Solana?," February 2026.
5.3 Vanish — Compliance-First Private Execution
Vanish is notable for two reasons: it won first prize in the DeFi track of the Solana Breakout Hackathon (Colosseum, mid-2025) with a $25,000 prize, and it raised $1 million in pre-seed funding led by Colosseum, with participation from Solana Ventures and Pivot Global, including a Solana co-founder as an angel investor.
Vanish uses smart transaction routing technology to maintain transaction privacy through protected liquidity sources, directing transactions through liquidity pools and routes that reduce front-running exposure. The project explicitly prioritizes compliance: it has an anti-dark money policy and is designed to reassure institutional users about regulatory compliance. The team positions Vanish as 'instant private execution' for traders who want to preserve strategy confidentiality without sacrificing execution quality.
Vanish is also building toward private perpetual contracts (a product not yet released as of December 2025). The backing from Colosseum and Solana Ventures signals institutional confidence in compliance-focused privacy.
Source: Colosseum, "Announcing the Winners of the Solana Breakout Hackathon," July 2025.
Source: CoinOtag/BitcoinEthereumNews, "Solana Privacy Protocol Vanish Raises $1M Pre-Seed Led by Colosseum," August 2025.
5.4 GhostWareOS ($GHOST) — Privacy-as-a-Suite
Launched in late 2025, GhostWareOS proposes a comprehensive suite of Solana-focused privacy solutions. Its first shipped product was GhostPay, which enables private payments by reducing transaction traceability, allowing token transfers without exposing full wallet histories or transactional metadata. The second product, GhostSwap, extends privacy into on-chain trading with unlinkable swaps. GhostWareOS represents a 'multi-tool' approach: a one-stop suite for privacy on Solana rather than a single-purpose tool.
Source: TradingView/Invezz, "Is privacy becoming an emerging narrative on Solana?," February 2026.
5.5 Darklake (Application Layer)
In addition to its infrastructure work (Section 4.4), Darklake operates a live zkAMM and is developing a perpetual DEX. The live product features a 'blind slippage pool', their ZK-AMM that adds encrypted commitments to AMM swaps, preventing MEV exploitation while maintaining on-chain verifiability. Darklake's GitHub (github.com/darklakefi) includes several active repositories: solana-privacy-pools, sdk-on-chain (Rust), poseidon-ark-gateway, dex-math, and dex-web, last updated through late 2025.
Source: Darklake GitHub, github.com/darklakefi
5.6 SilentSwap — Cross-Chain Privacy
SilentSwap is a non-custodial, cross-chain privacy service that is distinctly different from on-chain mixers. Rather than pooling funds on a single chain, SilentSwap obfuscates transaction paths by leveraging shielded transactions on privacy-enabled blockchains and routing activity through high-volume markets. SilentSwap V2 runs inside a Trusted Execution Environment (TEE), uses shielded transactions, and supports eight major chains including Ethereum, Solana, Base, Optimism, Arbitrum, Avalanche, BSC, and Polygon.
Key features include: splitting outputs across up to 10 wallets in a single transaction, a flat 1% fee, most swaps completing in 1–3 minutes, and one-time 'facilitator' wallets created for each transaction that are discarded after use. SilentSwap explicitly does not operate as a pooled mixer, which differentiates it from both Tornado Cash-style protocols and Privacy Cash.
Source: MilkRoad, "SilentSwap Review 2025," November 2025. milkroad.com
5.7 encrypt.trade and Hush
encrypt.trade is a privacy-focused DEX on Solana that has supported private swaps for several months (predating Privacy Cash's swap launch). It is one of the sponsors of Privacy Hack 2026 and offered educational bounties around wallet surveillance awareness. Hush is a privacy-first Solana wallet (not yet publicly released as of December 2025) that promises SOL anonymity, one-time addresses, and a built-in Zcash bridge, reflecting the growing interest in cross-chain privacy.
Source: Markets.com, "Solana Privacy Ecosystem Overview," December 2025.
5.8 NetSepio — Privacy VPN on Solana
NetSepio is a privacy VPN project that uses Solana to bootstrap its rewards network. At the Accelerate 25 conference, the team indicated they were seeking wallet partnerships to integrate their VPN layer with existing Solana wallets. This represents a different category of privacy: network-layer privacy (protecting what RPCs see) rather than transaction-level privacy.
Source: Taproot/Medium, "Solana Privacy Ecosystem — Post Accelerate 25," June 2025.
5.9 Loyal — On-Chain AI with Privacy
Loyal is described as an open-source, decentralized, censorship-resistant smart protocol supported by both MagicBlock and Arcium. Its mission is ambitious: to create an on-chain AI that protects user data privacy, starting with cryptographic transaction processing and eventually evolving into a general-purpose AI assistant. The dual infrastructure backing (TEE from MagicBlock + MPC from Arcium) gives it access to the ecosystem's strongest privacy primitives.
Source: MEXC/WEEX, "12 New Projects," December 2025.
5.10 Private Prediction Markets: Melee and Pythia
Both Melee and Pythia are prediction market protocols that integrate Arcium's technology to add encrypted order books, achieving dark pool dynamics for prediction markets. Users can place predictions without revealing their positions to other market participants until settlement. Pythia also received a university award at the Solana Cypherpunk Hackathon. These projects represent an application vertical where privacy directly solves a known market microstructure problem: information leakage in public prediction markets.
Source: MEXC, "12 New Projects," December 2025; Colosseum Cypherpunk Hackathon Winners, December 2025.
5.11 Anoncoin — Private Token Launches
Anoncoin is focused on a specific application: providing confidentiality to token launches (including memecoins). It builds private bonding curves, private swaps, and dark liquidity pools for token creation and trading, specifically addressing the problem of 'stealth launching' without broadcasting your intentions to front-runners. Anoncoin was a sponsor track in Privacy Hack 2026 with $10,000 in prizes.
Source: Solana Privacy Hack, solana.com/privacyhack
5.12 Radr Labs / ShadowWire
Radr Labs built ShadowWire, a tool for making private transfers on Solana that hides transaction amounts using Bulletproofs (a type of zero-knowledge proof). Unlike ElGamal-based approaches, Bulletproofs are range proofs that efficiently prove an encrypted value lies in a specific range without revealing the value itself. ShadowWire keeps everything on-chain and verifiable while hiding amounts. Radr Labs was a major sponsor at Privacy Hack 2026, offering $15,000 in prizes including best overall, best USD1 integration, and best integration with an existing app.
Source: Solana Privacy Hack, solana.com/privacyhack; GitHub: Radrdotfun/ShadowWire
5.13 Lumenless
A newer entrant (early 2026), Lumenless is building on Arcium's infrastructure. The team includes former Light Protocol contributors and won both the Sonic Mobius Hackathon and Kumekathon before raising 41,000 SOL (~$13+ million at prevailing prices) on DevFun, reportedly 13,000% oversubscribed. Lumenless is building private payments and private trading as initial products, with ambitions to become a full privacy superapp. Their first privacy product launched in January 2026.
Source: Medium/@0x_mikee, "The Future of Privacy on Solana: Why 2026 Changes Everything," January 2026.
5.14 UniFi Labs — Private Perpetual Contracts
UniFi Labs is building privacy-preserving perpetual contracts on Solana. The product had not been released as of December 2025, but the focus on perp privacy addresses a genuine pain point: large derivatives traders do not want their positions, liquidations, or strategy changes visible to sophisticated market participants and MEV bots in real-time.
Source: Markets.com, "Solana Privacy Ecosystem Overview," December 2025.
6. The Privacy Hack 2026 — Solana's Official Privacy Hackathon
The Privacy Hack was the most significant institutional signal of 2026 that privacy had become a strategic priority for the Solana Foundation. Officially launched January 12, 2026, and hosted in collaboration with Encode Club, the hackathon ran through January 30 with submissions due February 1 and winners announced February 10, 2026.
6.1 Overview and Scale
The Privacy Hack offered $100,000+ in total prizes across Solana Foundation tracks and ecosystem sponsor bounties, making it one of the largest dedicated privacy hackathons in blockchain history. The event featured an opening ceremony, virtual workshops from January 12–16, a 19-day hacking period, and an online community for team formation.
6.2 Tracks
Three primary competition tracks were offered:
Track 01 — Private Payments ($15,000): Build innovative solutions for confidential or private transfers on Solana.
Track 02 — Privacy Tooling ($15,000): Develop tools and infrastructure that make it easier for developers to build with privacy on Solana.
Track 03 — Open Track ($18,000 pool): Build anything privacy-related on Solana. Judged by the Solana Foundation and supported by Light Protocol.
6.3 Sponsor Bounties
Beyond the foundation tracks, twelve ecosystem sponsors offered dedicated bounties totaling approximately $75,000+ in additional prizes:
6.4 Infrastructure and Mentors
Participants had access to dedicated infrastructure: Triton provided high-performance RPC for all hackathon participants, and QuickNode offered RPC credits. Hacken provided AI-powered threat prevention with $2,000 service vouchers, 30% off Extractor, and free bug bounty hosting for all teams. Mentors included Mert (Helius CEO), Cat McGee (Solana Foundation), Matthew Klein (Reilabs), Jacob Creech (Solana Foundation), and Andres (Range).
6.5 Workshop Curriculum
The hackathon's workshop series represented the most comprehensive public education on Solana privacy development to date:
Simple ZK proofs with Noir — Harsh @ Aztec (January 13)
Noir on Solana: Verifying ZK proofs with Sunspot (January 13)
Privacy Cash SDK workshop (January 13)
Radr Labs / ShadowWire workshop (January 13)
MagicBlock Private Ephemeral Rollups workshop (January 14)
6.6 Winners Announced
Winners were announced February 10, 2026. The Solana Developers Twitter account confirmed sponsor track winners including projects from: Privacy Cash, Unruggable (which also won the Cypherpunk Hackathon grand prize), Nova Wallet, Avina.fun, Nova Shield, Hoppy, Arc-ag (Anoncoin), Dum.fun (Arcium), Bench, Crafts, Undesk, Epoch (Aztec), Veil (Venmo & Wise payments on Solana), IZI-NOIR, Dermagraph (Inco), The Casino & Church, Khel.fun, Bagel, Dark Bridge, ZivoExchange, Velvet Swap, SilentSwap Private Payrolls, Shadow, Privacy Sapp, Anon0mesh (QuickNode), Privatepay (Starpay), Mixoor, Settlr Pay, Privacy Chronicles, Solana-exposure-scanner, Solana Privacy Scanner, and DeFiLucas. Some sponsors were still completing their judging and announced separately.
Source: Solana Developers Twitter (@solana_devs), February 10, 2026. Sponsor track winners announced.
Source: Genfinity, "Solana Launches Privacy Hackathon to Advance Confidential Blockchain Infrastructure," January 2026.
Source: solana.com/privacyhack — complete rules, tracks, and sponsor details.
7. Adjacent and Cross-Chain Privacy Infrastructure
Several projects from outside the Solana ecosystem have signaled plans to move into or support Solana, while others are building cross-chain privacy bridges that connect Solana to established privacy chains.
7.1 Inco — Confidential Computing Layer
Inco was previously an FHE-based L1 network (fhEVM). It has rebranded as a confidential computing layer and is now actively targeting Solana developers, offering 'Inco Lightning' for native-speed confidential applications. Inco was a hackathon sponsor at Privacy Hack 2026 and has published Solana-specific documentation (docs.inco.org/svm/home). Inco's approach uses primarily TEEs for performance, making it a direct alternative to Arcium's MPC-based approach.
7.2 Fhenix — FHE Coprocessor
Fhenix is currently an Ethereum FHE (Fully Homomorphic Encryption) coprocessor but has publicly indicated plans to expand to Solana. Their CEO has stated that FHE's speed is no longer the limiting factor; the challenge is finding product-market fit. Fhenix takes a safety-first approach including custom decryption networks and a planned fraud proof mechanism, making it arguably the most rigorous FHE implementation in the web3 space. Zama (another FHE project) also reportedly has Solana Virtual Machine (SVM) plans for 2026.
7.3 Aztec / Noir — ZK on Solana
Aztec's Noir is a Rust-inspired ZK circuit language that has enabled ZK proof generation to become more accessible to developers. Sunspot is the integration layer that brings Noir-generated ZK proofs to Solana for on-chain verification. Aztec/Noir was a major Privacy Hack 2026 sponsor, offering $10,000 in prizes for ZK applications on Solana using Noir. Their workshop 'Noir on Solana: An intro to verifying ZK proofs with Sunspot' made ZK development on Solana substantially more accessible.
7.4 Cross-Chain Privacy: Zcash Bridge
Multiple Solana privacy projects, including Umbra and Hush, are building bridges to Zcash (ZEC), the most battle-tested privacy coin. These bridges would allow ZEC's liquidity to flow into Solana's privacy ecosystem while giving Solana applications access to Zcash's shielded transaction technology. This reflects a broader trend: rather than rebuilding privacy from scratch, Solana projects are increasingly looking to interoperate with existing privacy networks.
7.5 Range — Compliance Layer
Range provides pre-screening and selective disclosure tools that allow privacy-preserving projects to remain compliant. Their participation as a Privacy Hack sponsor (offering compliance tooling to all teams) reflects a maturing recognition that privacy without compliance is not viable for mainstream adoption. Range's 'Compliant Privacy' track awarded $1,500 plus free API credits to all participating teams, an unusually broad incentive designed to embed compliance thinking throughout the hackathon.
8. Technical Approaches: A Taxonomy
The Solana privacy ecosystem uses several distinct cryptographic approaches, each with different tradeoffs in terms of security assumptions, performance, and functionality.
8.1 Zero-Knowledge Proofs (ZKPs)
ZKPs allow a prover to convince a verifier of a statement's truth without revealing any information beyond the statement itself. On Solana, ZKPs are used for:
Confidential Balances: ElGamal encryption + ZK ElGamal proofs for hidden amounts with auditability
Light Protocol / ZK Compression: SNARKs (zk-SNARKs) for proving Merkle tree inclusion
Privacy Cash: ZK circuits for break-the-link pool withdrawals
Darklake: Custom polynomial commitment scheme for AMM slippage encryption
ShadowWire: Bulletproofs for range proofs on hidden amounts
Noir/Aztec: General ZK circuits compilable for Solana verification via Sunspot
8.2 Multi-Party Computation (MPC)
MPC enables multiple parties to jointly compute a function over their inputs while keeping those inputs private from each other. It enables 'shared private state', multiple parties can operate on encrypted data together without any party seeing the raw inputs. Arcium's MXEs (Multi-Party eXecution Environments) are the primary MPC runtime on Solana. MPC's killer feature is enabling collaborative computation: not just hiding data, but computing on it in multi-party settings (e.g., combined lending protocols, collaborative AI training).
8.3 Trusted Execution Environments (TEEs)
TEEs are hardware-enforced secure enclaves (Intel SGX, Intel TDX, AMD SEV) that provide confidential computation guarantees at the hardware level. MagicBlock's Private Ephemeral Rollups use Intel TDX. SilentSwap runs its swap coordination inside a TEE. TEEs trade cryptographic trustlessness (you must trust Intel/AMD's hardware) for significantly better performance and simpler programming models. For many practical applications, this tradeoff is acceptable.
8.4 Homomorphic Encryption (HE/FHE)
Homomorphic encryption allows computation on ciphertext, the results, when decrypted, match what you would get from computing on plaintext. Solana's Confidential Balances use additive homomorphic encryption (ElGamal) to verify that transfer amounts sum correctly without decrypting them. Full Homomorphic Encryption (FHE), which Fhenix and potentially Zama are bringing to Solana, allows arbitrary computation on encrypted data, the most powerful but also most computationally expensive approach.
8.5 Shielded Pools / Mixing
The oldest privacy primitive in the blockchain space. Users deposit into a shared pool, breaking the chain of custody between depositor and recipient. Privacy Cash and Umbra both use shielded pool mechanics, with the key difference that Umbra's pool operations are coordinated through Arcium's encrypted ledger (keeping even the pool's internal state private), while Privacy Cash uses ZK circuit proofs for the withdrawal unlinking.
9. Regulatory Landscape and Compliance Approaches
Privacy on blockchain has faced sustained regulatory pressure, culminating in the US Treasury's 2022 sanctions against Tornado Cash. This history has shaped how Solana's privacy projects approach compliance, in ways that distinguish them substantially from earlier privacy protocols.
9.1 The Tornado Cash Precedent
Tornado Cash was sanctioned by OFAC in August 2022 for facilitating money laundering. The action sent a chill through the privacy community and caused several projects (including Elusiv) to prioritize compliance tooling. The lesson internalized by Solana's second-generation privacy projects: anonymity-first tools without compliance mechanisms are existential legal risks.
9.2 Compliance-First Architecture
Nearly every major Solana privacy project in 2025–2026 has embedded compliance mechanisms from the start:
Auditor Keys (Confidential Balances): Token issuers can designate a party to decrypt all transfer amounts for audit purposes.
Viewing Keys (Umbra, legacy Elusiv): Users can selectively disclose their transaction history to authorized parties.
Anti-Dark Money Policy (Vanish): Explicit prohibition on illicit use, with compliance-conscious smart routing.
Pre-screening (Range): Integration with Range's screening tools to filter sanctioned addresses before they enter privacy pools.
Privacy Pools concept: The cryptographic primitive (used in Darklake's GitHub under 'solana-privacy-pools') that allows users to prove their funds did not come from sanctioned sources while maintaining privacy.
9.3 The Confidentiality vs. Anonymity Distinction
The Solana Foundation's framing: "confidentiality, not anonymity", is a deliberate regulatory positioning. Confidentiality means hiding amounts and execution details while maintaining identifiable addresses. Anonymity means hiding the participants themselves. The former is defensible for business, payroll, and institutional use cases. The latter is where regulatory conflict arises. This framing allows Solana to pitch privacy as a legitimate enterprise requirement while avoiding the policy conflicts that hobbled Tornado Cash and Monero.
10. Upcoming Developments and Future Trajectory
Based on publicly announced roadmaps and ecosystem signals, the following are the key near-term developments in Solana privacy:
10.1 JavaScript ZK Libraries (2025–2026)
The most important near-term technical development is the release of JavaScript-based ZK proof libraries for Solana. Currently, Confidential Balances can only be used with Rust-based backends or Wallets-as-a-Service providers. Once JavaScript libraries land, any browser wallet or mobile app can generate and validate ZK proofs on the fly, unlocking consumer-scale adoption of confidential transfers without requiring specialized custody solutions.
10.2 Arcium Mainnet Full Launch and ARX Token
Arcium's Mainnet Alpha launched in early 2026. The full mainnet and ARX token generation event (TGE) were projected for Q3 2025 but may have shifted. ARX enables delegation (activating Arx nodes) and staking. As Arcium's mainnet matures, the projects building on it (Umbra, Darklake, Melee, Pythia, Loyal, Lumenless, and others) will have stable encrypted infrastructure to launch on.
10.3 Umbra Broader Access and Private Swaps
Umbra's phased mainnet was actively expanding in early 2026. Upcoming: private swaps within the Umbra app (not just transfers), a redesigned interface, and the Zcash–Solana bridge.
10.4 Private Perpetual Contracts
Both UniFi Labs and Darklake (which pivoted to a perp focus) are building private perpetual contract platforms. Given the massive volume in perpetuals on Solana (Drift Protocol, etc.), privacy for perps is a potentially huge market.
10.5 Wallet Integration
Wallets are the critical distribution channel for privacy features. NetSepio is pursuing wallet partnerships for VPN integration. Hush is building a native privacy-first wallet. Range's compliance tooling is designed to integrate into existing wallets. The trend is toward privacy features being embedded in major wallets (Phantom, Backpack) rather than requiring users to use specialized privacy dApps.
10.6 FHE on Solana
Fhenix and Zama (via SVM plans) are bringing Full Homomorphic Encryption to Solana. FHE would enable the most powerful privacy primitive: arbitrary computation on encrypted data without any trusted parties. Current performance constraints make FHE expensive, but hardware acceleration is improving rapidly.
10.7 Confidential Extensions Programmability
The Confidential Balances/Extensions team is working to improve developer experience and programmability. Arcium has also proposed an alternative to ElGamal encryption that is more compatible with MPC operations, enabling deeper integration between the native token extension layer and Arcium's encrypted computation network. Transfer hooks and confidential transfers currently cannot work together, but this is being addressed.
10.8 Privacy as Default
The long-term vision expressed by multiple ecosystem contributors is privacy as an opt-in default; not a specialized feature requiring technical knowledge, but a simple toggle in any Solana wallet or dApp. The infrastructure being built today (Arcium, MagicBlock, native Confidential Balances, Light Protocol ZK Compression) is the foundation for making this vision practical.
11. Project Quick Reference
Project | Category | Description |
|---|---|---|
Arcium | Encrypted Computation Infrastructure | MPC-powered encrypted supercomputer; supports shared private state; used by Umbra, Darklake, Melee, Pythia |
Confidential Balances | Native Protocol | ZK+ElGamal token extensions for hiding transfer amounts, fees, mint/burn; institutional compliance built-in |
Light Protocol | ZK Compression / Infra | ZK Compression for cost-efficient state storage; foundational for custom ZK apps |
MagicBlock | TEE Infrastructure | Private Ephemeral Rollups using Intel TDX for hardware-enforced confidentiality |
Darklake | ZK AMM / Infrastructure | zkAMM for MEV-resistant private swaps; custom polynomial commitment proving scheme |
Umbra | Privacy Wallet/Payments | Shielded pool transfers powered by Arcium MPC; $155M ICO commitments; incognito mode for Solana |
Privacy Cash | Mixer / Payments | ZK-powered mixer; $210M+ processed; private swaps via Jupiter; open-source SDK |
Vanish | Private Execution | $1M raised; Colosseum winner; compliance-first private routing for trades |
GhostWareOS ($GHOST) | Privacy Suite | GhostPay + GhostSwap; end-to-end privacy suite launched late 2025 |
SilentSwap | Cross-Chain Privacy | TEE-based non-custodial cross-chain privacy swap; 8 chains; up to 10 output wallets |
encrypt.trade | Private DEX | Privacy-first DEX; private swaps predating Privacy Cash; hackathon sponsor |
Hush | Privacy Wallet | Privacy-first wallet; one-time addresses; built-in ZEC bridge (not yet released) |
NetSepio | Privacy VPN | VPN rewards network on Solana; pursuing wallet integrations |
Melee / Pythia | Prediction Markets | Private order books for prediction markets using Arcium encryption |
Anoncoin | Token Launches | Confidential token creation, private bonding curves, dark liquidity pools |
Lumenless | Privacy Suite | Ex-Light Protocol team; Arcium-powered; 41k SOL raised on DevFun |
UniFi Labs | Private Perps | Private perpetual contracts platform (in development) |
Loyal | On-Chain AI + Privacy | Privacy-preserving on-chain AI; MagicBlock + Arcium backed |
Range | Compliance | Pre-screening and selective disclosure for compliant privacy apps |
Elusiv | Legacy (Sunsetted) | Original privacy wallet; team pivoted to build Arcium |
Otter Cash | Legacy (Pivoted) | Early ZK mixer; team pivoted to build Renegade on Arbitrum |
12. Conclusion
Solana's privacy ecosystem in early 2026 represents a genuine inflection point. What was once a graveyard of pivoted projects has become a densely populated landscape with multiple competing and complementary approaches across the full stack, from native token extensions to MPC infrastructure to application-layer mixers and DEXes.
Several forces are converging to make this moment different from Privacy 1.0: infrastructure quality is dramatically better (Arcium's MPC, MagicBlock's TEEs, native Confidential Balances), regulatory framing has shifted from anonymity to auditable confidentiality, institutional interest in blockchain privacy is growing (driven by DeFi's MEV problems and enterprises' need for B2B payment confidentiality), and the Solana Foundation has made privacy a formal strategic priority with dedicated hackathons and ecosystem support.
The Privacy Hack 2026, offering over $100,000 in prizes, 14+ sponsors, workshops covering ZK, MPC, TEEs, and compliance, produced dozens of new projects including Veil (private Venmo/Wise payments on Solana), Dark Bridge, ZivoExchange, Mixoor, private payroll systems, and more. These are the next generation of Solana privacy applications finding their first users.
The central unanswered question is adoption. Every generation of privacy tools has faced the same problem: people say they want privacy but behave otherwise, and the UX friction of privacy features historically drove users back to transparent tools. The current generation's answer is to embed privacy at the infrastructure level, making it invisible, automatic, and compliant, rather than requiring users to make an explicit privacy choice. If this approach succeeds, privacy will no longer be a niche feature for cypherpunks but a baseline expectation for any serious economic activity on Solana.
The privacy infrastructure being built today will define how onchain trading works tomorrow. Trojan already reflects this shift: MEV protection, self-custody, and fast execution are just a first stride toward tackling the transparency problem this report describes. As native privacy tools mature across the stack, the traders best positioned will be the ones already operating on infrastructure keeping pace with it. Trojan has always been quick to integrate the latest tools and infrastructure and, once proved, privacy protocols will be no different.
"Privacy is necessary for an open society in the electronic age. Privacy is not secrecy. A private matter is something one doesn't want the whole world to know, but a secret matter is something one doesn't want anybody to know. Privacy is the power to selectively reveal oneself to the world." - Eric Hughes
Sources & Citations
No references to other products or protocols in this document should be taken as endorsements, they are discussed and/or cited for informational purposes only.
Arcium — arcium.com | 'The Rebirth of Privacy on Solana' (Dec 2024) | arcium.com/articles/the-rebirth-of-privacy-on-solana
Helius — 'Arcium: Privacy 2.0 for Solana' | helius.dev/blog/solana-privacy
Helius — 'Confidential Balances: Empowering Confidentiality on Solana' (Apr 8, 2025) | helius.dev/blog/confidential-balances
Helius — 'Privacy on Solana with Elusiv and Light' | helius.dev/blog/privacy-on-solana-with-elusiv-and-light
Solana Docs — Confidential Transfer Extension | solana.com/docs/tokens/extensions/confidential-transfer
Solana — Token Extensions | solana.com/solutions/token-extensions
Solana — Privacy Hack 2026 | solana.com/privacyhack
The Block — 'Solana developers launch new Confidential Balances token extensions' (Apr 8, 2025)
The Block — 'Arcium-powered privacy protocol Umbra receives $155 million in ICO commitments' (Oct 2025)
BlockEden — 'Arcium Mainnet Alpha: The Encrypted Supercomputer Reshaping Solana's Privacy Future' (Feb 2026) | blockeden.xyz
Darklake — darklake.fi | blog.darklake.fi | github.com/darklakefi
Light Protocol — lightprotocol.com | zkcompression.com | github.com/Lightprotocol/light-protocol
Privacy Cash — privacycash.org | github.com/Privacy-Cash/privacy-cash
Colosseum — 'Announcing the Winners of the Solana Breakout Hackathon' (Jul 2025) | blog.colosseum.com
Colosseum — 'Announcing the Winners of the Solana Cypherpunk Hackathon' (Dec 2025) | blog.colosseum.com
SolanaFloor — 'Privacy Cash Launches Swaps as Daily Addresses Hits All-Time High' (Jan 15, 2026)
Invezz — 'Is privacy becoming an emerging narrative on Solana?' (Feb 2026) | invezz.com
TradingView/Invezz — Privacy narrative analysis (Feb 2026)
Genfinity — 'Solana Launches Privacy Hackathon' (Jan 9, 2026) | genfinity.io
MEXC/WEEX/Bitget — '12 New Projects, a List of Privacy Projects Officially Recognized by Solana' (Dec 2025)
Markets.com — 'Solana Privacy Ecosystem Overview: Projects, Technologies, and Analysis' (Dec 3, 2025)
MilkRoad — 'SilentSwap Review 2025' (Nov 2025) | milkroad.com
QuickNode — 'Confidential Transfers on Solana: A Developer's Guide' | quicknode.com
PayPal Dev — 'A Deep Dive into PYUSD and Solana Token Extensions' | developer.paypal.com
Taproot / Medium — 'Solana Privacy Ecosystem — Post Accelerate 25' (Jun 5, 2025)
Medium/@0x_mikee — 'The Future of Privacy on Solana: Why 2026 Changes Everything' (Jan 5, 2026)
Solana Developers Twitter — Privacy Hack winner announcement (Feb 10, 2026)
Gate.io — 'What is Arcium in 2025?' | gate.com
CoinOtag — 'Solana Privacy Protocol Vanish Raises $1M Pre-Seed Led by Colosseum' (Aug 2025)
Bitcoinist — 'Solana Rolls Out Confidential Balances For Private Transfers' (Apr 9, 2025)
DeepWiki — Lightprotocol/light-protocol repository documentation | deepwiki.com
Solana Compass — 'ZK Compression: Solana's Revolutionary Scaling Solution Explained'
JuCoin — 'Darklake: Mitigate Maximal Extractable Value In Solana DEXs' (May 2025)
With Bitcoin roots stretching back to 2016 and “full‑time” status since 2021, Silo blends data‑driven writing with cryptonative expertise. As Trojan’s communications lead, he covers everything from trading tools to referral rewards, meme coins to market caps. In his spare time he writes sci-fi and lore.
More Posts
© 2025 Trojan Trading. All rights reserved.
Systems Operational



