deepbook
Installation
SKILL.md
DeepBook: Market reads
Purpose
DeepBook v3 is Sui's shared order book. Mysten runs a free public indexer — no key, no wallet:
https://deepbook-indexer.mainnet.mystenlabs.com
Pair names are BASE_QUOTE (e.g. SUI_USDC, DEEP_USDC, WAL_USDC). Get the live list from /get_pools.
Rules
- Discover pairs first. Pool names are exact — call
/get_poolsor/tickerbefore assuming a pair exists. - Prices come pre-scaled. Ticker/orderbook/candle prices are already in human units — don't re-divide by decimals.
- Check
isFrozen. A ticker entry withisFrozen: 1is an inactive pool — don't quote it as a live price. - This is one venue. DeepBook depth ≠ all of Sui liquidity. For a best-execution swap across 20+ DEXs, use the
t2000-swapskill; use DeepBook reads for order-book-grade data.