The Cold Start Problem¶
New exchanges face the same circular problem: traders want liquidity before they trade, and liquidity providers want order flow before they commit capital. In on-chain FX, that loop is even harder to break because liquidity is fragmented by corridor. EUR/USD, USD/SGD, GBP/USD, and more exotic pairs each need their own dependable depth profile.
This means Sera cannot rely on one mechanism to do everything. The protocol needs a way to launch corridors with immediate executable liquidity, while still creating room for competitive market makers to tighten spreads over time.
Why It Is Harder in FX¶
Spot crypto venues can sometimes get away with bootstrapping around a small number of flagship pairs. FX is different. Each corridor has its own natural users, treasury flows, volatility pattern, and market-maker appetite. A venue can look healthy on one pair and still be functionally illiquid on the next ten.
That is why Sera treats liquidity as a layered system rather than a single pool problem. The goal is not just to show TVL. The goal is to make real size executable, corridor by corridor, while letting spreads improve as organic flow arrives.
Sera's Liquidity Model¶
Current Deployment
The live protocol currently relies on the CLOB for executable liquidity and on-chain settlement. The FCICAMM layer described below is the planned follow-on liquidity design from the roadmap, not a contract that is live in the current deployed stack.
Sera's target liquidity model combines two complementary sources of liquidity:
| Layer | Source | Spread Profile | Primary Role |
|---|---|---|---|
| CLOB | Active market makers | Tightest available | Price discovery and competitive inside markets |
| FCICAMM | Passive indexed liquidity | Wider, oracle-anchored | Backstop depth, new corridor bootstrap, and large-size absorption |
The CLOB is where active participants compete. It creates the best available inside price and keeps spreads honest. In the planned full model, FCICAMM sits behind that competitive layer as structured passive inventory, making sure Sera still has executable liquidity when a corridor is new, market makers are thin, or order sizes exceed the immediately available book.
Price Spectrum¶
graph TD
subgraph "Liquidity Spectrum"
direction LR
P1["FCICAMM Buy Wall<br/>(Oracle Quote)"]
P2["CLOB Bids<br/>(Active MMs)"]
Mid(("Mid Market"))
P3["CLOB Asks<br/>(Active MMs)"]
P4["FCICAMM Sell Wall<br/>(Oracle Quote)"]
P1 --- P2 --- Mid --- P3 --- P4
end
style P1 fill:#b7f7d1,stroke:#0f172a,stroke-width:1.5px,color:#000
style P2 fill:#defce8,stroke:#0f172a,stroke-width:1px,color:#000
style Mid fill:#ffffff,stroke:#0f172a,stroke-width:3px,color:#000
style P3 fill:#defce8,stroke:#0f172a,stroke-width:1px,color:#000
style P4 fill:#b7f7d1,stroke:#0f172a,stroke-width:1.5px,color:#000 In normal conditions, traders should execute against the CLOB first because that is where competition lives. In the target design, FCICAMM becomes more important at the edges: new corridors, larger tickets, or periods when active liquidity temporarily thins out.
How Liquidity Can Build Over Time¶
- FCICAMM rollout: Once introduced, FCICAMM can provide reliable backstop liquidity so a corridor is tradable from the start.
- Market-maker entry: Professional makers quote tighter inside spreads on the CLOB once they see executable flow.
- Volume concentration: More users route into the corridor because pricing improves and fills become more predictable.
- Depth compounding: The CLOB handles the competitive inside market while FCICAMM can continue to absorb excess size and support continuity.
This is how Sera plans to address the cold start problem without depending only on incentives or hoping passive liquidity magically discovers price on its own.
Liquidity Depth Example¶
Note
The deeper outer bars represent the planned FCICAMM liquidity layer anchored to oracle pricing, while the inner bars represent active orderbook liquidity competing closer to the mid-market price.