How an order book works
A market pairs a base token with a quote token. In SAUCE/USDC, for example, you buy or sell SAUCE at a price expressed in USDC per SAUCE. A buy order spends the quote token to receive the base token; a sell order does the reverse.
A large trade may fill against several orders at different prices. A displayed price does not mean your entire trade can execute at that price; available depth and your order’s price limits determine what can fill. See Slippage for the difference between a quote and the execution you accept.
Makers and takers
A maker adds an order that can be filled by another trader. A taker removes available liquidity by trading against it. The distinction depends on how an order fills, not simply whether you selected a limit or market order. A limit order priced to cross the opposite side of the book can take liquidity immediately. Its unfilled remainder may rest on the book, where later fills act as maker fills. Maker rebates, where configured, are funded by taker fees rather than SAUCE emissions; see Fees and rebates.Order types
The trading tutorial covers the web app. Maker-only and OCO parameters are documented in the Orderbook API; do not assume every API option is exposed in the interface. OCO links are managed off-chain, so they do not provide an atomic on-chain guarantee that only one order can fill.
Off-chain matching, on-chain settlement
V3 separates order entry from settlement:- You approve the required token allowance and sign an order message containing its trade parameters.
- The off-chain matching engine maintains the book and finds fills.
- The settlement contract, called the reactor, verifies signatures and executes the matched trades atomically on Hedera.
A V3 order from signing to on-chain settlement.
Order book and AMM liquidity
V3 operates alongside V1 and V2. Where enabled, an order can opt into AMM-backed settlement within its signed parameters. This backstop lets V3 orders use pool liquidity without turning the order book into an AMM pool. The swap page compares an eligible V3 quote with the best V1/V2 AMM quote and selects one venue for the trade. This quote comparison is separate from AMM-backed settlement within V3. See Swap routing for the selection rules.Cancellation and settlement risks
An order can be partially filled before you cancel it; cancellation affects only what remains unfilled. An accepted cancellation request is not confirmation that matching or settlement has stopped. Check the final order and fill status before placing a replacement that could duplicate your trade. SaucerSwap Labs operates the off-chain order entry, matching, and market-data services. Availability depends on that infrastructure even though your tokens remain in your wallet until settlement. Audit coverage is specific to the reviewed contracts and versions; see Audits.Next steps
Trade on V3
Read the book, place an order, and follow its fills.
V3 markets
Understand market parameters, minimum orders, and trading availability.
V3 fees and rebates
Check trading fees, rebate limits, and xSAUCE discounts.
Manage V3 orders
Follow fills and cancel or replace open orders.