How the app routes a swap
The app compares the best V1/V2 AMM quote with an eligible V3 order-book quote. It selects one venue for the swap; it does not split a single swap between the order book and AMM pools. Within the AMM route, the router evaluates available paths from the input token to the output token. That route can be:- Direct. A swap through one V1 or V2 pool.
- Multi-hop. A swap routed sequentially through up to three V1 or V2 pools, either because no direct pool exists or because the indirect path prices better.
- Split route. A swap divided across multiple paths at the same time to improve executable output and reduce price impact.
Quoted output is an estimate as of quote time. Your slippage tolerance bounds the worst execution you will accept; the transaction reverts rather than fill beyond it.
The order book and AMM-backed settlement
The V3 order book has a separate, one-way AMM backstop. Where enabled, a V3 order can opt into settlement against AMM liquidity, subject to the order’s signed parameters. This backstop is distinct from the swap page’s comparison of complete venue quotes. See V3 markets for market availability and routing eligibility.For integrators
The smart order router is part of the SaucerSwap app and is not exposed as a public API. Integrators quote directly against the venues:Next steps
Swap tutorial
Make a swap and read the route details before confirming.
SaucerSwap V3
How AMM-backed settlement works on the order book.
Developer quickstart
Get a quote programmatically in under five minutes.