> ## Documentation Index
> Fetch the complete documentation index at: https://docs.saucerswap.finance/llms.txt
> Use this file to discover all available pages before exploring further.

# How SaucerSwap works

> How SaucerSwap's parts fit together on Hedera: AMM pools, the V3 order book, protocol fees, farm and LARI incentives, xSAUCE staking, and the DAO.

SaucerSwap is a decentralized exchange on the Hedera network. It combines three trading venues — the V1 constant-product AMM, the V2 concentrated-liquidity AMM, and the V3 order book — with a shared token economy built around SAUCE. Every venue feeds protocol fees into SAUCE buybacks, and the SaucerSwap DAO steers how emissions and treasury flows are allocated.

```mermaid theme={null}
flowchart TD
  T[Traders] -->|swap fees| V1[V1 constant-product pools]
  T -->|swap fees| V2[V2 concentrated liquidity pools]
  T -->|taker fees| V3[V3 order book]
  V1 -->|protocol fee share| B[BrewSaucer SAUCE buybacks]
  V2 -->|protocol fee share| B
  V3 -->|net order book fees| B
  B --> IP[Infinity Pool / xSAUCE holders]
  B --> DAO[DAO treasury]
  MC[Masterchef emissions] -->|farm rewards| V1LP[V1 liquidity providers]
  MC -->|LARI rewards| V2LP[V2 liquidity providers]
  MC -->|devcut share| IP
  DAO -. governance votes .-> MC
```

## Tokens on Hedera

Every asset on SaucerSwap is a Hedera Token Service (HTS) token. HBAR itself is not an HTS token, so the protocol wraps it into WHBAR behind the scenes; you always see plain HBAR in the interface. Before your account can hold a new token, Hedera requires a one-time token association, which the web app prompts for automatically.

## Three trading venues

| Venue                                    | Model                                             | Best for                              |
| ---------------------------------------- | ------------------------------------------------- | ------------------------------------- |
| [SaucerSwap V1](/protocol/saucerswap-v1) | Constant-product AMM (Uniswap V2 style)           | Legacy pools and long-tail pairs      |
| [SaucerSwap V2](/protocol/saucerswap-v2) | Concentrated-liquidity AMM (Uniswap V3 style)     | Capital-efficient liquidity provision |
| [SaucerSwap V3](/protocol/saucerswap-v3) | Central limit order book with on-chain settlement | Limit orders and CEX-style trading    |

When you swap in the web app, [routing](/protocol/routing) compares available V1 and V2 paths and quotes the trade for you. On the separate trade page, V3 orders can opt into AMM-backed settlement. The swap router does not currently compare AMM quotes with order-book quotes.

## Fees and buybacks

Traders pay a fee on every trade: a percentage of each AMM swap, or a taker fee on order-book fills. Most of each AMM fee goes to liquidity providers, while protocol fee-switch revenue and net V3 fees fund SAUCE buybacks through BrewSaucer. The ratified economic destinations differ by revenue source; see [V3 fees and rebates](/protocol/saucerswap-v3/fees) and [SAUCE tokenomics](/tokenomics/overview) for the allocation matrix.

## Liquidity incentives

The Masterchef contract mints SAUCE on a fixed schedule and distributes it as liquidity incentives:

* **V1 yield farm** — LP token stakers earn SAUCE (and, when enabled, HBAR) according to [farm weights](/protocol/saucerswap-v1/farm-weights) set by governance.
* **V2 LARI** — the Liquidity-Aligned Reward Initiative rewards V2 positions automatically each two-week epoch, weighted by in-range liquidity. See [LARI weights](/protocol/saucerswap-v2/lari-weights).

## Single-sided staking

Staking SAUCE in the Infinity Pool issues xSAUCE, a receipt token whose SAUCE conversion rate rises over time as fee revenue, emissions, and HBAR staking rewards compound into the pool. xSAUCE also carries voting power and unlocks V3 fee discounts. See [Single-sided staking](/protocol/single-sided-staking).

## Governance

SAUCE and xSAUCE holders govern the protocol through token-weighted, on-chain voting: proposals start as a Request for Comment on the [governance forum](https://gov.saucerswap.finance/), then advance through Proposal and Election votes on the web app's govern page. The DAO controls farm weights, LARI campaigns, pool creation, tokenomics changes, and treasury flows. See [Governance](/governance/overview).

## Read more

<CardGroup cols={2}>
  <Card title="Swap tutorial" icon="arrow-right-arrow-left" href="/tutorials/swap">
    Make your first swap in the web app, step by step.
  </Card>

  <Card title="SaucerSwap V3" icon="book-open" href="/protocol/saucerswap-v3">
    Understand the order book: off-chain matching, on-chain settlement, and order types.
  </Card>

  <Card title="Single-sided staking" icon="layer-group" href="/protocol/single-sided-staking">
    Stake SAUCE for xSAUCE and earn a share of protocol revenue.
  </Card>

  <Card title="SAUCE tokenomics" icon="coins" href="/tokenomics/overview">
    Supply, emissions, and how protocol fees flow back to SAUCE.
  </Card>
</CardGroup>
