The Universal Privacy Layer for Solana.
Stealth Rails is a developer-first infrastructure platform that enables one-click, private-by-default transactions on Solana. Powered by Arcium (Confidential Computing), we abstract the complexity of Zero-Knowledge Proofs and Multi-Party Computation into a single, easy-to-use SDK.
Status: 🟢 Live on Devnet | Backend: Real Arcium Network
We are not just a wallet. We are the Stripe for Privacy.
Add privacy to any dApp in 3 lines of code.
import { StealthRails } from '@stealth-rails/sdk';
const rails = new StealthRails(connection, wallet);
// 🛡️ Shield & Transfer in one atomic step (MPC)
await rails.sendPrivate({
to: "Giw...",
amount: 10
});A dedicated "Incognito Mode" for payments. Send a link to get paid privately without revealing your main treasury history.
- Try it: Navigate to
/pay
See how major protocols (like Jupiter) can integrate Stealth Rails.
- Try it: Navigate to
/dexand toggle "Shield Output".
graph TD
subgraph "Client-Side"
A["dApp / User"] --> B{StealthRails SDK};
end
subgraph "On-Chain (Solana)"
B --> C["Arcium Shielded Pool (PDA)"];
end
subgraph "Off-Chain (Arcium Network)"
C -- Encrypted Data --> D((Computation Swarm MPC));
D -- ZK Proof --> C;
end
style A fill:#f9f,stroke:#333,stroke-width:2px,color:#000
style B fill:#bbf,stroke:#333,stroke-width:2px,color:#000
style C fill:#ccf,stroke:#333,stroke-width:2px,color:#000
style D fill:#f66,stroke:#333,stroke-width:2px,color:#000
Core Components:
- StealthRails Class: The main entry point. It manages the connection to the Arcium Reader Node and the Solana RPC.
- Arcium Executing Pool: A Program-Derived Address (PDA) on Solana that acts as the "Shielded Pool".
- Computation Swarm: A network of MPC nodes that listen for encrypted inputs and perform validity proofs off-chain.
- Node.js 18+
- Solana Wallet (Phantom/Backpack) on Devnet
# 1. Install Dependencies
cd web
npm install
# 2. Run the Platform
npm run dev- Payroll: DAOs paying contributors without doxxing their salaries.
- Alpha: Traders entering positions without being copy-traded.
- Commerce: Merchants accepting crypto without revealing their total revenue.
Built with ❤️ using Arcium & Solana.