SyncSwap Aqua fees are bounded between a pool’s minimum and maximum, and they move toward the maximum as imbalance grows during volatile trading. That matters because the fee is only one part of the execution cost: the same price movement can also worsen the pool’s price impact and cause a tightly protected swap to revert.

SyncSwap Aqua is a liquidity-pool model for volatile and liquid-staking assets. It combines a Curve Finance-style two-crypto invariant with automated concentration around an internal price scale, rather than spreading liquidity evenly across every possible price. In calmer conditions, that concentration can make ordinary trades efficient. When buying or selling pushes the pool away from balance, the model responds through both its curve and its fee.

What changed from a fixed-fee pool

The important change is that an Aqua swap should not be treated as having one permanent fee rate. Older SyncSwap pool interfaces exposed a single swap-fee value, but Aqua requires fee data with a minFee, maxFee and gamma. The effective fee is calculated inside that interval from the pool’s current state and the direction of the trade.

This is different from the familiar Uniswap Protocol mental model, where a pool normally has a stated fee tier and the main moving cost is price impact. It is also different from assuming that “volatile market” means an external volatility oracle immediately raises the fee. Aqua does not need a published volatility index. Volatility reaches the fee through trading: rapid one-sided flow changes the pool’s balance distribution, and that imbalance moves the effective fee away from its midpoint.

The distinction is useful. Two Aqua pools can hold the same pair but produce different costs because their minimum, maximum and gamma settings differ, while the same pool can quote different fees for opposite directions. A buy that removes much of one asset is not economically identical to a sell that restores it. SyncSwap’s fee system also supports directional configuration, so the token entering and leaving the pool can matter independently of the headline pool setting.

Why the fee rises during a fast move

Aqua’s fee rises because a one-sided trade makes the remaining liquidity less comfortable for the next trade. The pool’s automated concentration is designed to keep more useful liquidity near the current market price, but that concentration has to adjust when the market moves. A rapid sequence of swaps can therefore produce two simultaneous effects: the curve offers a less favorable marginal price as inventory becomes unbalanced, and the dynamic fee moves toward its outer value.

Gamma controls how quickly that fee responds. A higher gamma makes the fee less volatile, meaning the effective rate changes more slowly as imbalance increases. The minimum and maximum still define the limits; gamma controls the path between them. This is why a trader should not infer the fee from a pair’s name, a previous transaction or a general Aqua default.

The design replaces a simple fixed-fee assumption with a state-dependent quote. It does not replace every other SyncSwap pool. Classic pools remain the broad, constant-product option for general assets, while Stable pools are built for assets expected to trade near parity. Aqua is the more relevant comparison when the alternatives are a volatile-asset Classic pool or a manually managed concentrated position similar in purpose to a Uniswap-style range.

The SyncSwap Aqua pool model is the part of the protocol to examine when a volatile pair needs concentrated liquidity that can rebalance automatically.

The limits that decide whether the swap completes

The transaction’s hard limit is not the fee setting; it is the router’s amountOutMin. SyncSwap quotes the expected output using the selected route, current pool state and effective fee. The user then supplies the least output they are willing to accept. If the pool shifts before execution and the result falls below that amount, the router reverts the transaction instead of completing it.

That limit combines several risks that are easy to confuse:

A swap can therefore fail with a sensible fee and a liquid pool. A narrow slippage limit may simply be lower than the output available after a sudden move. Conversely, raising the limit makes execution more likely but gives the transaction permission to accept a worse price. The limit is a choice about execution certainty, not a way to reduce the Aqua fee.