> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sodax.com/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> SODAX is mainnet-only (no testnet chains or RPC endpoints exist) with a hub-and-spoke architecture; Sonic is the hub. SODAX is non-custodial protocol/software: it routes and settles; independent solvers on the marketplace fill — never say 'our solver', 'the SODAX solver', that SODAX trades, takes custody, or fills orders. For frontend/React integrations, prefer @sodax/dapp-kit hooks over calling @sodax/sdk directly. SDK operations — the methods that build, submit or await a transaction, and the API/quote calls — return Result<T, E> ({ ok: true, value } or { ok: false, error }): check result.ok, never wrap them in try/catch or branch on error.message; discriminate on the narrow error.code union instead. Synchronous config getters (getPartnerFee, getSupportedSwapTokens, getVault, ...) return their value directly, not a Result.

# Get Started

> Pick a solution — Swap, Money Market, Bridge, or Yield — then follow the SDK or HTTP API path. Or jump to a network guide.

Pick a solution first. Inside each hub you’ll choose the **HTTP API** or the **open-source SDK**.

<Card title="Your first swap" icon="bolt" href="/quickstart" horizontal arrow>
  Install → quote → execute on mainnet, then poll until it settles.
</Card>

<CardGroup cols={2}>
  <Card title="Swap" icon="rotate" href="/swap">
    Cross-network intents filled by solvers — API and SDK paths.
  </Card>

  <Card title="Money Market" icon="sack-dollar" href="/money-market">
    Supply and borrow across networks — SDK today.
  </Card>

  <Card title="Bridge" icon="bridge-suspension" href="/bridge">
    Move assets hub-and-spoke — SDK today.
  </Card>

  <Card title="Yield" icon="money-bill-trend-up" href="/yield">
    Leveraged yield vaults — API and SDK.
  </Card>
</CardGroup>

### Or start from your context

<CardGroup cols={2}>
  <Card title="Solana quickstart" icon="sun" href="/solana/quickstart">
    Install, connect a wallet, make a first swap on Solana.
  </Card>

  <Card title="Bitcoin integration" icon="bitcoin" href="/developers/how-to/bitcoin-integration">
    Use Bitcoin as a source or destination network.
  </Card>

  <Card title="Stellar sponsoring" icon="star" href="/developers/how-to/stellar-sponsoring-getting-started">
    Activate a new Stellar account so it can receive assets.
  </Card>

  <Card title="HTTP API overview" icon="server" href="/developers/http-api">
    Shared conventions, oracle, stats, and route map.
  </Card>

  <Card title="SDK overview" icon="layer-group" href="/developers/packages">
    Foundation, Connection, and Experience layers.
  </Card>

  <Card title="AI coding agents" icon="robot" href="/ai-integration-guide">
    Install `@sodax/skills` so Cursor, Claude Code, and Copilot write v2-correct code.
  </Card>

  <Card title="Builders MCP" icon="plug" href="/builders-mcp">
    Live chains, tokens, quotes, and SDK docs for AI coding agents.
  </Card>

  <Card title="Talk to the team" icon="handshake" href="/contact">
    Integration help, SDK bugs, or partnership enquiries.
  </Card>
</CardGroup>
