Skip to main content
SaucerSwap V3 is a central limit order book (CLOB) on Hedera, live on mainnet since June 12, 2026. It brings CEX-style trading — limit orders, market orders, live depth, and charting — to the trade page of the web app, while keeping assets in your own wallet: you sign orders, and settlement happens on-chain. V3 was audited by Halborn on May 18, 2026, ahead of launch; see Audits. Trading an order book carries risks that AMM swaps do not — read the V3 Orderbook Risk Notice before trading.

Architecture: off-chain matching, on-chain settlement

V3 uses a hybrid model:
  1. You sign an order, not a transaction. Orders are structured, signed messages (EIP-712 typed data or a Hedera personal-sign payload). Your tokens stay in your wallet; you grant a token allowance once per token.
  2. Matching happens off-chain. A purpose-built matching engine maintains the book and matches orders with millisecond latency, which is how the book achieves exchange-grade responsiveness.
  3. Settlement happens on-chain. Matched orders are submitted to an on-chain settlement contract (the reactor) on Hedera and settle atomically. The reactor verifies signatures and enforces the signed order parameters, and it remains the source of truth for order state.
This design means placing and canceling orders costs no per-trade gas; you pay fees only on fills. It also means displayed order status can briefly lag or differ from on-chain state — the risk notice describes these failure modes in detail.
Lifecycle of a SaucerSwap V3 order: build and sign, submit to the book, off-chain matching, on-chain settlement through the reactor, and account events

A V3 order from signing to on-chain settlement.

Order types

Orders can be canceled at any time before they fill, at no cost. Cancellation requests are asynchronous — an accepted cancel is not yet a completed cancel — and advanced users can also cancel directly on-chain through the reactor. For exact order parameters, deadlines, and limits, see the Orderbook API reference.

AMM interplay

V3 does not replace the AMMs — it sits alongside them, and the systems reinforce each other:
  • AMM backstop. Markets can enable AMM routing, letting an order settle against V1 and V2 pool liquidity when the book alone cannot fill it at a better price. Orders opt into AMM-backed settlement; execution stays within your signed parameters either way.
This is a one-way settlement backstop for V3 orders, not a swap-router comparison between AMM and order-book quotes. Governance thread 385, proposal 6285, and final election 6296 ratified cross-venue comparison on July 22, 2026, but it is not verified as deployed. See Swap routing for the distinction.

Market status and halts

Each market carries an independent status (for example, OPEN or CLOSED) and isMarketHalted flag. A market can therefore be marked open while matching is halted. SaucerSwap Labs can halt and reopen markets for legal, security, or operational reasons. Check both fields before trading. Live values are visible on the trade page and in GET /books; see the market data reference. All five public mainnet books reported OPEN and isMarketHalted: 0 when checked July 29, 2026, but this snapshot can change.

Self-custody and trust assumptions

V3 is non-custodial: SaucerSwap Labs never holds your keys or tokens, and the reactor only moves funds within the parameters you signed. The order book infrastructure itself (order entry, matching, market data, APIs) is operated off-chain by SaucerSwap Labs, so availability and displayed state depend on that infrastructure. Review every wallet prompt and signed order before approving, and read the V3 Orderbook Risk Notice for the complete risk inventory.

Next steps

Trade on the order book

Place your first limit or market order on the trade page.

V3 fees and rebates

Taker fees, maker rebates, and xSAUCE fee discounts.

Orderbook API

Build bots and integrations against the V3 API.

V3 Orderbook Risk Notice

Understand the risks before you trade.