> ## 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.

# CLMM

> 集中流動性 AMM。流動性は価格範囲（ティック）に預入され、ポジションは価格が範囲内にあるときのみ手数料を獲得します。

<Info>
  **このページは AI による自動翻訳です。すべての内容は英語版を正とします。**

  [英語版を表示 →](/products/clmm/index)
</Info>

## 概要

CLMM は Raydium の集中流動性 AMM で、Uniswap v3 の設計にインスパイアされており、Solana のアカウントモデルに適応しています。流動性プロバイダーは、曲線全体に提供する代わりに、価格範囲を選択します。安定資産やペアの相関性が高い場合、資本効率が大幅に向上します。

**プログラム ID：** [reference/program-addresses](/ja/reference/program-addresses) を参照してください。

**Token-2022：** サポート済み（[`fees`](/ja/products/clmm/fees) に記載されている注意点あり）。

## チャプター内容

<CardGroup cols={2}>
  <Card title="Overview" icon="circle-info" href="/ja/products/clmm/overview">
    概念モデル：sqrt-price 表現、ティック、流動性計算、ポジションが「範囲外」になる理由。
  </Card>

  <Card title="Accounts" icon="database" href="/ja/products/clmm/accounts">
    PoolState、AmmConfig、TickArrayState、PersonalPositionState、ObservationState。シード、フィールドレイアウト。
  </Card>

  <Card title="Ticks and positions" icon="grid" href="/ja/products/clmm/ticks-and-positions">
    ティック間隔、ティックアレイ、ポジションが 2 つのティック境界にマップされる方法、流動性がティックを超える方法。
  </Card>

  <Card title="Math" icon="function" href="/ja/products/clmm/math">
    Sqrt-price の公式、流動性 ↔ トークン量変換、手数料成長会計、スワップステップアルゴリズム。
  </Card>

  <Card title="Instructions" icon="terminal" href="/ja/products/clmm/instructions">
    CreatePool、OpenPosition、IncreaseLiquidity、DecreaseLiquidity、Swap、CollectFee、CollectReward、UpdateRewardInfos。
  </Card>

  <Card title="Fees and rewards" icon="coins" href="/ja/products/clmm/fees">
    手数料層、プロトコル/ファンド手数料分割、報酬スケジュール（プールごとに最大 3 つの報酬ミント）。
  </Card>

  <Card title="Code demos" icon="code" href="/ja/products/clmm/code-demos">
    プール作成、ポジション開設、流動性の増減、スワップ、手数料と報酬の回収。
  </Card>
</CardGroup>

## いつこれを読むべきか

* 集中流動性を提供している、または LP 向けのツールを構築している。
* レンジオーダーまたは自動リバランス戦略を実装している。
* CLMM スワップの価格を正確に算出する必要があるルーター。
