Builder path

DeFi Builder Path

Learn the trading and liquidity vocabulary behind the app layer.

6 terms1 Categories covered
Path sequence

Follow the terms in order and branch deeper when needed.

The path is sequenced to reduce context switching. Start at the top, open each term, and use related links when a concept needs more depth.

01
DeFiStart here

AMM (Automated Market Maker)

A protocol that enables token swaps using algorithmic pricing against pooled liquidity instead of matching individual buyers and sellers. AMMs use mathematical formulas (typically constant product x*y=k) to determine prices based on the ratio of tokens in a liquidity pool. On Solana, major AMMs include Raydium, Orca, and Meteora.

02
DeFi

Liquidity Pool

A smart-contract-held reserve of two or more tokens that enables trading via an AMM. Users deposit token pairs in specified ratios to become liquidity providers and earn trading fees. Pools are identified by their token pair and fee tier. Pool depth (total value locked) determines price impact for trades.

03
DeFi

Swap

The exchange of one token for another through a DEX, either via an AMM pool or an order book. The user specifies an input token/amount and receives output tokens at the current market rate minus slippage and fees. On Solana, swaps settle in a single transaction (~400ms) with fees typically 0.01-0.3% per trade.

04
DeFi

DEX (Decentralized Exchange)

A protocol for trading tokens directly on-chain without a centralized intermediary. Solana DEXs use either AMM pools (Raydium, Orca, Meteora) or on-chain order books (Phoenix, OpenBook). DEXs are composable—aggregators like Jupiter route through multiple DEXs for optimal pricing.

05
DeFi

Order Book (On-Chain)

A trading system that matches buy and sell orders at specified prices, implemented fully on-chain. Unlike AMMs, order books enable limit orders and don't require liquidity pools. Solana's high throughput makes on-chain order books viable. Phoenix uses a FIFO matching engine; OpenBook (Serum v4) uses a crank-based model.

06
DeFi

Jupiter

The dominant DEX aggregator on Solana, routing trades across 20+ DEX protocols to find optimal pricing. Jupiter splits orders across multiple routes and pools to minimize price impact. It also offers limit orders, DCA, perpetuals (via Jupiter Perps), and a token launchpad (LFG). The JUP governance token was airdropped in January 2024.

How to use this path

Follow the terms in order and branch deeper when needed.

The path is sequenced to reduce context switching. Start at the top, open each term, and use related links when a concept needs more depth.

1

Read the path in order instead of jumping randomly between terms.

2

Open term pages whenever a concept needs definitions, aliases, and related links.

3

Use related terms and category continuation to go deeper without losing the path context.

Builder path

Keep going

These entries live beside the current term and help the page feel like part of a larger knowledge graph instead of a dead end.

Previous path

Runtime Builder Path

Understand how Solana executes work before you optimize or debug it.

Next path

Agents Builder Path

Map the glossary to the agentic workflow and context retrieval stack.