⚡ Built on Celestia DA · Sovereign SDK · Chain ID 9977

Privacy-first ZK Rollup
on Celestia

Transactions are private by default. Auditors verify compliance via zero-knowledge proofs — without seeing individual amounts.

View on GitHubRead Whitepaper
1.2ms
Transaction confirmations
30k+
User ops per second
9977
Chain ID
ZK
Privacy proofs

How Obscura works

Three layers working together to deliver privacy + compliance

🌐

Celestia DA Layer

All transaction data is posted to Celestia's data availability layer. Cheap, scalable, modular.

namespace: obscura--b
⚙️

Execution + Privacy

Sovereign SDK runtime with EVM compatibility. The Obscura Privacy Module adds a shielded pool with commitments and nullifiers.

EVM compatible
🔐

ZK Compliance Oracle

Auditors request a ZK proof of aggregate compliance. Total volume verified — individual transactions stay hidden.

SP1 proofs (Phase 2)
obscura-sdk example
import { ObscuraClient } from "@obscura-network/sdk";

const client = new ObscuraClient({ nodeUrl: "https://rpc.obscura.network" });

// Shield tokens into the private pool
const note = await client.shield({
  amount: 1000n,
  assetId: "0x" + "01".repeat(32), // USDC
});
// ✅ Shielded 1000 tokens — commitment saved privately

// Transfer privately (no public record of amounts/recipients)
const outputs = await client.transfer({
  inputNotes: [note],
  outputAmounts: [600n, 400n],
  outputPubkeys: [alicePubkey, bobPubkey],
});

// Generate compliance proof for auditor
const report = await client.generateComplianceReport({
  notes: outputs,
  regulatoryLimit: 10_000n,
});
// ✅ withinLimit: true — auditor verified without seeing individual amounts

Use Cases

💼

Corporate Payroll

Private salary payments. Compliance proof for auditors. Employees can't see each other's salaries.

🏛️

DAO Treasury

Execute budget allocations privately. Prevent front-running. ZK proof to governance participants.

📦

Supply Chain

B2B payments hidden from competitors. Regulators can audit without seeing business intelligence.

🏦

DeFi Institutional

Execute trades without market impact. Portfolio privacy with exchange compliance.

Tech Stack

Celestia
Data Availability
Sovereign SDK
Rollup Framework
EVM
Execution
SP1 (Succinct)
ZK Proofs
Ethereum
Settlement (Phase 2)
Rust
Core
TypeScript
SDK

Build on Obscura

Open source. MIT licensed. Testnet launching soon.

GitHub →Whitepaper