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

# Raydium 文档

> Raydium 在 Solana 上的 AMM v4、CPMM、CLMM、Farm 和 LaunchLab 程序的参考和指南。

export function openDocsSearch() {
  if (typeof window === "undefined" || typeof document === "undefined") return;

  const directTrigger =
    document.querySelector('[data-search-open]') ||
    document.querySelector('button[aria-label="Search"]') ||
    document.querySelector('button[aria-label="Open search"]') ||
    document.querySelector('[class*="SearchTrigger"]');

  if (directTrigger instanceof HTMLElement) {
    directTrigger.click();
    return;
  }

  const isMac = /Mac|iPhone|iPad|iPod/.test(window.navigator.platform);
  const shortcutEvent = new KeyboardEvent("keydown", {
    key: "k",
    code: "KeyK",
    metaKey: isMac,
    ctrlKey: !isMac,
    bubbles: true,
    cancelable: true,
  });

  document.dispatchEvent(shortcutEvent);
  window.dispatchEvent(shortcutEvent);
}

export function handleSearchInteraction(event) {
  event.preventDefault();
  openDocsSearch();

  if (event.currentTarget instanceof HTMLElement) {
    requestAnimationFrame(() => {
      event.currentTarget.blur();
    });
  }
}

<div className="rd-home">
  <div className="rd-hero-zone">
    <div className="rd-nav">
      <a href="/zh" className="rd-nav__brand" aria-label="Raydium Docs">
        <img src="https://mintcdn.com/raydium/YfhgQCAxRmaSYtrQ/images/logo/dark.png?fit=max&auto=format&n=YfhgQCAxRmaSYtrQ&q=85&s=c33ed41058720bb2dfc270e8caf62da2" alt="Raydium Docs" className="rd-nav__logo" noZoom width="847" height="231" data-path="images/logo/dark.png" />
      </a>

      <div className="rd-nav__links">
        <a href="/zh/introduction">文档</a>
        <a href="/zh/sdk-api">API</a>
        <a href="/zh/reference/changelog">更新</a>
        <a href="https://immunefi.com/bug-bounty/raydium/information/">漏洞赏金</a>
      </div>

      <div className="rd-nav__right">
        <label className="rd-nav__search">
          <span className="rd-nav__search-ico">⌕</span>

          <input
            type="search"
            placeholder="搜索文档..."
            aria-label="搜索文档"
            readOnly
            onClick={handleSearchInteraction}
            onFocus={handleSearchInteraction}
            onKeyDown={(event) => {
        if (event.key === "Enter" || event.key === " ") handleSearchInteraction(event);
      }}
          />

          <span className="rd-nav__search-kbd">⌘K</span>
        </label>

        <div className="rd-lang-menu">
          <button type="button" className="rd-lang" aria-label="Language">
            <span>🌐</span><span>中文</span><span>⌄</span>
          </button>

          <div className="rd-lang-menu__list">
            <a href="/" className="rd-lang-menu__item">English</a>
            <a href="/zh" className="rd-lang-menu__item is-active">简体中文</a>
            <a href="/zh-Hant" className="rd-lang-menu__item">繁體中文</a>
            <a href="/ja" className="rd-lang-menu__item">日本語</a>
            <a href="/ko" className="rd-lang-menu__item">한국어</a>
            <a href="/ru" className="rd-lang-menu__item">Русский</a>
            <a href="/es" className="rd-lang-menu__item">Español</a>
            <a href="/de" className="rd-lang-menu__item">Deutsch</a>
            <a href="/fr" className="rd-lang-menu__item">Français</a>
            <a href="/pt" className="rd-lang-menu__item">Português</a>
            <a href="/tr" className="rd-lang-menu__item">Türkçe</a>
            <a href="/vi" className="rd-lang-menu__item">Tiếng Việt</a>
            <a href="/id" className="rd-lang-menu__item">Bahasa Indonesia</a>
            <a href="/ar" className="rd-lang-menu__item" dir="rtl">العربية</a>
          </div>
        </div>

        <a href="https://raydium.io" className="rd-cta-primary">启动应用 ↗</a>
      </div>
    </div>

    <section className="rd-hero">
      <h1 className="rd-headline">在 Raydium 上构建、集成、交易</h1>

      <p className="rd-subhead">
        AMM v4、CPMM、CLMM、Farm、LaunchLab 和 Perps 的完整参考——<br />
        链上账户、数学原理、指令、费用、SDK 和可运行的代码。
      </p>

      <label className="rd-hero__search">
        <span className="rd-hero__search-ico">⌕</span>

        <input
          placeholder="搜索 126 个页面或询问 AI…  例如  &#x22;CLMM tick 的工作原理是什么？&#x22;"
          readOnly
          onClick={handleSearchInteraction}
          onFocus={handleSearchInteraction}
          onKeyDown={(event) => {
      if (event.key === "Enter" || event.key === " ") handleSearchInteraction(event);
    }}
        />

        <span className="rd-kbd">⌘K</span>
      </label>

      <div className="rd-hero__chips">
        <span className="rd-hero__chips-label">尝试：</span>
        <a href="/zh/quick-start" className="rd-chip">快速入门</a>
        <a href="/zh/user-flows/create-cpmm-pool" className="rd-chip">创建 CPMM 池</a>
        <a href="/zh/algorithms/clmm-math" className="rd-chip">CLMM 数学原理</a>
        <a href="/zh/integration-guides/aggregator" className="rd-chip">聚合器集成</a>
        <a href="/zh/reference/token-2022-support" className="rd-chip">Token-2022 支持</a>
      </div>

      <div className="rd-hero__ctas-mobile">
        <a href="/zh/quick-start" className="rd-btn-primary">快速入门（5 分钟）→</a>
        <a href="/zh/introduction" className="rd-btn-ghost">浏览所有文档</a>
      </div>
    </section>
  </div>

  <section className="rd-section rd-section--tracks">
    <div className="rd-section__head">
      <p className="rd-eyebrow-tx">选择你的路线</p>
      <h2 className="rd-section__title">三个受众。唯一的信息来源。</h2>
    </div>

    <div className="rd-tracks">
      <a href="/zh/sdk-api" className="rd-track rd-c-purple">
        <div className="rd-track__icon" aria-hidden="true">
          <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.9" strokeLinecap="round" strokeLinejoin="round">
            <rect x="3.5" y="5" width="17" height="14" rx="3" />

            <path d="M7.5 10 10 12.5 7.5 15" />

            <path d="M12.5 15H16.5" />
          </svg>
        </div>

        <h3 className="rd-track__title">开发者</h3>
        <p className="rd-track__desc">构建和集成。快速入门、SDK、REST API、Anchor IDL、Rust CPI 模式、Python。</p>
        <span className="rd-track__cta">打开 SDK & API →</span>
      </a>

      <a href="/zh/protocol-overview" className="rd-track rd-c-cyan">
        <div className="rd-track__icon" aria-hidden="true">
          <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.9" strokeLinecap="round" strokeLinejoin="round">
            <path d="M10 4h4" />

            <path d="M9 4v4.2l-3.9 6.4A3 3 0 0 0 7.7 19h8.6a3 3 0 0 0 2.6-4.4L15 8.2V4" />

            <path d="M8.5 14.5h7" />
          </svg>
        </div>

        <h3 className="rd-track__title">研究者</h3>
        <p className="rd-track__desc">审计和分析。架构、算法、账户状态机、费用经济学、风险面。</p>
        <span className="rd-track__cta">阅读协议概览 →</span>
      </a>

      <a href="/zh/getting-started" className="rd-track rd-c-green">
        <div className="rd-track__icon" aria-hidden="true">
          <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.9" strokeLinecap="round" strokeLinejoin="round">
            <circle cx="12" cy="8.2" r="3.2" />

            <path d="M5.5 18.2c1.8-3 4-4.5 6.5-4.5s4.7 1.5 6.5 4.5" />
          </svg>
        </div>

        <h3 className="rd-track__title">终端用户</h3>
        <p className="rd-track__desc">安全使用 Raydium。钱包设置、首次交换、提供流动性、领取奖励。</p>
        <span className="rd-track__cta">开始使用 →</span>
      </a>
    </div>
  </section>

  <section className="rd-section rd-section--surf">
    <div className="rd-section__head">
      <p className="rd-eyebrow-tx">六个链上程序</p>
      <h2 className="rd-section__title">每个程序。每条指令。每个账户。</h2>
      <p className="rd-section__sub">每个章节遵循相同的模板——概览、账户、数学、指令、费用、可运行的代码。</p>
    </div>

    <div className="rd-products">
      <a href="/zh/products/amm-v4" className="rd-product rd-c-amber">
        <div className="rd-product__top">
          <div className="rd-product__name"><span className="rd-product__dot" /><span className="rd-product__label">AMM v4</span></div>
          <span className="rd-product__tag">管理中</span>
        </div>

        <p className="rd-product__desc">混合 AMM 与 OpenBook 集成。许多交易对的最深流动性。</p>
        <div className="rd-product__ix-wrap"><div className="rd-product__ix-label">指令</div><div className="rd-product__ix">swap · deposit · withdraw</div></div>
        <span className="rd-product__cta">阅读 AMM v4<span className="rd-only-desktop"> 参考</span> →</span>
      </a>

      <a href="/zh/products/cpmm" className="rd-product rd-c-green">
        <div className="rd-product__top">
          <div className="rd-product__name"><span className="rd-product__dot" /><span className="rd-product__label">CPMM</span></div>
          <span className="rd-product__tag">默认</span>
        </div>

        <p className="rd-product__desc">标准恒积公式。Token-2022 原生支持。推荐用于新的流动性池。</p>
        <div className="rd-product__ix-wrap"><div className="rd-product__ix-label">指令</div><div className="rd-product__ix">initialize · swap · deposit · withdraw</div></div>
        <span className="rd-product__cta">阅读 CPMM<span className="rd-only-desktop"> 参考</span> →</span>
      </a>

      <a href="/zh/products/clmm" className="rd-product rd-c-purple">
        <div className="rd-product__top">
          <div className="rd-product__name"><span className="rd-product__dot" /><span className="rd-product__label">CLMM</span></div>
          <span className="rd-product__tag">v1</span>
        </div>

        <p className="rd-product__desc">集中流动性。跨价格范围的资本高效做市。</p>
        <div className="rd-product__ix-wrap"><div className="rd-product__ix-label">指令</div><div className="rd-product__ix">openPosition · increaseLiquidity · swapV2</div></div>
        <span className="rd-product__cta">阅读 CLMM<span className="rd-only-desktop"> 参考</span> →</span>
      </a>

      <a href="/zh/products/farm-staking" className="rd-product rd-c-cyan">
        <div className="rd-product__top">
          <div className="rd-product__name"><span className="rd-product__dot" /><span className="rd-product__label">Farm / Staking</span></div>
          <span className="rd-product__tag">v6</span>
        </div>

        <p className="rd-product__desc">奖励分发。最多 5 个流。v6 支持 Token-2022 质押。</p>
        <div className="rd-product__ix-wrap"><div className="rd-product__ix-label">指令</div><div className="rd-product__ix">deposit · harvest · withdraw</div></div>
        <span className="rd-product__cta">阅读 Farm / Staking<span className="rd-only-desktop"> 参考</span> →</span>
      </a>

      <a href="/zh/products/launchlab" className="rd-product rd-c-pink">
        <div className="rd-product__top">
          <div className="rd-product__name"><span className="rd-product__dot" /><span className="rd-product__label">LaunchLab</span></div>
          <span className="rd-product__tag">新增</span>
        </div>

        <p className="rd-product__desc">邦德曲线代币发行。可配置曲线、创建者费用、毕业机制。</p>
        <div className="rd-product__ix-wrap"><div className="rd-product__ix-label">指令</div><div className="rd-product__ix">initialize · buy · sell · graduate</div></div>
        <span className="rd-product__cta">阅读 LaunchLab<span className="rd-only-desktop"> 参考</span> →</span>
      </a>

      <a href="/zh/products/perps" className="rd-product rd-c-amber">
        <div className="rd-product__top">
          <div className="rd-product__name"><span className="rd-product__dot" /><span className="rd-product__label">Perps</span></div>
          <span className="rd-product__tag">测试版</span>
        </div>

        <p className="rd-product__desc">通过 Orderly Network 的永续期货。REST + WebSocket + Ed25519 签名。</p>
        <div className="rd-product__ix-wrap"><div className="rd-product__ix-label">指令</div><div className="rd-product__ix">deposit · placeOrder · cancelOrder</div></div>
        <span className="rd-product__cta">阅读 Perps<span className="rd-only-desktop"> 参考</span> →</span>
      </a>
    </div>
  </section>

  <section className="rd-section rd-section--quickstart">
    <div className="rd-quickstart">
      <div className="rd-quickstart__copy">
        <p className="rd-eyebrow-tx">快速入门</p>
        <h2 className="rd-qs__title">五分钟内执行真实交换。</h2>
        <p className="rd-qs__desc">安装 SDK，为 Devnet 钱包提供资金，并端到端执行交换。然后深入 SDK & API 章节了解完整的构建者参考。</p>

        <div className="rd-qs__btns">
          <a href="/zh/quick-start" className="rd-btn-primary">打开快速入门 →</a>
          <a href="https://github.com/raydium-io/raydium-sdk-V2-demo" className="rd-btn-ghost rd-only-desktop">在 GitHub 上查看</a>
        </div>
      </div>

      <div className="rd-codewindow">
        <div className="rd-codewindow__bar">
          <span className="rd-codewindow__dot rd-codewindow__dot--r" />

          <span className="rd-codewindow__dot rd-codewindow__dot--y" />

          <span className="rd-codewindow__dot rd-codewindow__dot--g" />

          <span className="rd-codewindow__filename">quick-start.ts</span>
        </div>

        <pre className="rd-codewindow__pre">
          <code>
            <span className="rd-codewindow__line rd-codewindow__line--comment">
              {`// SDK v0.2.42-alpha · cluster: mainnet · verified 2026-04`}
            </span>

            <span className="rd-codewindow__line">
              {`import { Raydium, TxVersion } from "@raydium-io/raydium-sdk-v2";`}
            </span>

            <span className="rd-codewindow__line">
              {`import { Connection, Keypair } from "@solana/web3.js";`}
            </span>

            <span className="rd-codewindow__line">
              {` `}
            </span>

            <span className="rd-codewindow__line">
              {`const connection = new Connection(process.env.RPC_URL!);`}
            </span>

            <span className="rd-codewindow__line">
              {`const owner = Keypair.fromSecretKey(/* ... */);`}
            </span>

            <span className="rd-codewindow__line">
              {` `}
            </span>

            <span className="rd-codewindow__line">
              {`const raydium = await Raydium.load({ connection, owner });`}
            </span>

            <span className="rd-codewindow__line">
              {` `}
            </span>

            <span className="rd-codewindow__line rd-codewindow__line--accent">
              {`const { execute } = await raydium.tradeV2.swap({`}
            </span>

            <span className="rd-codewindow__line rd-codewindow__line--muted">
              {`  inputMint:  "So111...112",`}
            </span>

            <span className="rd-codewindow__line rd-codewindow__line--muted">
              {`  outputMint: "EPjFW...Dt1v",`}
            </span>

            <span className="rd-codewindow__line rd-codewindow__line--muted">
              {`  amountIn:   100_000_000n,   // 0.1 SOL`}
            </span>

            <span className="rd-codewindow__line rd-codewindow__line--muted">
              {`  slippageBps: 50,             // 0.5%`}
            </span>

            <span className="rd-codewindow__line rd-codewindow__line--muted">
              {`  txVersion:  TxVersion.V0,`}
            </span>

            <span className="rd-codewindow__line rd-codewindow__line--accent">
              {`});`}
            </span>

            <span className="rd-codewindow__line">
              {` `}
            </span>

            <span className="rd-codewindow__line">
              {`const { txId } = await execute({ sendAndConfirm: true });`}
            </span>

            <span className="rd-codewindow__line rd-codewindow__line--success">
              {`console.log("signature:", txId);`}
            </span>
          </code>
        </pre>
      </div>
    </div>
  </section>

  <section className="rd-aistrip">
    <div className="rd-aistrip__inner">
      <div className="rd-aistrip__copy">
        <p className="rd-eyebrow-tx rd-eyebrow-tx--cyan">为编码代理而构建</p>
        <h2 className="rd-aistrip__title">MCP 服务器 · llms.txt · 每页复制菜单</h2>
        <p className="rd-aistrip__desc">将 Raydium 文档接入 Claude Code、Cursor、Windsurf、ChatGPT 或你自己的 RAG 管道。每个页面都提供复制菜单和稳定的 JSON-LD slug。</p>
      </div>

      <div className="rd-aistrip__tools">
        <a href="/zh/sdk-api/ai-integration" className="rd-tool-pill">Claude</a>
        <a href="/zh/sdk-api/ai-integration" className="rd-tool-pill">Cursor</a>
        <a href="/zh/sdk-api/ai-integration" className="rd-tool-pill">Windsurf</a>
        <a href="/zh/sdk-api/ai-integration" className="rd-tool-pill rd-only-desktop">ChatGPT</a>
        <a href="/zh/sdk-api/ai-integration" className="rd-tool-pill">MCP</a>
      </div>
    </div>
  </section>

  <section className="rd-section rd-comm">
    <div className="rd-section__head">
      <p className="rd-eyebrow-tx">开源</p>
      <h2 className="rd-section__title">社区维护。欢迎 PR。</h2>
      <p className="rd-section__sub">发现陈旧的代码示例、错误的程序 ID 或令人困惑的解释？提交 Issue 或发送 PR。欢迎翻译者——中文框架已经就绪。</p>
    </div>

    <div className="rd-comm__grid">
      <a href="https://github.com/raydium-io/raydium-docs-v1/issues/new" className="rd-comm__card rd-c-amber">
        <div className="rd-comm__icon" aria-hidden="true">
          <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.9" strokeLinecap="round" strokeLinejoin="round">
            <circle cx="12" cy="12" r="8" />

            <path d="M12 8.5v4.5" />

            <path d="M12 16.5h.01" />
          </svg>
        </div>

        <div className="rd-comm__text">
          <h3 className="rd-comm__title">Issues</h3>
          <p className="rd-comm__desc">报告陈旧的示例、错误的 ID、损坏的链接。</p>
        </div>
      </a>

      <a href="https://github.com/raydium-io/raydium-docs-v1/compare" className="rd-comm__card rd-c-green">
        <div className="rd-comm__icon" aria-hidden="true">
          <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.9" strokeLinecap="round" strokeLinejoin="round">
            <path d="M8 6v8" />

            <path d="M8 6a2 2 0 1 0-2-2" />

            <circle cx="8" cy="16" r="2" />

            <path d="M16 18V10" />

            <circle cx="16" cy="8" r="2" />

            <path d="M8 14c1.2 0 2-.2 2.8-.8l2.4-1.8c.8-.6 1.6-.8 2.8-.8" />
          </svg>
        </div>

        <div className="rd-comm__text">
          <h3 className="rd-comm__title">Pull requests</h3>
          <p className="rd-comm__desc">修复文本、添加示例、贡献新页面。</p>
        </div>
      </a>

      <a href="https://github.com/raydium-io/raydium-docs-v1/blob/main/CONTRIBUTING.md#translations" className="rd-comm__card rd-c-cyan">
        <div className="rd-comm__icon" aria-hidden="true">
          <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.9" strokeLinecap="round" strokeLinejoin="round">
            <circle cx="12" cy="12" r="8" />

            <path d="M4 12h16" />

            <path d="M12 4c2.2 2.4 3.5 5.1 3.5 8S14.2 17.6 12 20" />

            <path d="M12 4c-2.2 2.4-3.5 5.1-3.5 8S9.8 17.6 12 20" />
          </svg>
        </div>

        <div className="rd-comm__text">
          <h3 className="rd-comm__title">翻译</h3>
          <p className="rd-comm__desc">帮助构建中文（和未来）的文档树。</p>
        </div>
      </a>

      <a href="https://immunefi.com/bug-bounty/raydium/information/" className="rd-comm__card rd-comm__card--bb rd-c-pink">
        <div className="rd-comm__icon" aria-hidden="true">
          <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.9" strokeLinecap="round" strokeLinejoin="round">
            <path d="M12 4 18 6.5v4.7c0 4.1-2.3 6.8-6 8.8-3.7-2-6-4.7-6-8.8V6.5L12 4Z" />

            <path d="M9.5 12.2 11 13.7l3.5-3.7" />
          </svg>
        </div>

        <div className="rd-comm__text">
          <h3 className="rd-comm__title">漏洞赏金</h3>
          <p className="rd-comm__desc">协议问题应通过 Immunefi 报告，而不是这里。</p>
        </div>
      </a>
    </div>
  </section>

  <div className="rd-footer">
    <div className="rd-footer__top">
      <div className="rd-footer__brand">
        <a href="/zh" className="rd-nav__brand" aria-label="Raydium Docs">
          <img src="https://mintcdn.com/raydium/YfhgQCAxRmaSYtrQ/images/logo/dark.png?fit=max&auto=format&n=YfhgQCAxRmaSYtrQ&q=85&s=c33ed41058720bb2dfc270e8caf62da2" alt="Raydium Docs" className="rd-nav__logo" noZoom width="847" height="231" data-path="images/logo/dark.png" />
        </a>

        <p className="rd-footer__brand-desc">Raydium 在 Solana 上的链上程序的开源文档。MIT 许可证。</p>

        <div className="rd-footer__socials">
          <a href="https://github.com/raydium-io" className="rd-footer__social">GitHub</a>
          <a href="https://x.com/Raydium" className="rd-footer__social">X</a>
          <a href="https://discord.gg/raydium" className="rd-footer__social">Discord</a>
          <a href="https://medium.com/@Raydium" className="rd-footer__social">Medium</a>
        </div>
      </div>

      <div className="rd-footer__col rd-footer__cols-desktop">
        <h4>产品</h4>
        <a href="/zh/products/amm-v4">AMM v4</a>
        <a href="/zh/products/cpmm">CPMM</a>
        <a href="/zh/products/clmm">CLMM</a>
        <a href="/zh/products/farm-staking">Farm / Staking</a>
        <a href="/zh/products/launchlab">LaunchLab</a>
        <a href="/zh/products/perps">Perps</a>
      </div>

      <div className="rd-footer__col rd-footer__cols-desktop">
        <h4>构建</h4>
        <a href="/zh/quick-start">快速入门</a>
        <a href="/zh/sdk-api/typescript-sdk">TypeScript SDK</a>
        <a href="/zh/sdk-api/rest-api">REST API</a>
        <a href="/zh/sdk-api/anchor-idl">Anchor IDL</a>
        <a href="/zh/sdk-api/rust-cpi">Rust CPI</a>
        <a href="/zh/sdk-api/python-integration">Python</a>
      </div>

      <div className="rd-footer__col rd-footer__cols-desktop">
        <h4>参考</h4>
        <a href="/zh/reference/program-addresses">程序地址</a>
        <a href="/zh/reference/error-codes">错误代码</a>
        <a href="/zh/reference/fee-comparison">费用对比</a>
        <a href="/zh/reference/token-2022-support">Token-2022 支持</a>
        <a href="/zh/reference/glossary">术语表</a>
        <a href="/zh/reference/changelog">更新日志</a>
      </div>

      <div className="rd-footer__col rd-footer__cols-desktop">
        <h4>资源</h4>
        <a href="https://github.com/raydium-io/raydium-docs-v1/blob/main/ARCHITECTURE.mdx">架构</a>
        <a href="https://github.com/raydium-io/raydium-docs-v1/blob/main/CONTRIBUTING.md">贡献</a>
        <a href="/zh/resources/brand-kit">品牌套件</a>
        <a href="https://immunefi.com/bug-bounty/raydium/information/">漏洞赏金</a>
        <a href="/zh/resources/license">许可证</a>
        <a href="https://discord.gg/raydium">Discord</a>
      </div>

      <div className="rd-footer__cols-mobile">
        <a href="/zh/products" className="rd-footer__row"><span>产品</span><span>›</span></a>
        <a href="/zh/sdk-api" className="rd-footer__row"><span>构建</span><span>›</span></a>
        <a href="/zh/reference" className="rd-footer__row"><span>参考</span><span>›</span></a>
        <a href="/zh/resources" className="rd-footer__row"><span>资源</span><span>›</span></a>
        <a href="/" className="rd-footer__row"><span>🌐 English</span><span>›</span></a>
        <a href="/zh" className="rd-footer__row"><span>🌐 简体中文</span><span>›</span></a>
        <a href="/zh-Hant" className="rd-footer__row"><span>🌐 繁體中文</span><span>›</span></a>
        <a href="/ja" className="rd-footer__row"><span>🌐 日本語</span><span>›</span></a>
        <a href="/ko" className="rd-footer__row"><span>🌐 한국어</span><span>›</span></a>
        <a href="/ru" className="rd-footer__row"><span>🌐 Русский</span><span>›</span></a>
        <a href="/es" className="rd-footer__row"><span>🌐 Español</span><span>›</span></a>
        <a href="/de" className="rd-footer__row"><span>🌐 Deutsch</span><span>›</span></a>
        <a href="/fr" className="rd-footer__row"><span>🌐 Français</span><span>›</span></a>
        <a href="/pt" className="rd-footer__row"><span>🌐 Português</span><span>›</span></a>
        <a href="/tr" className="rd-footer__row"><span>🌐 Türkçe</span><span>›</span></a>
        <a href="/vi" className="rd-footer__row"><span>🌐 Tiếng Việt</span><span>›</span></a>
        <a href="/id" className="rd-footer__row"><span>🌐 Bahasa Indonesia</span><span>›</span></a>
        <a href="/ar" className="rd-footer__row"><span>🌐 العربية</span><span>›</span></a>
      </div>
    </div>

    <div className="rd-footer__divider" />

    <div className="rd-footer__bot">
      <span>© 2026 Raydium Docs 贡献者 · MIT 许可证</span>
    </div>
  </div>
</div>
