自動マーケットメーカー
コンスタントプロダクト式
「自動マーケットメーカー」はCoddyKit上の無料Web3 & DApp Development Fundamentalsレッスンです。 これはレッスン2/4です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応のAIチューターでハンズオン演習できます。 これはWeb3 & DApp Development Fundamentals学習パスの一部であり、ウェブとCoddyKitアプリ全体で進捗が同期されます。 Web3 & DApp Development Fundamentalsコースには全4レッスンが含まれています。
このレッスンの一部はまだ翻訳されておらず、英語で表示されています。
What Is an AMM?
An Automated Market Maker (AMM) is a smart contract that prices and executes trades using a mathematical formula instead of an order book.
Instead of matching a buyer with a seller, traders swap against a shared pool of tokens.
Order Books vs AMMs
Traditional exchanges match individual buy and sell orders. AMMs replace that with a liquidity pool and a pricing curve.
- Order book: needs active market makers
- AMM: always available, prices set by formula
The Liquidity Pool
An AMM pool holds a reserve of two tokens, for example ETH and USDC. Traders add one token and remove the other.
The pool's reserves determine the price — the contract never needs a counterparty.
Pool reserves:
x = 100 ETH
y = 200000 USDCThe Constant Product Formula
The most famous AMM (Uniswap v2) uses the constant product formula:
x * y = k
The product of the two reserves must stay equal to a constant k after every trade (ignoring fees).
x * y = k
100 ETH * 200000 USDC = 20,000,000 = kHow a Swap Moves Reserves
To buy ETH, a trader adds USDC. The USDC reserve grows and the ETH reserve shrinks, but the product must remain k.
Before: 100 ETH * 200000 USDC = 20,000,000
Trader adds 10000 USDC -> y = 210000
New x = k / y = 20,000,000 / 210000
= 95.238 ETH
Trader receives 100 - 95.238 = 4.76 ETHPrice From the Curve
The instantaneous price is the ratio of reserves: price = y / x.
As one reserve shrinks, that token becomes more expensive. The curve makes large trades cost progressively more per unit.
price of ETH in USDC = y / x
= 200000 / 100 = 2000 USDC per ETHSlippage
Slippage is the difference between the expected price and the price you actually get. Big trades move along the curve and suffer more slippage.
Deeper pools (larger reserves) reduce slippage because each trade shifts the ratio less.
Trading Fees
Each swap charges a fee (often 0.30%) that is added to the pool. This grows k slightly over time.
Fees are the reward that compensates liquidity providers for supplying capital.
amountIn after fee = amountIn * 0.997
// 0.30% fee stays in the poolArbitrage Keeps Prices Honest
If the AMM price drifts from the wider market, arbitrageurs trade against the pool until it matches.
This self-correcting pressure keeps AMM prices aligned with external markets without any oracle.
Other AMM Curves
Constant product is not the only design:
- Curve uses a stableswap formula for assets that should trade near 1:1
- Uniswap v3 adds concentrated liquidity within chosen price ranges
Each curve optimizes for a different asset type.
Putting It Together
AMMs price trades with a formula like x * y = k against a shared pool. Reserves set the price, large trades cause slippage, fees reward providers, and arbitrage keeps prices accurate.
Next we look at the liquidity pools themselves.
Quick Check
Test your AMM math intuition.
Recap: Automated Market Makers
You learned that:
- AMMs replace order books with a formula + pool
- The constant product rule is
x * y = k - Price is the reserve ratio; big trades cause slippage
- Fees reward providers; arbitrage keeps prices honest
Next: providing liquidity to these pools.
よくある質問
「自動マーケットメーカー」レッスンは無料ですか?
はい。「自動マーケットメーカー」の完全なテキストはこのウェブで無料で読めます。インタラクティブに演習し(組み込みコードエディタと24時間対応のAIチューター)、Web3 & DApp Development Fundamentalsコースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 Web3 & DApp Development Fundamentalsコースには全4レッスンが含まれています。
「自動マーケットメーカー」で何を学びますか?
コンスタントプロダクト式 ブラウザで直接実行するハンズオンコードでWeb3 & DApp Development Fundamentalsを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。
Web3 & DApp Development Fundamentalsを始めるのに経験は必要ですか?
事前経験は必要ありません。CoddyKitのWeb3 & DApp Development Fundamentalsは初級者から上級者向けに構成されているため、ここから始めるか最初から始めて、自分のペースで進むことができます。 これはレッスン2/4です。
「自動マーケットメーカー」レッスンにはどのくらい時間がかかりますか?
ほとんどのCoddyKitレッスンは約5~10分かかります。各レッスンはコンパクトでインタラクティブなので、着実に進歩し、ウェブとアプリ全体で正確に前回の場所から再開できます。
このWeb3 & DApp Development Fundamentalsレッスンでコードを書いて実行できますか?
はい。すべてのWeb3 & DApp Development Fundamentalsレッスンに組み込みコードエディタが含まれているため、ブラウザでリアルコードを書いて実行し、即座のAIフィードバックを取得できます。ローカル設定は不要です。
このコースのすべてのレッスン
- DeFi概要
- 自動マーケットメーカー
- 流動性プール
- シンプルなSwapの構築