announcements

SIP Roadmap 2026: The Path to Privacy Standard

SIP roadmap M17-M22: Same-chain privacy on Solana & Ethereum, proof composition, and the path to Web3 privacy standard.

11 min read

The foundation is complete. The question now is: what comes next?

SIP Protocol has shipped 16 milestones across three phases — cryptographic primitives, multi-chain SDK, compliance layer. Over 6,600 tests. A Zypherpunk hackathon win. Production-ready code.

But building infrastructure is not enough. The next six milestones determine whether SIP becomes the privacy standard for Web3 or just another privacy tool. This is where the real work begins.

This post explains milestones M17 through M22 — what we are building, why each matters strategically, and how they position SIP as the privacy layer the industry adopts by default.

The Big Picture

Before diving into individual milestones, here is how they connect:

Phase 4: Same-Chain Expansion
├── M17: Solana Same-Chain Privacy (Anchor program)
└── M18: Ethereum Same-Chain Privacy (Solidity contracts)

Phase 5: Technical Moat
├── M19: Mina Integration & Proof Research
├── M20: Technical Moat Building
├── M21: Standard Proposal (SIP-EIP)
└── M22: Institutional + Agent Custody

The strategy is sequential:

  1. M17-M18 capture the same-chain market (10-20x larger than cross-chain)
  2. M19-M20 build technical moat through proof composition
  3. M21 formalizes SIP as the industry standard
  4. M22 enables enterprise and AI agent adoption

Each milestone builds on the previous. Let us examine each in detail.


M17: Solana Same-Chain Privacy

Target: Q1-Q2 2026 Status: Active development

Why Solana First?

Solana has the strongest demand signal for privacy. PrivacyCash (a Tornado Cash-style mixer) has processed over $160M in private transfers since August 2025. The market exists. But pool mixing has fundamental limitations that SIP’s cryptographic approach solves.

SIP advantages over pool mixing:

AspectPool Mixing (PrivacyCash)SIP Protocol
Amount hidingPool anonymity setPedersen commitments (mathematical)
Any amountYes (recent)Yes (always)
Amount correlationVulnerableCryptographically immune
Privacy guaranteeDepends on pool sizeConstant regardless of adoption
ComplianceAuditor keysViewing keys (finer granularity)

What We Are Building

Core Anchor Program:

  • shielded_transfer instruction — send with hidden amounts
  • claim_transfer instruction — recipient claims funds
  • On-chain Pedersen commitment verification
  • Ed25519 stealth address support (native to Solana)

ZK Integration:

  • Noir circuits compiled to Solana-verifiable format
  • Sunspot ZK verifier pipeline (Noir to Solana)
  • Three proof types: funding, validity, fulfillment

SDK Updates:

  • sip.solana.shieldedTransfer() API
  • Ed25519 stealth address scanning
  • Helius/QuickNode/Triton RPC provider support

Jupiter DEX Integration:

  • Private swaps through Jupiter aggregator
  • Hidden swap amounts with viewing key disclosure
  • Compliant privacy for DeFi

Technical Architecture

┌─────────────────────────────────────────────────────────────────┐
│                     USER APPLICATION                            │
│                (Wallet / DEX / Payment App)                     │
└──────────────────────────┬──────────────────────────────────────┘


┌─────────────────────────────────────────────────────────────────┐
│                   @sip-protocol/sdk                             │
│  ┌─────────────────┐  ┌─────────────────┐  ┌────────────────┐  │
│  │ Stealth Address │  │    Pedersen     │  │  Viewing Keys  │  │
│  │   (ed25519)     │  │  Commitments    │  │  (Disclosure)  │  │
│  └─────────────────┘  └─────────────────┘  └────────────────┘  │
└──────────────────────────┬──────────────────────────────────────┘


┌─────────────────────────────────────────────────────────────────┐
│              SIP SOLANA ANCHOR PROGRAM                          │
│  ┌─────────────────┐  ┌─────────────────┐  ┌────────────────┐  │
│  │ shielded_transfer│ │  claim_transfer │  │  ZK Verifier   │  │
│  │   instruction    │ │   instruction   │  │   (Sunspot)    │  │
│  └─────────────────┘  └─────────────────┘  └────────────────┘  │
└──────────────────────────┬──────────────────────────────────────┘


┌─────────────────────────────────────────────────────────────────┐
│                    SOLANA BLOCKCHAIN                            │
└─────────────────────────────────────────────────────────────────┘

Success Metrics

  • Anchor program deployed to devnet
  • SDK API functional with real transactions
  • 100+ E2E tests passing
  • Jupiter integration demo working
  • Developer documentation published

M18: Ethereum Same-Chain Privacy

Target: Q2 2026 Depends on: M17 (patterns transfer from Solana)

Why Ethereum After Solana?

  1. Pattern reuse: M17 establishes architecture patterns. M18 adapts them to EVM.
  2. L2 opportunity: Base, Arbitrum, Optimism have massive DeFi activity.
  3. Compliance narrative: Coinbase (Base) cares deeply about compliance — viewing keys align perfectly.

What We Are Building

Solidity Contracts:

  • shieldedTransfer() function
  • claimTransfer() function
  • On-chain Pedersen verification via alt_bn128 precompile
  • EIP-5564 compliant stealth addresses

L2 Deployment Strategy:

PriorityL2Rationale
1BaseCoinbase compliance alignment
2ArbitrumLargest TVL ($18B+)
3OptimismOP Stack code reuse
4+zkSync, Linea, ScrollFuture expansion

DEX & Relayer Integration:

  • Uniswap integration for private swaps
  • 1inch aggregator support
  • Gelato/ERC-4337 gas abstraction (users pay in any token)

Technical Differences from Solana

AspectM17 (Solana)M18 (Ethereum)
LanguageRust (Anchor)Solidity (Foundry)
Curveed25519secp256k1
PrecompilesNone (custom)alt_bn128 (native)
Gas modelCompute unitsGas (EIP-1559)
DEXJupiterUniswap/1inch

Success Metrics

  • Solidity contracts deployed to Sepolia testnet
  • 3 Tier-1 L2s supported (Base, Arbitrum, Optimism)
  • 80+ E2E tests passing
  • Gas under 200K per shielded transfer
  • Integration guide published

M19: Mina Integration & Proof Research

Target: Q3 2026 Focus: Building the technical moat foundation

Why Mina?

Mina Foundation sponsored the Zypherpunk hackathon where SIP won $6,500. Beyond the relationship, Mina’s technology aligns with SIP’s proof composition vision:

  • Kimchi proof system: Efficient recursive proofs
  • 22KB blockchain: Succinct verification
  • Privacy-native: ZK from the ground up

Three Parallel Research Tracks

Track A: Mina Protocol Integration

  • Integrate Mina Kimchi proof system
  • Explore zkApp capabilities
  • Apply for Mina Foundation grant ($50-100K)

Track B: Zcash Cross-Chain Route

  • Integrate Zcash shielded pool for maximum privacy
  • Build cross-chain routing: SOL → ZEC → NEAR
  • Evaluate LayerZero for bridging
  • New SDK API: sip.crossChainPrivate()

Track C: Proof Composition Research

  • Halo2 + Kimchi compatibility analysis
  • Prototype composing proofs from multiple systems
  • Feasibility report for production implementation

The Proof Composition Vision

This is SIP’s technical moat. Instead of building one proof system, we compose proofs from multiple specialized systems:

┌─────────────────────────────────────────────────────────────────┐
│                    PROOF COMPOSITION                            │
│                                                                 │
│   Zcash (Halo2)  ──┐                                           │
│   Privacy proofs   │                                           │
│                    ├──►  SIP Composed Proof  ──►  Verification │
│   Mina (Kimchi)   ──┤                                           │
│   Succinct verify  │                                           │
│                    │                                           │
│   Noir (Plonk)   ──┘                                           │
│   Custom circuits                                               │
└─────────────────────────────────────────────────────────────────┘

Why this matters: Any competitor would need to replicate integrations with multiple proof systems. This is not a weekend project. It is a multi-year engineering effort.

Success Metrics

  • Mina Kimchi integration working
  • Zcash cross-chain route functional
  • Proof composition prototype demonstrated
  • Mina Foundation grant secured
  • Feasibility report published

M20: Technical Moat Building

Target: Q3-Q4 2026 Focus: Production implementation of the moat

Core Components

1. Proof Composition v1:

  • Production implementation of M19 research
  • Compose Zcash privacy + Mina verification
  • Benchmark performance and costs

2. Quantum-Resistant Storage:

  • Winternitz Vault integration (WOTS+ signatures)
  • Post-quantum secure stealth addresses
  • Future-proof key storage

3. Oblivious Sync Service:

  • Tachyon-inspired private synchronization
  • Users sync without revealing which transactions are theirs
  • Critical for mobile and light clients

4. Multi-Language SDKs:

  • Python SDK (data science, scripting)
  • Rust SDK (performance-critical applications)
  • Go SDK (infrastructure, backends)

5. Protocol Revenue:

  • NEAR fee contract for sustainable funding
  • Governance token design
  • Fee distribution mechanism

The Moat Explained

After M20, SIP will have:

  1. Same-chain privacy on Solana + Ethereum (M17-M18)
  2. Cross-chain privacy via Zcash routing (M19)
  3. Proof composition from multiple systems (M19-M20)
  4. Quantum resistance for future-proofing (M20)
  5. Multi-language SDKs for broad adoption (M20)

Replicating this stack would take competitors 2-3 years. By then, SIP will be the established standard.


M21: Standard Proposal (SIP-EIP)

Target: Q4 2026 Key Date: ETH Denver 2027

Vision

“SIP is to privacy what HTTPS is to the web.”

HTTPS did not win because it was the best encryption. It won because it became the standard. M21 positions SIP as the standard for Web3 privacy.

What We Are Building

Formal Specification:

  • SIP-EIP (Ethereum Improvement Proposal format)
  • Cross-chain privacy standard
  • Reference implementation documentation

Compliance Framework:

  • Viewing key disclosure standard
  • Audit trail specification
  • Regulatory reporting templates

Industry Engagement:

  • Form working group (10+ members)
  • Submit to Ethereum Magicians forum
  • Present at ETH Denver 2026/2027
  • Wallet provider outreach (Phantom, MetaMask, Rainbow)
  • DEX partnership strategy

Why Standards Matter

Standards create network effects:

  1. Wallet adoption: One integration works everywhere
  2. Developer adoption: Learn once, build everywhere
  3. Regulatory clarity: Known compliance patterns
  4. Ecosystem lock-in: Switching costs increase

If SIP becomes the standard, every privacy implementation will use SIP primitives. That is the endgame.

Success Metrics

  • SIP-EIP draft published
  • Working group formed (10+ members)
  • 3+ wallet providers committed
  • ETH Denver presentation delivered
  • Adoption metrics framework live

M22: Institutional + Agent Custody

Target: 2027 Focus: Enterprise adoption and AI agent compliance

The Institutional Opportunity

Institutions want privacy but need compliance. This is not a contradiction — it is SIP’s competitive advantage.

Target Custodians:

  • Fireblocks (largest institutional custodian)
  • Anchorage Digital (first federally chartered crypto bank)
  • BitGo (institutional-grade custody)
  • Coinbase Prime (exchange + custody)

What They Get:

  • Viewing key APIs to monitor client transactions
  • Compliance reporting tools
  • Audit trail generation
  • Balance proofs for regulators

What They Cannot Do:

  • Spend client funds
  • See other clients’ transactions
  • Compromise client privacy beyond authorized scope

The Agent Privacy Revolution

This is where SIP gets ahead of the market. a16z’s “Big Ideas 2026” introduced the “Know Your Agent” thesis:

Non-human identities need cryptographic credentials linking agents to principals.

AI agents will manage significant treasury operations by 2027. They need:

  1. Scoped viewing keys: See only what they need
  2. Time-bound access: Keys expire automatically
  3. Audit trails: Cryptographic proof of agent actions
  4. Verification: Prove agent is authorized without revealing principal

SIP is building this infrastructure now, before the market demands it.

Technical Implementation

Agent Viewing Key Delegation:

// Principal grants agent scoped access
const agentKey = sip.delegateViewingKey({
  agent: agentPublicKey,
  scope: ['treasury:read', 'transactions:history'],
  expiry: '2027-01-01',
  maxAmount: 1000000, // $1M limit
})

// Agent can now view authorized transactions
const history = await sip.viewTransactions(agentKey)

Enterprise Features:

  • SSO integration
  • Multi-tenant architecture
  • SLA documentation
  • Compliance dashboard

Success Metrics

  • Fireblocks integration live
  • Anchorage integration live
  • Agent viewing key delegation working
  • 5+ enterprise customers
  • $1M+ AUM under SIP privacy

The Complete Picture

Here is how all milestones connect:

2026 Q1-Q2                    2026 Q3-Q4                    2027
     │                             │                          │
     ▼                             ▼                          ▼
┌─────────┐                  ┌─────────┐                ┌─────────┐
│   M17   │                  │   M19   │                │   M21   │
│ Solana  │──────────────────│  Mina   │────────────────│ SIP-EIP │
│ Privacy │                  │Research │                │Standard │
└────┬────┘                  └────┬────┘                └────┬────┘
     │                             │                          │
     ▼                             ▼                          ▼
┌─────────┐                  ┌─────────┐                ┌─────────┐
│   M18   │                  │   M20   │                │   M22   │
│   EVM   │──────────────────│Technical│────────────────│Enterprise│
│ Privacy │                  │  Moat   │                │+ Agents │
└─────────┘                  └─────────┘                └─────────┘

Same-Chain Foundation ──────► Technical Moat ──────► Market Leadership

The flywheel:

  1. Same-chain privacy creates adoption
  2. Adoption funds moat development
  3. Moat prevents competition
  4. Standard status creates lock-in
  5. Enterprise adoption generates revenue
  6. Revenue funds continued innovation

What You Can Do

Developers

  • Star us on GitHub
  • Try the SDK: npm install @sip-protocol/sdk
  • Build integrations and provide feedback
  • Contribute to open issues (especially M17)

Projects

  • Integrate SIP for private transactions
  • Join the working group (M21)
  • Provide feedback on the standard proposal

Investors

Everyone

  • Share this post
  • Join the conversation
  • Help us make privacy the standard for Web3

Conclusion

SIP Protocol is not just building another privacy tool. We are building the privacy standard for Web3.

M17-M18 capture the same-chain market. M19-M20 create a defensible moat. M21 formalizes the standard. M22 enables enterprise scale.

By the time competitors catch up to where we are today, we will be two years ahead with proof composition, multi-chain support, and institutional integrations.

Privacy is not a feature. It is infrastructure. And SIP is building it.


For detailed milestone tracking, see the full roadmap or GitHub issues.