evm-dex-pool 1.2.2

Reusable EVM DEX pool implementations (UniswapV2, UniswapV3, ERC4626) with traits and math
Documentation
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
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
//! ## Sqrt Price Math Library in Rust
//! This library is a Rust port of the [SqrtPriceMath library](https://github.com/uniswap/v3-core/blob/main/contracts/libraries/SqrtPriceMath.sol) in Solidity,
//! with custom optimizations presented in [uni-v3-lib](https://github.com/Aperture-Finance/uni-v3-lib/blob/main/src/SqrtPriceMath.sol).

use alloy::primitives::{ruint::UintTryFrom, Uint, I256, U256};
use anyhow::{anyhow, Result};
use num_traits::Zero;

use super::{FullMath, Q96};

const U160_MAX: U256 = U256::from_limbs([u64::MAX, u64::MAX, u32::MAX as u64, 0]);

/// Trait to associate the SqrtPriceMath functions with the [`Uint`] types.
pub trait SqrtPriceMath: Sized {
    fn get_next_sqrt_price_from_amount_0_rounding_up(
        self,
        liquidity: u128,
        amount: U256,
        add: bool,
    ) -> Result<Self>;

    fn get_next_sqrt_price_from_amount_1_rounding_down(
        self,
        liquidity: u128,
        amount: U256,
        add: bool,
    ) -> Result<Self>;

    fn get_next_sqrt_price_from_input(
        self,
        liquidity: u128,
        amount_in: U256,
        zero_for_one: bool,
    ) -> Result<Self>;

    fn get_next_sqrt_price_from_output(
        self,
        liquidity: u128,
        amount_out: U256,
        zero_for_one: bool,
    ) -> Result<Self>;

    fn get_amount_0_delta(
        self,
        sqrt_ratio_b_x96: Self,
        liquidity: u128,
        round_up: bool,
    ) -> Result<U256>;

    fn get_amount_1_delta(
        self,
        sqrt_ratio_b_x96: Self,
        liquidity: u128,
        round_up: bool,
    ) -> Result<U256>;

    fn get_amount_0_delta_signed(self, sqrt_ratio_b_x96: Self, liquidity: i128) -> Result<I256>;

    fn get_amount_1_delta_signed(self, sqrt_ratio_b_x96: Self, liquidity: i128) -> Result<I256>;
}

impl<const BITS: usize, const LIMBS: usize> SqrtPriceMath for Uint<BITS, LIMBS> {
    #[inline]
    fn get_next_sqrt_price_from_amount_0_rounding_up(
        self,
        liquidity: u128,
        amount: U256,
        add: bool,
    ) -> Result<Self> {
        get_next_sqrt_price_from_amount_0_rounding_up(self, liquidity, amount, add)
    }

    #[inline]
    fn get_next_sqrt_price_from_amount_1_rounding_down(
        self,
        liquidity: u128,
        amount: U256,
        add: bool,
    ) -> Result<Self> {
        get_next_sqrt_price_from_amount_1_rounding_down(self, liquidity, amount, add)
    }

    #[inline]
    fn get_next_sqrt_price_from_input(
        self,
        liquidity: u128,
        amount_in: U256,
        zero_for_one: bool,
    ) -> Result<Self> {
        get_next_sqrt_price_from_input(self, liquidity, amount_in, zero_for_one)
    }

    #[inline]
    fn get_next_sqrt_price_from_output(
        self,
        liquidity: u128,
        amount_out: U256,
        zero_for_one: bool,
    ) -> Result<Self> {
        get_next_sqrt_price_from_output(self, liquidity, amount_out, zero_for_one)
    }

    #[inline]
    fn get_amount_0_delta(
        self,
        sqrt_ratio_b_x96: Self,
        liquidity: u128,
        round_up: bool,
    ) -> Result<U256> {
        get_amount_0_delta(self, sqrt_ratio_b_x96, liquidity, round_up)
    }

    #[inline]
    fn get_amount_1_delta(
        self,
        sqrt_ratio_b_x96: Self,
        liquidity: u128,
        round_up: bool,
    ) -> Result<U256> {
        get_amount_1_delta(self, sqrt_ratio_b_x96, liquidity, round_up)
    }

    #[inline]
    fn get_amount_0_delta_signed(self, sqrt_ratio_b_x96: Self, liquidity: i128) -> Result<I256> {
        get_amount_0_delta_signed(self, sqrt_ratio_b_x96, liquidity)
    }

    #[inline]
    fn get_amount_1_delta_signed(self, sqrt_ratio_b_x96: Self, liquidity: i128) -> Result<I256> {
        get_amount_1_delta_signed(self, sqrt_ratio_b_x96, liquidity)
    }
}

/// Gets the next sqrt price given a delta of token0
#[inline]
pub fn get_next_sqrt_price_from_amount_0_rounding_up<const BITS: usize, const LIMBS: usize>(
    sqrt_price_x96: Uint<BITS, LIMBS>,
    liquidity: u128,
    amount: U256,
    add: bool,
) -> Result<Uint<BITS, LIMBS>> {
    if amount.is_zero() {
        return Ok(sqrt_price_x96);
    }
    let sqrt_price_x96 = U256::from(sqrt_price_x96);
    let numerator_1: U256 = U256::from(liquidity) << 96;

    if add {
        let product = amount * sqrt_price_x96;

        if product / amount == sqrt_price_x96 {
            let denominator = numerator_1 + product;
            if denominator >= numerator_1 {
                return Ok(Uint::from(
                    numerator_1.mul_div_rounding_up(sqrt_price_x96, denominator)?,
                ));
            }
        }

        Ok(Uint::from(
            numerator_1.div_ceil(numerator_1 / sqrt_price_x96 + amount),
        ))
    } else {
        let product = amount * sqrt_price_x96;
        if !(product / amount == sqrt_price_x96 && numerator_1 > product) {
            Err(anyhow!("Price overflow"))
        } else {
            let denominator = numerator_1 - product;

            Uint::uint_try_from(numerator_1.mul_div_rounding_up(sqrt_price_x96, denominator)?)
                .map_err(|_| anyhow!("SafeCastToU160Overflow"))
        }
    }
}

/// Gets the next sqrt price given a delta of token1
#[inline]
pub fn get_next_sqrt_price_from_amount_1_rounding_down<const BITS: usize, const LIMBS: usize>(
    sqrt_price_x96: Uint<BITS, LIMBS>,
    liquidity: u128,
    amount: U256,
    add: bool,
) -> Result<Uint<BITS, LIMBS>> {
    let sqrt_price_x96 = U256::from(sqrt_price_x96);
    let liquidity = U256::from(liquidity);
    if add {
        let quotient = if amount <= U160_MAX {
            (amount << 96) / liquidity
        } else {
            amount.mul_div(Q96, liquidity)?
        };

        Uint::uint_try_from(sqrt_price_x96 + quotient)
            .map_err(|_| anyhow!("SafeCastToU160Overflow"))
    } else {
        let quotient = if amount <= U160_MAX {
            (amount << 96_i32).div_ceil(liquidity)
        } else {
            amount.mul_div_rounding_up(Q96, liquidity)?
        };

        if sqrt_price_x96 > quotient {
            Ok(Uint::from(sqrt_price_x96 - quotient))
        } else {
            Err(anyhow!("Insufficient liquidity"))
        }
    }
}

/// Gets the next sqrt price given an input amount of token0 or token1
#[inline]
pub fn get_next_sqrt_price_from_input<const BITS: usize, const LIMBS: usize>(
    sqrt_price_x96: Uint<BITS, LIMBS>,
    liquidity: u128,
    amount_in: U256,
    zero_for_one: bool,
) -> Result<Uint<BITS, LIMBS>> {
    if sqrt_price_x96.is_zero() || liquidity.is_zero() {
        return Err(anyhow!("Invalid price or liquidity"));
    }

    if zero_for_one {
        get_next_sqrt_price_from_amount_0_rounding_up(sqrt_price_x96, liquidity, amount_in, true)
    } else {
        get_next_sqrt_price_from_amount_1_rounding_down(sqrt_price_x96, liquidity, amount_in, true)
    }
}

/// Gets the next sqrt price given an output amount of token0 or token1
#[inline]
pub fn get_next_sqrt_price_from_output<const BITS: usize, const LIMBS: usize>(
    sqrt_price_x96: Uint<BITS, LIMBS>,
    liquidity: u128,
    amount_out: U256,
    zero_for_one: bool,
) -> Result<Uint<BITS, LIMBS>> {
    if sqrt_price_x96.is_zero() || liquidity.is_zero() {
        return Err(anyhow!("Invalid price or liquidity"));
    }

    if zero_for_one {
        get_next_sqrt_price_from_amount_1_rounding_down(
            sqrt_price_x96,
            liquidity,
            amount_out,
            false,
        )
    } else {
        get_next_sqrt_price_from_amount_0_rounding_up(sqrt_price_x96, liquidity, amount_out, false)
    }
}

#[inline]
fn sort2<const BITS: usize, const LIMBS: usize>(
    a: Uint<BITS, LIMBS>,
    b: Uint<BITS, LIMBS>,
) -> (U256, U256) {
    if a > b {
        (U256::from(b), U256::from(a))
    } else {
        (U256::from(a), U256::from(b))
    }
}

/// Gets the amount0 delta between two prices
#[inline]
pub fn get_amount_0_delta<const BITS: usize, const LIMBS: usize>(
    sqrt_ratio_a_x96: Uint<BITS, LIMBS>,
    sqrt_ratio_b_x96: Uint<BITS, LIMBS>,
    liquidity: u128,
    round_up: bool,
) -> Result<U256> {
    let (sqrt_ratio_a_x96, sqrt_ratio_b_x96) = sort2(sqrt_ratio_a_x96, sqrt_ratio_b_x96);

    if sqrt_ratio_a_x96.is_zero() {
        return Err(anyhow!("Invalid price"));
    }

    let numerator_1: U256 = U256::from(liquidity) << 96;
    let numerator_2 = sqrt_ratio_b_x96 - sqrt_ratio_a_x96;

    Ok(if round_up {
        numerator_1
            .mul_div_rounding_up(numerator_2, sqrt_ratio_b_x96)?
            .div_ceil(sqrt_ratio_a_x96)
    } else {
        numerator_1.mul_div(numerator_2, sqrt_ratio_b_x96)? / sqrt_ratio_a_x96
    })
}

/// Gets the amount1 delta between two prices
#[inline]
pub fn get_amount_1_delta<const BITS: usize, const LIMBS: usize>(
    sqrt_ratio_a_x96: Uint<BITS, LIMBS>,
    sqrt_ratio_b_x96: Uint<BITS, LIMBS>,
    liquidity: u128,
    round_up: bool,
) -> Result<U256> {
    let (sqrt_ratio_a_x96, sqrt_ratio_b_x96) = sort2(sqrt_ratio_a_x96, sqrt_ratio_b_x96);

    let numerator = sqrt_ratio_b_x96 - sqrt_ratio_a_x96;
    let denominator = Q96;

    let liquidity = U256::from(liquidity);
    let amount_1 = liquidity.mul_div_q96(numerator)?;
    let carry = liquidity.mul_mod(numerator, denominator) > U256::ZERO && round_up;
    Ok(amount_1 + U256::from_limbs([carry as u64, 0, 0, 0]))
}

/// Helper that gets signed token0 delta
#[inline]
pub fn get_amount_0_delta_signed<const BITS: usize, const LIMBS: usize>(
    sqrt_ratio_a_x96: Uint<BITS, LIMBS>,
    sqrt_ratio_b_x96: Uint<BITS, LIMBS>,
    liquidity: i128,
) -> Result<I256> {
    let sign = !liquidity.is_negative();
    let mask = (sign as u128).wrapping_sub(1);
    let liquidity = mask ^ mask.wrapping_add_signed(liquidity);
    let mask = mask as u64;
    let mask = I256::from_limbs([mask, mask, mask, mask]);
    let amount_0 = I256::from_raw(get_amount_0_delta(
        sqrt_ratio_a_x96,
        sqrt_ratio_b_x96,
        liquidity,
        sign,
    )?);
    Ok((amount_0 ^ mask) - mask)
}

/// Helper that gets signed token1 delta
#[inline]
pub fn get_amount_1_delta_signed<const BITS: usize, const LIMBS: usize>(
    sqrt_ratio_a_x96: Uint<BITS, LIMBS>,
    sqrt_ratio_b_x96: Uint<BITS, LIMBS>,
    liquidity: i128,
) -> Result<I256> {
    let sign = !liquidity.is_negative();
    let mask = (sign as u128).wrapping_sub(1);
    let liquidity = mask ^ mask.wrapping_add_signed(liquidity);
    let mask = mask as u64;
    let mask = I256::from_limbs([mask, mask, mask, mask]);
    let amount_1 = I256::from_raw(get_amount_1_delta(
        sqrt_ratio_a_x96,
        sqrt_ratio_b_x96,
        liquidity,
        sign,
    )?);
    Ok((amount_1 ^ mask) - mask)
}

#[cfg(test)]
mod tests {
    use super::*;
    use alloy::{
        primitives::{keccak256, U160},
        sol_types::SolValue,
    };
    use uniswap_v3_math::{error::UniswapV3MathError, sqrt_price_math};

    fn pseudo_random(seed: u64) -> U256 {
        keccak256(seed.abi_encode()).into()
    }

    fn pseudo_random_128(seed: u64) -> u128 {
        let s: U256 = keccak256(seed.abi_encode()).into();
        u128::from_be_bytes(s.to_be_bytes::<32>()[..16].try_into().unwrap())
    }

    fn generate_inputs() -> Vec<(U256, u128, U256, bool)> {
        (0_u64..1000)
            .map(|i| {
                (
                    pseudo_random(i),
                    pseudo_random_128(i.pow(2)),
                    pseudo_random(i.pow(3)),
                    i % 2 == 0,
                )
            })
            .collect()
    }

    #[allow(clippy::needless_pass_by_value)]
    fn match_u256(res: Result<U256>, ref_: Result<U256, UniswapV3MathError>) {
        match res {
            Ok(res) => {
                assert_eq!(res, ref_.unwrap());
            }
            Err(_) => {
                assert!(ref_.is_err());
            }
        }
    }

    #[test]
    fn test_get_next_sqrt_price_from_input() {
        let inputs = generate_inputs();
        for (sqrt_price_x_96, liquidity, amount, add) in inputs {
            let sqrt_price_x_96 = U160::saturating_from(sqrt_price_x_96);
            let res = get_next_sqrt_price_from_input(sqrt_price_x_96, liquidity, amount, add);
            let ref_ = sqrt_price_math::get_next_sqrt_price_from_input(
                U256::from(sqrt_price_x_96),
                liquidity,
                amount,
                add,
            );
            match_u256(res.map(U256::from), ref_);
        }
    }

    #[test]
    fn test_get_next_sqrt_price_from_output() {
        let inputs = generate_inputs();
        for (sqrt_price_x_96, liquidity, amount, add) in inputs {
            let sqrt_price_x_96 = U160::saturating_from(sqrt_price_x_96);
            let res = get_next_sqrt_price_from_output(sqrt_price_x_96, liquidity, amount, add);
            let ref_ = sqrt_price_math::get_next_sqrt_price_from_output(
                U256::from(sqrt_price_x_96),
                liquidity,
                amount,
                add,
            );
            match_u256(res.map(U256::from), ref_);
        }
    }

    #[test]
    fn test_get_amount_0_delta() {
        let inputs = generate_inputs();
        for (sqrt_ratio_a_x96, liquidity, sqrt_ratio_b_x96, round_up) in inputs {
            let sqrt_ratio_a_x96 = U160::saturating_from(sqrt_ratio_a_x96);
            let sqrt_ratio_b_x96 = U160::saturating_from(sqrt_ratio_b_x96);
            let res = get_amount_0_delta(sqrt_ratio_a_x96, sqrt_ratio_b_x96, liquidity, round_up);
            let ref_ = sqrt_price_math::_get_amount_0_delta(
                U256::from(sqrt_ratio_a_x96),
                U256::from(sqrt_ratio_b_x96),
                liquidity,
                round_up,
            );
            match_u256(res, ref_);
        }
    }

    #[test]
    fn test_get_amount_1_delta() {
        let inputs = generate_inputs();
        for (sqrt_ratio_a_x96, liquidity, sqrt_ratio_b_x96, round_up) in inputs {
            let sqrt_ratio_a_x96 = U160::saturating_from(sqrt_ratio_a_x96);
            let sqrt_ratio_b_x96 = U160::saturating_from(sqrt_ratio_b_x96);
            let res = get_amount_1_delta(sqrt_ratio_a_x96, sqrt_ratio_b_x96, liquidity, round_up);
            let ref_ = sqrt_price_math::_get_amount_1_delta(
                U256::from(sqrt_ratio_a_x96),
                U256::from(sqrt_ratio_b_x96),
                liquidity,
                round_up,
            );
            match_u256(res, ref_);
        }
    }

    #[test]
    fn test_get_amount_0_delta_signed() {
        let inputs = generate_inputs();
        for (sqrt_ratio_a_x96, liquidity, sqrt_ratio_b_x96, _) in inputs {
            let sqrt_ratio_a_x96 = U160::saturating_from(sqrt_ratio_a_x96);
            let sqrt_ratio_b_x96 = U160::saturating_from(sqrt_ratio_b_x96);
            let res =
                get_amount_0_delta_signed(sqrt_ratio_a_x96, sqrt_ratio_b_x96, liquidity as i128)
                    .map(I256::into_raw);
            let ref_ = sqrt_price_math::get_amount_0_delta(
                U256::from(sqrt_ratio_a_x96),
                U256::from(sqrt_ratio_b_x96),
                liquidity as i128,
            );
            match ref_ {
                Ok(ref_) => {
                    assert_eq!(res.unwrap(), ref_.into_raw());
                }
                Err(_) => {
                    assert!(res.is_err());
                }
            }
        }
    }

    #[test]
    fn test_get_amount_1_delta_signed() {
        let inputs = generate_inputs();
        for (sqrt_ratio_a_x96, liquidity, sqrt_ratio_b_x96, _) in inputs {
            let sqrt_ratio_a_x96 = U160::saturating_from(sqrt_ratio_a_x96);
            let sqrt_ratio_b_x96 = U160::saturating_from(sqrt_ratio_b_x96);
            let res =
                get_amount_1_delta_signed(sqrt_ratio_a_x96, sqrt_ratio_b_x96, liquidity as i128)
                    .map(I256::into_raw);
            let ref_ = sqrt_price_math::get_amount_1_delta(
                U256::from(sqrt_ratio_a_x96),
                U256::from(sqrt_ratio_b_x96),
                liquidity as i128,
            );
            match ref_ {
                Ok(ref_) => {
                    assert_eq!(res.unwrap(), ref_.into_raw());
                }
                Err(_) => {
                    assert!(res.is_err());
                }
            }
        }
    }
}