Trustless OTC marketplace
On-chain escrow accounts let two desks settle nine-figure trades atomically without trusting a centralised matcher. Partial fills, dark-pool mode, and RFQ flows are all native primitives — not bolt-ons.
Moby Market is the open-source Solana infrastructure for executing nine and ten-figure orders without front-running, slippage, or strategy leakage. OTC matching, TWAP/VWAP execution, zero-knowledge privacy pools, and intent-based solvers — all in audit-ready Rust.
// 100M SOL unwind, 48h window, anti-detection on let order = TWAPOrder { trader, token_in: SOL, token_out: USDC, total_amount: 100_000_000, time_window: 48 * 3600, num_splits: 288, randomness_factor: 42, price_deviation_limit: 25, min_output_per_interval: _, }; submit_intent(order).await?; // → 0.08% realised slippage // → routed across 12 venues // → zero observable pattern
Every feature exists because retail-grade DeFi loses money for whales. Each one is a real Rust crate in the workspace, not a marketing bullet.
On-chain escrow accounts let two desks settle nine-figure trades atomically without trusting a centralised matcher. Partial fills, dark-pool mode, and RFQ flows are all native primitives — not bolt-ons.
Execution algorithms slice parent orders into hundreds of randomised child orders timed against natural market volume. A tunable randomness factor (0–100) defeats pattern detection by adversarial bots.
Pedersen-committed amounts, stealth addresses, and a choice of Groth16, PLONK, STARKs, or Bulletproofs. Strategy stays private; compliance stays provable via selective disclosure.
Post a constrained trading intent; a network of solvers competes via commit-reveal to execute it. On-chain reputation rewards solvers who fill at the tightest price with the least leakage.
Liquidity is aggregated across Serum, Raydium, Orca, Phoenix, Lifinity, and custom AMMs. Up to four-hop routes and dynamic split execution adapt mid-flight to liquidity shifts.
CrossChainOrder primitives integrate Wormhole and LayerZero so a single order can settle across Solana, Ethereum, Arbitrum, and Base with sub-five-minute finality.
Anchor 0.29 on solana-program 1.16, with release builds enforcing overflow checks, LTO, and single-codegen-unit determinism. Critical paths target formal verification rather than bug bounties alone.
The Cargo workspace is intentionally small. Each crate owns one concern; the controller orchestrates.
Shared structs — TradingIntent, OTCEscrow, TWAPOrder, VWAPOrder, PrivateTransaction.
Fixed-point arithmetic, big-int helpers, Pedersen commitments. Built on rust_decimal and num-bigint.
Pyth / Switchboard / Chainlink aggregation with TWAP staleness checks.
TWAP, VWAP, intent processing, smart routing across Serum, Raydium, Orca, Phoenix, Lifinity.
Groth16 / PLONK / STARKs / Bulletproofs verification and confidential-transfer plumbing.
Cross-chain primitives over Wormhole and LayerZero for atomic cross-chain settlement.
Honest summaries of the venues whales already use. Each card links to a detailed comparison.
Hashflow streams bilateral quotes from market makers to retail and pro traders across EVM chains. It is the closest analogue to Moby Market on the RFQ axis but stops short of native algos, privacy pools, and Solana settlement.
CoW pioneered the solver-competition model on Ethereum. Moby Market shares that DNA and extends it to Solana with privacy pools, explicit RFQ, and execution-algorithm intent types beyond best-of-N pricing.
Paradex is a Starknet-native perpetuals venue with a privacy story. Moby Market focuses on spot and cross-asset OTC for whale unwinds, with execution algos rather than a fully matched orderbook.
Renegade uses multi-party computation to hide orders pre-trade. Moby Market trades MPC for zero-knowledge proofs, runs on Solana, and adds RFQ, TWAP/VWAP, and cross-chain settlement as first-class features.
Jupiter is the dominant Solana swap aggregator for retail flow. Moby Market complements Jupiter at sub-million sizes but is built for orders where slippage, MEV, and strategy leakage make naive aggregation unusable.
Long-form pieces written by the team and the contributor network.
Three years after the institutional-DeFi narrative started, what actually got built, what stalled, and where the surviving infrastructure is converging. An industry view from the people writing the Rust.
Walk through a realistic large-position unwind on Solana from intake to settlement — RFQ check, TWAP scheduling, privacy mode, route splitting, and post-trade reporting — using the actual primitives in the moby-market workspace.
Both protocols offer request-for-quote at institutional sizes — but only one is built around RFQ alone. A look at where the EVM-first quote-streaming model wins, and where a Solana-native execution stack with privacy and algos pulls ahead.
If yours isn't here, open an issue or reach out — answers get folded back into the docs.
Yes. The full Rust workspace — including the OTC, execution, privacy, oracle, and trading crates — is MIT-licensed and lives at github.com/cryptuon/mobymarket. The on-chain programs and the off-chain Rust services are both auditable.
The reference implementation targets Solana via Anchor 0.29 and solana-program 1.16. Cross-chain order primitives (CrossChainOrder) integrate Wormhole and LayerZero so settlement can extend to Ethereum, Arbitrum, and Base.
Three mechanisms. TWAP/VWAP shred the parent order into hundreds of timing-randomised children. Smart routing splits across Serum, Raydium, Orca, Phoenix, and Lifinity. The OTC marketplace lets the entire block clear bilaterally without ever touching a public pool.
Solver submissions use a commit-reveal scheme, intent payloads can be routed through private mempools, and stealth-mode orders are mixed with other traders so that observers see noise rather than a coherent strategy.
Amounts are hidden by Pedersen commitments. Sender and receiver addresses are masked by stealth addresses on both sides. Privacy pools enforce a minimum anonymity set (default 100) and a configurable withdrawal delay so timing analysis fails.
Yes. The compliance module supports selective disclosure: a trader can prove accreditation, jurisdiction, or KYC status without revealing identity or strategy. Auditors get a verifiable trail; competitors get nothing.
The protocol is free to use at the smart-contract level. Self-hosted deployments cost only network fees. The Moby Market team offers a paid engagement tier for integration, custom audits, and SLA-backed operations — see /pricing.
Solvers stake collateral, build on-chain reputation across executed intents, and compete in commit-reveal auctions. Poor performance and griefing burn reputation; the design intentionally rewards correctness, not scale.
Read the Rust workspace, run it against devnet, and bring your size on-chain. The whole stack is MIT-licensed — pay zero to use it, pay only if you want our team in the room.