DEXオーダーブックアグリゲーション
複数の分散型取引所(DEX)から流動性データを収集し、最適な価格と最小の価格スリッページを提供する技術。
アグリゲーションは流動性を魔法のように生み出すわけではなく、既存の流動性へのアクセスを最適化するだけです。大口トレーダー(クジラ)にとって、単一のAMMでの大口取引は許容できないスリッページを引き起こすため、アグリゲーターは不可欠です。
graph LR
Center["DEXオーダーブックアグリゲーション"]:::main
Rel_decentralized_derivatives_pricing_models["decentralized-derivatives-pricing-models"]:::related -.-> Center
click Rel_decentralized_derivatives_pricing_models "/terms/decentralized-derivatives-pricing-models"
Rel_distributed_transactions["distributed-transactions"]:::related -.-> Center
click Rel_distributed_transactions "/terms/distributed-transactions"
Rel_decentralized_exchange_dex["decentralized-exchange-dex"]:::related -.-> Center
click Rel_decentralized_exchange_dex "/terms/decentralized-exchange-dex"
classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
linkStyle default stroke:#4b5563,stroke-width:2px;
🧒 5歳でもわかるように説明
1つのリンゴ農家から100個のリンゴを一度に買おうとすると、「需要が高い」と思われて値上げされてしまいます。[DEX](/ja/terms/dex)アグリゲーターは、町中の市場を同時にチェックする買い物代行人のようなものです。A市場で30個、B市場で40個、C市場で30個買うことで、値段を釣り上げることなく一番安い平均価格でリンゴを揃えてくれます。
🤓 Expert Deep Dive
アグリゲーターの中核はSOR(Smart Order Routing)アルゴリズムです。これは、トークン価格、流動性、ガス代を考慮して最も効率的なルートを見つけるグラフ理論の最適化問題を解決します。AMMの数学的曲線とCLOBの指値注文という異なるアーキテクチャを正規化して比較します。また、アグリゲーターのトランザクションはメンプールで公開されるため、サンドイッチ攻撃(MEV)の標的になりやすく、FlashbotsなどのプライベートRPCを利用して防衛するプロトコルが増えています。
❓ よくある質問
What is the difference between a DEX and a DEX Aggregator?
A DEX (like Uniswap) is a single marketplace with its own liquidity. A DEX Aggregator (like 1inch) is a search engine that checks prices across all DEXs to find you the best deal.
Why do aggregators split trades?
If you make a very large trade on a single exchange, you deplete its liquidity and get a worse price (slippage). Splitting the trade across multiple exchanges minimizes this effect.
Do DEX Aggregators charge extra fees?
Most major aggregators do not charge an extra fee on top of the trade, but they do require slightly more gas to execute because the smart contract has to interact with multiple exchanges at once.