-
Notifications
You must be signed in to change notification settings - Fork 74
/
Pool.sol
443 lines (395 loc) · 15.5 KB
/
Pool.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity ^0.8.24;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "./libraries/SqrtPriceMath.sol";
import "./libraries/TickMath.sol";
import "./libraries/LiquidityMath.sol";
import "./libraries/LowGasSafeMath.sol";
import "./libraries/SafeCast.sol";
import "./libraries/TransferHelper.sol";
import "./libraries/SwapMath.sol";
import "./libraries/FixedPoint128.sol";
import "./interfaces/IPool.sol";
import "./interfaces/IFactory.sol";
contract Pool is IPool {
using SafeCast for uint256;
using LowGasSafeMath for int256;
using LowGasSafeMath for uint256;
/// @inheritdoc IPool
address public immutable override factory;
/// @inheritdoc IPool
address public immutable override token0;
/// @inheritdoc IPool
address public immutable override token1;
/// @inheritdoc IPool
uint24 public immutable override fee;
/// @inheritdoc IPool
int24 public immutable override tickLower;
/// @inheritdoc IPool
int24 public immutable override tickUpper;
/// @inheritdoc IPool
uint160 public override sqrtPriceX96;
/// @inheritdoc IPool
int24 public override tick;
/// @inheritdoc IPool
uint128 public override liquidity;
/// @inheritdoc IPool
uint256 public override feeGrowthGlobal0X128;
/// @inheritdoc IPool
uint256 public override feeGrowthGlobal1X128;
struct Position {
// 该 Position 拥有的流动性
uint128 liquidity;
// 可提取的 token0 数量
uint128 tokensOwed0;
// 可提取的 token1 数量
uint128 tokensOwed1;
// 上次提取手续费时的 feeGrowthGlobal0X128
uint256 feeGrowthInside0LastX128;
// 上次提取手续费是的 feeGrowthGlobal1X128
uint256 feeGrowthInside1LastX128;
}
// 用一个 mapping 来存放所有 Position 的信息
mapping(address => Position) public positions;
function getPosition(
address owner
)
external
view
override
returns (
uint128 _liquidity,
uint256 feeGrowthInside0LastX128,
uint256 feeGrowthInside1LastX128,
uint128 tokensOwed0,
uint128 tokensOwed1
)
{
return (
positions[owner].liquidity,
positions[owner].feeGrowthInside0LastX128,
positions[owner].feeGrowthInside1LastX128,
positions[owner].tokensOwed0,
positions[owner].tokensOwed1
);
}
constructor() {
// constructor 中初始化 immutable 的常量
// Factory 创建 Pool 时会通 new Pool{salt: salt}() 的方式创建 Pool 合约,通过 salt 指定 Pool 的地址,这样其他地方也可以推算出 Pool 的地址
// 参数通过读取 Factory 合约的 parameters 获取
// 不通过构造函数传入,因为 CREATE2 会根据 initcode 计算出新地址(new_address = hash(0xFF, sender, salt, bytecode)),带上参数就不能计算出稳定的地址了
(factory, token0, token1, tickLower, tickUpper, fee) = IFactory(
msg.sender
).parameters();
}
function initialize(uint160 sqrtPriceX96_) external override {
require(sqrtPriceX96 == 0, "INITIALIZED");
// 通过价格获取 tick,判断 tick 是否在 tickLower 和 tickUpper 之间
tick = TickMath.getTickAtSqrtPrice(sqrtPriceX96_);
require(
tick >= tickLower && tick < tickUpper,
"sqrtPriceX96 should be within the range of [tickLower, tickUpper)"
);
// 初始化 Pool 的 sqrtPriceX96
sqrtPriceX96 = sqrtPriceX96_;
}
struct ModifyPositionParams {
// the address that owns the position
address owner;
// any change in liquidity
int128 liquidityDelta;
}
function _modifyPosition(
ModifyPositionParams memory params
) private returns (int256 amount0, int256 amount1) {
// 通过新增的流动性计算 amount0 和 amount1
// 参考 UniswapV3 的代码
amount0 = SqrtPriceMath.getAmount0Delta(
sqrtPriceX96,
TickMath.getSqrtPriceAtTick(tickUpper),
params.liquidityDelta
);
amount1 = SqrtPriceMath.getAmount1Delta(
TickMath.getSqrtPriceAtTick(tickLower),
sqrtPriceX96,
params.liquidityDelta
);
Position storage position = positions[params.owner];
// 提取手续费,计算从上一次提取到当前的手续费
uint128 tokensOwed0 = uint128(
FullMath.mulDiv(
feeGrowthGlobal0X128 - position.feeGrowthInside0LastX128,
position.liquidity,
FixedPoint128.Q128
)
);
uint128 tokensOwed1 = uint128(
FullMath.mulDiv(
feeGrowthGlobal1X128 - position.feeGrowthInside1LastX128,
position.liquidity,
FixedPoint128.Q128
)
);
// 更新提取手续费的记录,同步到当前最新的 feeGrowthGlobal0X128,代表都提取完了
position.feeGrowthInside0LastX128 = feeGrowthGlobal0X128;
position.feeGrowthInside1LastX128 = feeGrowthGlobal1X128;
// 把可以提取的手续费记录到 tokensOwed0 和 tokensOwed1 中
// LP 可以通过 collect 来最终提取到用户自己账户上
if (tokensOwed0 > 0 || tokensOwed1 > 0) {
position.tokensOwed0 += tokensOwed0;
position.tokensOwed1 += tokensOwed1;
}
// 修改 liquidity
liquidity = LiquidityMath.addDelta(liquidity, params.liquidityDelta);
position.liquidity = LiquidityMath.addDelta(
position.liquidity,
params.liquidityDelta
);
}
/// @dev Get the pool's balance of token0
/// @dev This function is gas optimized to avoid a redundant extcodesize check in addition to the returndatasize
/// check
function balance0() private view returns (uint256) {
(bool success, bytes memory data) = token0.staticcall(
abi.encodeWithSelector(IERC20.balanceOf.selector, address(this))
);
require(success && data.length >= 32);
return abi.decode(data, (uint256));
}
/// @dev Get the pool's balance of token1
/// @dev This function is gas optimized to avoid a redundant extcodesize check in addition to the returndatasize
/// check
function balance1() private view returns (uint256) {
(bool success, bytes memory data) = token1.staticcall(
abi.encodeWithSelector(IERC20.balanceOf.selector, address(this))
);
require(success && data.length >= 32);
return abi.decode(data, (uint256));
}
function mint(
address recipient,
uint128 amount,
bytes calldata data
) external override returns (uint256 amount0, uint256 amount1) {
require(amount > 0, "Mint amount must be greater than 0");
// 基于 amount 计算出当前需要多少 amount0 和 amount1
(int256 amount0Int, int256 amount1Int) = _modifyPosition(
ModifyPositionParams({
owner: recipient,
liquidityDelta: int128(amount)
})
);
amount0 = uint256(amount0Int);
amount1 = uint256(amount1Int);
uint256 balance0Before;
uint256 balance1Before;
if (amount0 > 0) balance0Before = balance0();
if (amount1 > 0) balance1Before = balance1();
// 回调 mintCallback
IMintCallback(msg.sender).mintCallback(amount0, amount1, data);
if (amount0 > 0)
require(balance0Before.add(amount0) <= balance0(), "M0");
if (amount1 > 0)
require(balance1Before.add(amount1) <= balance1(), "M1");
emit Mint(msg.sender, recipient, amount, amount0, amount1);
}
function collect(
address recipient,
uint128 amount0Requested,
uint128 amount1Requested
) external override returns (uint128 amount0, uint128 amount1) {
// 获取当前用户的 position
Position storage position = positions[msg.sender];
// 把钱退给用户 recipient
amount0 = amount0Requested > position.tokensOwed0
? position.tokensOwed0
: amount0Requested;
amount1 = amount1Requested > position.tokensOwed1
? position.tokensOwed1
: amount1Requested;
if (amount0 > 0) {
position.tokensOwed0 -= amount0;
TransferHelper.safeTransfer(token0, recipient, amount0);
}
if (amount1 > 0) {
position.tokensOwed1 -= amount1;
TransferHelper.safeTransfer(token1, recipient, amount1);
}
emit Collect(msg.sender, recipient, amount0, amount1);
}
function burn(
uint128 amount
) external override returns (uint256 amount0, uint256 amount1) {
require(amount > 0, "Burn amount must be greater than 0");
require(
amount <= positions[msg.sender].liquidity,
"Burn amount exceeds liquidity"
);
// 修改 positions 中的信息
(int256 amount0Int, int256 amount1Int) = _modifyPosition(
ModifyPositionParams({
owner: msg.sender,
liquidityDelta: -int128(amount)
})
);
// 获取燃烧后的 amount0 和 amount1
amount0 = uint256(-amount0Int);
amount1 = uint256(-amount1Int);
if (amount0 > 0 || amount1 > 0) {
(
positions[msg.sender].tokensOwed0,
positions[msg.sender].tokensOwed1
) = (
positions[msg.sender].tokensOwed0 + uint128(amount0),
positions[msg.sender].tokensOwed1 + uint128(amount1)
);
}
emit Burn(msg.sender, amount, amount0, amount1);
}
// 交易中需要临时存储的变量
struct SwapState {
// the amount remaining to be swapped in/out of the input/output asset
int256 amountSpecifiedRemaining;
// the amount already swapped out/in of the output/input asset
int256 amountCalculated;
// current sqrt(price)
uint160 sqrtPriceX96;
// the global fee growth of the input token
uint256 feeGrowthGlobalX128;
// 该交易中用户转入的 token0 的数量
uint256 amountIn;
// 该交易中用户转出的 token1 的数量
uint256 amountOut;
// 该交易中的手续费,如果 zeroForOne 是 ture,则是用户转入 token0,单位是 token0 的数量,反正是 token1 的数量
uint256 feeAmount;
}
function swap(
address recipient,
bool zeroForOne,
int256 amountSpecified,
uint160 sqrtPriceLimitX96,
bytes calldata data
) external override returns (int256 amount0, int256 amount1) {
require(amountSpecified != 0, "AS");
// zeroForOne: 如果从 token0 交换 token1 则为 true,从 token1 交换 token0 则为 false
// 判断当前价格是否满足交易的条件
require(
zeroForOne
? sqrtPriceLimitX96 < sqrtPriceX96 &&
sqrtPriceLimitX96 > TickMath.MIN_SQRT_PRICE
: sqrtPriceLimitX96 > sqrtPriceX96 &&
sqrtPriceLimitX96 < TickMath.MAX_SQRT_PRICE,
"SPL"
);
// amountSpecified 大于 0 代表用户指定了 token0 的数量,小于 0 代表用户指定了 token1 的数量
bool exactInput = amountSpecified > 0;
SwapState memory state = SwapState({
amountSpecifiedRemaining: amountSpecified,
amountCalculated: 0,
sqrtPriceX96: sqrtPriceX96,
feeGrowthGlobalX128: zeroForOne
? feeGrowthGlobal0X128
: feeGrowthGlobal1X128,
amountIn: 0,
amountOut: 0,
feeAmount: 0
});
// 计算交易的上下限,基于 tick 计算价格
uint160 sqrtPriceX96Lower = TickMath.getSqrtPriceAtTick(tickLower);
uint160 sqrtPriceX96Upper = TickMath.getSqrtPriceAtTick(tickUpper);
// 计算用户交易价格的限制,如果是 zeroForOne 是 true,说明用户会换入 token0,会压低 token0 的价格(也就是池子的价格),所以要限制最低价格不能超过 sqrtPriceX96Lower
uint160 sqrtPriceX96PoolLimit = zeroForOne
? sqrtPriceX96Lower
: sqrtPriceX96Upper;
// 计算交易的具体数值
(
state.sqrtPriceX96,
state.amountIn,
state.amountOut,
state.feeAmount
) = SwapMath.computeSwapStep(
sqrtPriceX96,
(
zeroForOne
? sqrtPriceX96PoolLimit < sqrtPriceLimitX96
: sqrtPriceX96PoolLimit > sqrtPriceLimitX96
)
? sqrtPriceLimitX96
: sqrtPriceX96PoolLimit,
liquidity,
amountSpecified,
fee
);
// 更新新的价格
sqrtPriceX96 = state.sqrtPriceX96;
tick = TickMath.getTickAtSqrtPrice(state.sqrtPriceX96);
// 计算手续费
state.feeGrowthGlobalX128 += FullMath.mulDiv(
state.feeAmount,
FixedPoint128.Q128,
liquidity
);
// 更新手续费相关信息
if (zeroForOne) {
feeGrowthGlobal0X128 = state.feeGrowthGlobalX128;
} else {
feeGrowthGlobal1X128 = state.feeGrowthGlobalX128;
}
// 计算交易后用户手里的 token0 和 token1 的数量
if (exactInput) {
state.amountSpecifiedRemaining -= (state.amountIn + state.feeAmount)
.toInt256();
state.amountCalculated = state.amountCalculated.sub(
state.amountOut.toInt256()
);
} else {
state.amountSpecifiedRemaining += state.amountOut.toInt256();
state.amountCalculated = state.amountCalculated.add(
(state.amountIn + state.feeAmount).toInt256()
);
}
(amount0, amount1) = zeroForOne == exactInput
? (
amountSpecified - state.amountSpecifiedRemaining,
state.amountCalculated
)
: (
state.amountCalculated,
amountSpecified - state.amountSpecifiedRemaining
);
if (zeroForOne) {
// callback 中需要给 Pool 转入 token
uint256 balance0Before = balance0();
ISwapCallback(msg.sender).swapCallback(amount0, amount1, data);
require(balance0Before.add(uint256(amount0)) <= balance0(), "IIA");
// 转 Token 给用户
if (amount1 < 0)
TransferHelper.safeTransfer(
token1,
recipient,
uint256(-amount1)
);
} else {
// callback 中需要给 Pool 转入 token
uint256 balance1Before = balance1();
ISwapCallback(msg.sender).swapCallback(amount0, amount1, data);
require(balance1Before.add(uint256(amount1)) <= balance1(), "IIA");
// 转 Token 给用户
if (amount0 < 0)
TransferHelper.safeTransfer(
token0,
recipient,
uint256(-amount0)
);
}
emit Swap(
msg.sender,
recipient,
amount0,
amount1,
sqrtPriceX96,
liquidity,
tick
);
}
}