Econia

Econia is Aptos Network’s permissionless on-chain central limit order book (CLOB) infrastructure — comparable to DeepBook on Sui — built as an open-source shared object that any Aptos protocol can integrate to add orderbook trading capabilities without building matching engine infrastructure from scratch, leveraging Aptos’s parallel execution to process multiple order books simultaneously.


Overview

Econia is the order book infrastructure layer for Aptos — the equivalent of DeepBook (Sui), Serum/OpenBook (Solana), or the native Kujira order matcher. Rather than building another AMM, Econia implements a full central limit order book as a set of Move modules that any developer can call, enabling limit orders, market orders, maker/taker fee models, and price-time priority matching — all on-chain without a centralized off-chain matching engine. Econia is maintained as an open protocol with no proprietary lock-in, designed to become the foundational liquidity primitive for the Aptos DeFi ecosystem.


CLOB Architecture on Aptos

The protocol is built around the following components.

Why CLOB on Move/Aptos?

Ethereum mainnet CLOBs historically failed because:

  • Gas cost of placing/canceling orders was prohibitively expensive
  • Block time (~12s) too slow for real-time trading

Aptos’s Move VM enables CLOB:

  • Low transaction fees (~$0.001 per order)
  • Sub-second block time (400ms)
  • Move’s parallel execution — multiple order books can match simultaneously (independent state)

Core Components

Price Levels: Econia maintains a sorted list of price levels per market. Each price level is a queue of resting limit orders at that price.

Order Priority: Within each price level, time priority (earlier order matched first — standard FIFO CLOB).

Matching Engine: Written in Move — when a market order arrives, it sweeps across price levels until filled or order exhausted.

Markets: Any token pair can have an Econia order book — permissionless market creation.


Key Features

The main features are described below.

Permissionless Market Creation

  • Any developer can create an Econia market for any two Move tokens
  • No governance gate — anyone can add a trading pair
  • Market parameters: tick size (minimum price increment), lot size (minimum order size), minimum order value

Maker/Taker Model

  • Market orders are takers (pay taker fee to maker)
  • Limit orders that rest in the book are makers (receive maker rebate)
  • Fee rates customizable per market (set at market creation)
  • Incentivizes passive market making on Econia books

Parallel Execution

  • Multiple Econia markets (e.g., APT/USDC and BTC/USDC) execute independently
  • Aptos’s parallel execution processes both markets’ orders simultaneously when they don’t share state
  • Dramatically higher throughput than sequential order matching on competing chains

Integration Model

Unlike Liquidswap or Thalaswap (which are end-user DEXes), Econia is primarily developer infrastructure:

  • DEX frontends can build on Econia — create a user-facing trading interface backed by Econia matching engine
  • Protocols can integrate for limit orders — an options protocol can route exercise orders through Econia CLOB
  • Aggregators can route through Econia — Panora includes Econia market book depth in routing calculation
  • No frontend monopoly — any app can display and interact with the same shared Econia order books

Sources


Related Terms