1#![allow(clippy::collapsible_else_if)]
2#![allow(clippy::too_many_arguments)]
3
4use crate::{calculate_tuna_protocol_fee, sqrt_price_x64_to_price_x64, COMPUTED_AMOUNT, HUNDRED_PERCENT, INVALID_ARGUMENTS};
5use fixed::types::U64F64;
6use fusionamm_core::{
7 get_amount_a_from_liquidity, get_amount_b_from_liquidity, get_amounts_from_liquidity, get_liquidity_from_amount_a, get_liquidity_from_amount_b,
8 get_liquidity_from_amounts, position_ratio_x64, tick_index_to_sqrt_price, try_apply_swap_fee, CoreError, ARITHMETIC_OVERFLOW, Q64_RESOLUTION,
9};
10
11#[cfg(feature = "wasm")]
12use fusionamm_macros::wasm_expose;
13
14#[derive(Debug, Copy, Clone, PartialEq)]
15#[cfg_attr(feature = "wasm", wasm_expose)]
16pub struct LiquidationPrices {
17 pub lower: f64,
18 pub upper: f64,
19}
20
21fn compute_liquidation_prices_inside(
53 lower_sqrt_price: u128,
54 upper_sqrt_price: u128,
55 liquidity: u128,
56 leftovers_a: u64,
57 leftovers_b: u64,
58 debt_a: u64,
59 debt_b: u64,
60 liquidation_threshold: u32,
61) -> Result<LiquidationPrices, CoreError> {
62 let liquidation_threshold_f = liquidation_threshold as f64 / HUNDRED_PERCENT as f64;
63 let liquidity_f = liquidity as f64;
64 let lower_sqrt_price_f = lower_sqrt_price as f64 / Q64_RESOLUTION;
65 let upper_sqrt_price_f = upper_sqrt_price as f64 / Q64_RESOLUTION;
66
67 let a = debt_a as f64 + liquidation_threshold_f * (liquidity_f / upper_sqrt_price_f - leftovers_a as f64);
68 let b = -2.0 * liquidation_threshold_f * liquidity_f;
69 let c = debt_b as f64 + liquidation_threshold_f * (liquidity_f * lower_sqrt_price_f - leftovers_b as f64);
70 let d = b * b - 4.0 * a * c;
71
72 let mut lower_liquidation_sqrt_price = 0.0;
73 let mut upper_liquidation_sqrt_price = 0.0;
74
75 if d >= 0.0 {
76 lower_liquidation_sqrt_price = (-b - d.sqrt()) / (2.0 * a);
77 upper_liquidation_sqrt_price = (-b + d.sqrt()) / (2.0 * a);
78 if lower_liquidation_sqrt_price < 0.0 || lower_liquidation_sqrt_price < lower_sqrt_price_f {
79 lower_liquidation_sqrt_price = 0.0;
80 }
81 if upper_liquidation_sqrt_price < 0.0 || upper_liquidation_sqrt_price > upper_sqrt_price_f {
82 upper_liquidation_sqrt_price = 0.0;
83 }
84 }
85
86 Ok(LiquidationPrices {
87 lower: lower_liquidation_sqrt_price * lower_liquidation_sqrt_price,
88 upper: upper_liquidation_sqrt_price * upper_liquidation_sqrt_price,
89 })
90}
91
92fn calculate_liquidation_outside(
123 amount_a: u64,
124 amount_b: u64,
125 leftovers_a: u64,
126 leftovers_b: u64,
127 debt_a: u64,
128 debt_b: u64,
129 liquidation_threshold: u32,
130) -> Result<f64, CoreError> {
131 let liquidation_threshold_f = liquidation_threshold as f64 / HUNDRED_PERCENT as f64;
132
133 if amount_a == 0 && amount_b == 0 {
134 Ok(0.0)
135 } else if amount_a > 0 && amount_b == 0 {
136 let numerator = debt_b as f64 - liquidation_threshold_f * leftovers_b as f64;
138 let denominator = liquidation_threshold_f * (amount_a + leftovers_a) as f64 - debt_a as f64;
139 Ok(numerator / denominator)
140 } else if amount_a == 0 && amount_b > 0 {
141 let numerator = liquidation_threshold_f * (amount_b + leftovers_b) as f64 - debt_b as f64;
143 let denominator = debt_a as f64 - liquidation_threshold_f * leftovers_a as f64;
144 if denominator == 0.0 {
145 return Ok(0.0);
146 }
147 Ok(numerator / denominator)
148 } else {
149 Err(INVALID_ARGUMENTS)
150 }
151}
152
153fn compute_liquidation_prices_outside(
168 lower_sqrt_price: u128,
169 upper_sqrt_price: u128,
170 liquidity: u128,
171 leftovers_a: u64,
172 leftovers_b: u64,
173 debt_a: u64,
174 debt_b: u64,
175 liquidation_threshold: u32,
176) -> Result<LiquidationPrices, CoreError> {
177 let amount_a = get_amount_a_from_liquidity(liquidity, lower_sqrt_price, upper_sqrt_price, false)?;
178 let amount_b = get_amount_b_from_liquidity(liquidity, lower_sqrt_price, upper_sqrt_price, false)?;
179
180 let mut liquidation_price_for_a = calculate_liquidation_outside(amount_a, 0, leftovers_a, leftovers_b, debt_a, debt_b, liquidation_threshold)?;
181 let mut liquidation_price_for_b = calculate_liquidation_outside(0, amount_b, leftovers_a, leftovers_b, debt_a, debt_b, liquidation_threshold)?;
182
183 if liquidation_price_for_a < 0.0 || liquidation_price_for_a > (lower_sqrt_price as f64 / Q64_RESOLUTION).powf(2.0) {
184 liquidation_price_for_a = 0.0;
185 }
186 if liquidation_price_for_b < 0.0 || liquidation_price_for_b < (upper_sqrt_price as f64 / Q64_RESOLUTION).powf(2.0) {
187 liquidation_price_for_b = 0.0;
188 }
189
190 Ok(LiquidationPrices {
191 lower: liquidation_price_for_a,
192 upper: liquidation_price_for_b,
193 })
194}
195
196#[cfg_attr(feature = "wasm", wasm_expose)]
211pub fn get_lp_position_liquidation_prices(
212 tick_lower_index: i32,
213 tick_upper_index: i32,
214 liquidity: u128,
215 leftovers_a: u64,
216 leftovers_b: u64,
217 debt_a: u64,
218 debt_b: u64,
219 liquidation_threshold: u32,
220) -> Result<LiquidationPrices, CoreError> {
221 if tick_lower_index >= tick_upper_index {
222 return Err("Incorrect position tick index order: the lower tick must be less then the upper tick.");
223 }
224
225 if liquidation_threshold >= HUNDRED_PERCENT {
226 return Err("Incorrect liquidation_threshold value.");
227 }
228
229 let lower_sqrt_price = tick_index_to_sqrt_price(tick_lower_index);
230 let upper_sqrt_price = tick_index_to_sqrt_price(tick_upper_index);
231
232 let liquidation_price_inside = compute_liquidation_prices_inside(
233 lower_sqrt_price,
234 upper_sqrt_price,
235 liquidity,
236 leftovers_a,
237 leftovers_b,
238 debt_a,
239 debt_b,
240 liquidation_threshold,
241 )?;
242
243 let liquidation_price_outside = compute_liquidation_prices_outside(
244 lower_sqrt_price,
245 upper_sqrt_price,
246 liquidity,
247 leftovers_a,
248 leftovers_b,
249 debt_a,
250 debt_b,
251 liquidation_threshold,
252 )?;
253
254 let lower_liquidation_price = if liquidation_price_inside.lower > 0.0 {
255 liquidation_price_inside.lower
256 } else {
257 liquidation_price_outside.lower
258 };
259
260 let upper_liquidation_price = if liquidation_price_inside.upper > 0.0 {
261 liquidation_price_inside.upper
262 } else {
263 liquidation_price_outside.upper
264 };
265
266 Ok(LiquidationPrices {
267 lower: lower_liquidation_price,
268 upper: upper_liquidation_price,
269 })
270}
271
272#[derive(Debug, Copy, Clone, PartialEq)]
273#[cfg_attr(feature = "wasm", wasm_expose)]
274pub struct IncreaseLpPositionQuoteArgs {
275 pub collateral_a: u64,
277 pub collateral_b: u64,
279 pub borrow_a: u64,
281 pub borrow_b: u64,
283 pub protocol_fee_rate: u16,
285 pub protocol_fee_rate_on_collateral: u16,
287 pub swap_fee_rate: u16,
289 pub sqrt_price: u128,
291 pub tick_lower_index: i32,
293 pub tick_upper_index: i32,
295 pub liquidation_threshold: u32,
297}
298
299#[derive(Debug, Copy, Clone, PartialEq)]
300#[cfg_attr(feature = "wasm", wasm_expose)]
301pub struct IncreaseLpPositionQuoteResult {
302 pub collateral_a: u64,
303 pub collateral_b: u64,
304 pub borrow_a: u64,
305 pub borrow_b: u64,
306 pub total_a: u64,
307 pub total_b: u64,
308 pub swap_input: u64,
309 pub swap_output: u64,
310 pub swap_a_to_b: bool,
311 pub protocol_fee_a: u64,
312 pub protocol_fee_b: u64,
313 pub liquidity: u128,
314 pub leverage: f64,
315 pub liquidation_lower_price: f64,
316 pub liquidation_upper_price: f64,
317}
318
319#[cfg_attr(feature = "wasm", wasm_expose)]
320pub fn get_increase_lp_position_quote(args: IncreaseLpPositionQuoteArgs) -> Result<IncreaseLpPositionQuoteResult, CoreError> {
321 let mut collateral_a = args.collateral_a;
322 let mut collateral_b = args.collateral_b;
323 let mut borrow_a = args.borrow_a;
324 let mut borrow_b = args.borrow_b;
325 let sqrt_price = args.sqrt_price;
326
327 if args.tick_lower_index >= args.tick_upper_index {
328 return Err("Incorrect position tick index order: the lower tick must be less than the upper tick.");
329 }
330
331 if collateral_a == COMPUTED_AMOUNT && collateral_b == COMPUTED_AMOUNT {
332 return Err("Both collateral amounts can't be set to COMPUTED_AMOUNT");
333 }
334
335 let lower_sqrt_price = tick_index_to_sqrt_price(args.tick_lower_index);
336 let upper_sqrt_price = tick_index_to_sqrt_price(args.tick_upper_index);
337
338 if collateral_a == COMPUTED_AMOUNT {
339 if sqrt_price <= lower_sqrt_price {
340 return Err("sqrtPrice must be greater than lower_sqrt_price if collateral A is computed.");
341 } else if sqrt_price < upper_sqrt_price {
342 let liquidity = get_liquidity_from_amount_b(collateral_b + borrow_b, lower_sqrt_price, sqrt_price)?;
343 let amount_a = get_amount_a_from_liquidity(liquidity, sqrt_price, upper_sqrt_price, false)?;
344 collateral_a = (amount_a * collateral_b) / (collateral_b + borrow_b);
345 borrow_a = amount_a - collateral_a;
346 } else {
347 collateral_a = 0;
348 borrow_a = 0;
349 }
350 } else if collateral_b == COMPUTED_AMOUNT {
351 if sqrt_price <= lower_sqrt_price {
352 collateral_b = 0;
353 borrow_b = 0;
354 } else if sqrt_price < upper_sqrt_price {
355 let liquidity = get_liquidity_from_amount_a(collateral_a + borrow_a, sqrt_price, upper_sqrt_price)?;
356 let amount_b = get_amount_b_from_liquidity(liquidity, lower_sqrt_price, sqrt_price, false)?;
357 collateral_b = (amount_b * collateral_a) / (collateral_a + borrow_a);
358 borrow_b = amount_b - collateral_b;
359 } else {
360 return Err("sqrtPrice must be less than upper_sqrt_price if collateral B is computed.");
361 }
362 }
363
364 let protocol_fee_a = calculate_tuna_protocol_fee(collateral_a, borrow_a, args.protocol_fee_rate_on_collateral, args.protocol_fee_rate);
365 let provided_a = collateral_a + borrow_a - protocol_fee_a;
366
367 let protocol_fee_b = calculate_tuna_protocol_fee(collateral_b, borrow_b, args.protocol_fee_rate_on_collateral, args.protocol_fee_rate);
368 let provided_b = collateral_b + borrow_b - protocol_fee_b;
369
370 let mut swap_input = 0;
371 let mut swap_output = 0;
372 let mut swap_a_to_b = false;
373 let mut total_a = provided_a;
374 let mut total_b = provided_b;
375
376 if args.collateral_a != COMPUTED_AMOUNT && args.collateral_b != COMPUTED_AMOUNT {
377 let position_ratio = position_ratio_x64(sqrt_price.into(), args.tick_lower_index, args.tick_upper_index);
378 let ratio_a = position_ratio.ratio_a as f64 / Q64_RESOLUTION;
379 let ratio_b = position_ratio.ratio_b as f64 / Q64_RESOLUTION;
380
381 let price = (sqrt_price as f64 / Q64_RESOLUTION).powf(2.0);
382
383 let mut total = (provided_a as f64 * price + provided_b as f64) as u64;
385 total_a = (total as f64 * ratio_a / price) as u64;
386 total_b = (total as f64 * ratio_b) as u64;
387
388 let mut fee_a = 0;
389 let mut fee_b = 0;
390
391 if total_a < provided_a {
392 swap_input = provided_a - total_a;
393 fee_a = swap_input - try_apply_swap_fee(swap_input, args.swap_fee_rate)?;
394 swap_output = ((swap_input - fee_a) as f64 * price) as u64;
395 swap_a_to_b = true;
396 } else if total_b < provided_b {
397 swap_input = provided_b - total_b;
398 fee_b = swap_input - try_apply_swap_fee(swap_input, args.swap_fee_rate)?;
399 swap_output = ((swap_input - fee_b) as f64 / price) as u64;
400 swap_a_to_b = false;
401 }
402
403 total = ((provided_a - fee_a) as f64 * price) as u64 + provided_b - fee_b;
405 total_a = ((total as f64 * ratio_a) / price) as u64;
406 total_b = (total as f64 * ratio_b) as u64;
407 }
408
409 let liquidity = get_liquidity_from_amounts(sqrt_price, lower_sqrt_price, upper_sqrt_price, total_a, total_b)?;
410 let liquidation_prices = get_lp_position_liquidation_prices(
411 args.tick_lower_index,
412 args.tick_upper_index,
413 liquidity,
414 0,
415 0,
416 borrow_a,
417 borrow_b,
418 args.liquidation_threshold,
419 )?;
420
421 let leverage = compute_leverage(total_a, total_b, borrow_a, borrow_b, sqrt_price)?;
422
423 Ok(IncreaseLpPositionQuoteResult {
424 collateral_a,
425 collateral_b,
426 borrow_a,
427 borrow_b,
428 total_a,
429 total_b,
430 swap_input,
431 swap_output,
432 swap_a_to_b,
433 protocol_fee_a,
434 protocol_fee_b,
435 liquidity,
436 leverage,
437 liquidation_lower_price: liquidation_prices.lower,
438 liquidation_upper_price: liquidation_prices.upper,
439 })
440}
441
442#[derive(Debug, Copy, Clone, PartialEq)]
443#[cfg_attr(feature = "wasm", wasm_expose)]
444pub struct RepayLpPositionDebtQuoteArgs {
445 pub liquidity: u128,
447 pub debt_a: u64,
449 pub debt_b: u64,
451 pub leftovers_a: u64,
453 pub leftovers_b: u64,
455 pub tick_lower_index: i32,
457 pub tick_upper_index: i32,
459 pub repay_a: u64,
461 pub repay_b: u64,
463 pub sqrt_price: u128,
465 pub liquidation_threshold: u32,
467}
468
469#[derive(Debug, Copy, Clone, PartialEq)]
470#[cfg_attr(feature = "wasm", wasm_expose)]
471pub struct RepayLpPositionDebtQuoteResult {
472 pub debt_a: u64,
473 pub debt_b: u64,
474 pub leverage: f64,
475 pub liquidation_lower_price: f64,
476 pub liquidation_upper_price: f64,
477}
478
479#[cfg_attr(feature = "wasm", wasm_expose)]
480pub fn get_repay_lp_position_debt_quote(args: RepayLpPositionDebtQuoteArgs) -> Result<RepayLpPositionDebtQuoteResult, CoreError> {
481 let mut debt_a = args.debt_a;
482 let mut debt_b = args.debt_b;
483 let repay_a = args.repay_a;
484 let repay_b = args.repay_b;
485
486 if args.liquidity == 0 {
487 return Err("Position liquidity can't be zero.");
488 }
489
490 if debt_a < repay_a {
491 return Err("Position debt A is less than the repaid amount.");
492 }
493
494 if debt_b < repay_b {
495 return Err("Position debt b is less than the repaid amount.");
496 }
497
498 debt_a -= repay_a;
499 debt_b -= repay_b;
500
501 let liquidation_prices = get_lp_position_liquidation_prices(
502 args.tick_lower_index,
503 args.tick_upper_index,
504 args.liquidity,
505 args.leftovers_a,
506 args.leftovers_b,
507 debt_a,
508 debt_b,
509 args.liquidation_threshold,
510 )?;
511
512 let lower_sqrt_price = tick_index_to_sqrt_price(args.tick_lower_index);
513 let upper_sqrt_price = tick_index_to_sqrt_price(args.tick_upper_index);
514
515 let total = get_amounts_from_liquidity(args.liquidity, args.sqrt_price, lower_sqrt_price, upper_sqrt_price, false)?;
516 let leverage = compute_leverage(total.a + args.leftovers_a, total.b + args.leftovers_b, debt_a, debt_b, args.sqrt_price)?;
517
518 Ok(RepayLpPositionDebtQuoteResult {
519 debt_a,
520 debt_b,
521 leverage,
522 liquidation_lower_price: liquidation_prices.lower,
523 liquidation_upper_price: liquidation_prices.upper,
524 })
525}
526
527#[cfg_attr(feature = "wasm", wasm_expose)]
528pub fn compute_leverage(total_a: u64, total_b: u64, debt_a: u64, debt_b: u64, sqrt_price: u128) -> Result<f64, CoreError> {
529 let price = sqrt_price_x64_to_price_x64(sqrt_price)?;
530
531 let total = U64F64::from(total_a)
532 .checked_mul(price)
533 .ok_or(ARITHMETIC_OVERFLOW)?
534 .to_num::<u64>()
535 .checked_add(total_b)
536 .ok_or(ARITHMETIC_OVERFLOW)?;
537
538 let debt = U64F64::from(debt_a)
539 .checked_mul(price)
540 .ok_or(ARITHMETIC_OVERFLOW)?
541 .to_num::<u64>()
542 .checked_add(debt_b)
543 .ok_or(ARITHMETIC_OVERFLOW)?;
544
545 if total == 0 {
547 return Ok(1.0);
548 }
549
550 if debt >= total {
551 return Err("The debt is greater than the total size");
552 }
553
554 let leverage = total as f64 / (total - debt) as f64;
555 Ok(leverage)
556}
557
558#[cfg(all(test, not(feature = "wasm")))]
559mod tests {
560 use crate::{
561 get_increase_lp_position_quote, get_lp_position_liquidation_prices, get_repay_lp_position_debt_quote, IncreaseLpPositionQuoteArgs,
562 IncreaseLpPositionQuoteResult, LiquidationPrices, RepayLpPositionDebtQuoteArgs, COMPUTED_AMOUNT, HUNDRED_PERCENT,
563 };
564 use fusionamm_core::{get_liquidity_from_amount_b, price_to_sqrt_price, price_to_tick_index, tick_index_to_sqrt_price};
565 use once_cell::sync::Lazy;
566
567 pub static TICK_LOWER_INDEX: Lazy<i32> = Lazy::new(|| price_to_tick_index(180.736, 6, 6));
568 pub static TICK_UPPER_INDEX: Lazy<i32> = Lazy::new(|| price_to_tick_index(225.66, 6, 6));
569 pub static SQRT_PRICE: Lazy<u128> = Lazy::new(|| price_to_sqrt_price(213.41, 6, 6));
570 pub static LIQUIDITY: Lazy<u128> =
571 Lazy::new(|| get_liquidity_from_amount_b(10000_000_000, tick_index_to_sqrt_price(*TICK_LOWER_INDEX), *SQRT_PRICE).unwrap());
572
573 #[test]
574 fn test_liquidation_price_outside_range_lower() {
575 assert_eq!(
576 get_lp_position_liquidation_prices(
577 *TICK_LOWER_INDEX,
578 *TICK_UPPER_INDEX,
579 *LIQUIDITY,
580 0, 0, 0, 9807_000_000, HUNDRED_PERCENT * 83 / 100 ),
586 Ok(LiquidationPrices {
587 lower: 176.12815046153585,
588 upper: 0.0
589 })
590 );
591 }
592
593 #[test]
594 fn test_liquidation_price_outside_range_upper() {
595 assert_eq!(
596 get_lp_position_liquidation_prices(
597 *TICK_LOWER_INDEX,
598 *TICK_UPPER_INDEX,
599 *LIQUIDITY,
600 0, 0, 20_000_000, 0, HUNDRED_PERCENT * 83 / 100 ),
606 Ok(LiquidationPrices {
607 lower: 0.0,
608 upper: 562.219410388
609 })
610 );
611 }
612
613 #[test]
614 fn test_liquidation_price_outside_range_lower_and_upper() {
615 assert_eq!(
616 get_lp_position_liquidation_prices(
617 *TICK_LOWER_INDEX,
618 *TICK_UPPER_INDEX,
619 *LIQUIDITY,
620 0, 0, 10_000_000, 5000_000_000, HUNDRED_PERCENT * 83 / 100 ),
626 Ok(LiquidationPrices {
627 lower: 109.45458168998225,
628 upper: 624.4388207760001
629 })
630 );
631 }
632
633 #[test]
634 fn test_liquidation_price_inside_range_lower() {
635 assert_eq!(
636 get_lp_position_liquidation_prices(
637 *TICK_LOWER_INDEX,
638 *TICK_UPPER_INDEX,
639 *LIQUIDITY,
640 0, 0, 0, 11000_000_000, HUNDRED_PERCENT * 83 / 100 ),
646 Ok(LiquidationPrices {
647 lower: 204.60489065334323,
648 upper: 0.0
649 })
650 );
651 }
652
653 #[test]
654 fn test_liquidation_price_inside_range_upper() {
655 assert_eq!(
656 get_lp_position_liquidation_prices(
657 *TICK_LOWER_INDEX,
658 *TICK_UPPER_INDEX,
659 *LIQUIDITY,
660 0, 0, 51_000_000, 0, HUNDRED_PERCENT * 83 / 100 ),
666 Ok(LiquidationPrices {
667 lower: 0.0,
668 upper: 220.16318077637644
669 })
670 );
671 }
672
673 #[test]
674 fn test_liquidation_price_inside_range_lower_and_upper() {
675 assert_eq!(
676 get_lp_position_liquidation_prices(
677 *TICK_LOWER_INDEX,
678 *TICK_UPPER_INDEX,
679 *LIQUIDITY,
680 0, 0, 11_500_000, 8700_000_000, HUNDRED_PERCENT * 83 / 100 ),
686 Ok(LiquidationPrices {
687 lower: 210.75514596082337,
688 upper: 219.48595430071575
689 })
690 );
691 }
692
693 #[test]
694 fn test_lp_increase_quote_collateral_a_and_b_provided() {
695 assert_eq!(
696 get_increase_lp_position_quote(IncreaseLpPositionQuoteArgs {
697 collateral_a: 1000000,
698 collateral_b: 1000000,
699 borrow_a: 2000000,
700 borrow_b: 2000000,
701 tick_lower_index: price_to_tick_index(1.0, 1, 1),
702 sqrt_price: price_to_sqrt_price(2.0, 1, 1),
703 tick_upper_index: price_to_tick_index(4.0, 1, 1),
704 protocol_fee_rate: (HUNDRED_PERCENT / 100) as u16,
705 protocol_fee_rate_on_collateral: (HUNDRED_PERCENT / 100) as u16,
706 swap_fee_rate: 10000, liquidation_threshold: HUNDRED_PERCENT * 83 / 100,
708 }),
709 Ok(IncreaseLpPositionQuoteResult {
710 collateral_a: 1000000,
711 collateral_b: 1000000,
712 borrow_a: 2000000,
713 borrow_b: 2000000,
714 total_a: 2223701,
715 total_b: 4447744,
716 swap_input: 742586,
717 swap_output: 1470320,
718 swap_a_to_b: true,
719 protocol_fee_a: 30000,
720 protocol_fee_b: 30000,
721 liquidity: 10737803,
722 leverage: 3.0724343435529677,
723 liquidation_lower_price: 0.8143170288470588,
724 liquidation_upper_price: 3.4020457909456225,
725 })
726 );
727 }
728
729 #[test]
730 fn test_lp_increase_quote_collateral_a_provided() {
731 assert_eq!(
732 get_increase_lp_position_quote(IncreaseLpPositionQuoteArgs {
733 collateral_a: 10000000,
734 collateral_b: 0,
735 borrow_a: 0,
736 borrow_b: 0,
737 tick_lower_index: price_to_tick_index(0.25, 6, 9),
738 sqrt_price: price_to_sqrt_price(0.5, 6, 9),
739 tick_upper_index: price_to_tick_index(1.0, 6, 9),
740 protocol_fee_rate: (HUNDRED_PERCENT / 100) as u16,
741 protocol_fee_rate_on_collateral: (HUNDRED_PERCENT / 100) as u16,
742 swap_fee_rate: 10000, liquidation_threshold: HUNDRED_PERCENT * 83 / 100,
744 }),
745 Ok(IncreaseLpPositionQuoteResult {
746 collateral_a: 10000000,
747 collateral_b: 0,
748 borrow_a: 0,
749 borrow_b: 0,
750 total_a: 4925137,
751 total_b: 2462680451,
752 swap_input: 4950113,
753 swap_output: 2450305500,
754 swap_a_to_b: true,
755 protocol_fee_a: 100000,
756 protocol_fee_b: 0,
757 liquidity: 376005629,
758 leverage: 1.0,
759 liquidation_lower_price: 0.0,
760 liquidation_upper_price: 0.0,
761 })
762 );
763 }
764
765 #[test]
766 fn test_lp_increase_quote_collateral_a_provided_b_computed() {
767 assert_eq!(
768 get_increase_lp_position_quote(IncreaseLpPositionQuoteArgs {
769 collateral_a: 10000000,
770 collateral_b: COMPUTED_AMOUNT,
771 borrow_a: 2000000,
772 borrow_b: COMPUTED_AMOUNT,
773 tick_lower_index: price_to_tick_index(1.0, 1, 1),
774 sqrt_price: price_to_sqrt_price(3.0, 1, 1),
775 tick_upper_index: price_to_tick_index(4.0, 1, 1),
776 protocol_fee_rate: 0,
777 protocol_fee_rate_on_collateral: 0,
778 swap_fee_rate: 0,
779 liquidation_threshold: HUNDRED_PERCENT * 83 / 100,
780 }),
781 Ok(IncreaseLpPositionQuoteResult {
782 collateral_a: 10000000,
783 collateral_b: 94660495,
784 borrow_a: 2000000,
785 borrow_b: 18932100,
786 total_a: 12000000,
787 total_b: 113592595,
788 swap_input: 0,
789 swap_output: 0,
790 swap_a_to_b: false,
791 protocol_fee_a: 0,
792 protocol_fee_b: 0,
793 liquidity: 155170370,
794 leverage: 1.2,
795 liquidation_lower_price: 0.30342990360419136,
796 liquidation_upper_price: 54.925553349999994
797 })
798 );
799 }
800
801 #[test]
802 fn test_lp_increase_quote_collateral_a_computed_b_provided() {
803 assert_eq!(
804 get_increase_lp_position_quote(IncreaseLpPositionQuoteArgs {
805 collateral_a: COMPUTED_AMOUNT,
806 collateral_b: 1000000,
807 borrow_a: COMPUTED_AMOUNT,
808 borrow_b: 2000000,
809 tick_lower_index: price_to_tick_index(1.0, 1, 1),
810 sqrt_price: price_to_sqrt_price(3.0, 1, 1),
811 tick_upper_index: price_to_tick_index(4.0, 1, 1),
812 protocol_fee_rate: 0,
813 protocol_fee_rate_on_collateral: 0,
814 swap_fee_rate: 0,
815 liquidation_threshold: HUNDRED_PERCENT * 83 / 100,
816 }),
817 Ok(IncreaseLpPositionQuoteResult {
818 collateral_a: 105640,
819 collateral_b: 1000000,
820 borrow_a: 211282,
821 borrow_b: 2000000,
822 total_a: 316922,
823 total_b: 3000000,
824 swap_input: 0,
825 swap_output: 0,
826 swap_a_to_b: false,
827 protocol_fee_a: 0,
828 protocol_fee_b: 0,
829 liquidity: 4098075,
830 leverage: 3.000003796737843,
831 liquidation_lower_price: 1.4306915613018771,
832 liquidation_upper_price: 6.63182675287057
833 })
834 );
835 }
836
837 #[test]
838 fn test_lp_increase_quote_one_sided_collateral_a_provided_b_computed() {
839 assert_eq!(
840 get_increase_lp_position_quote(IncreaseLpPositionQuoteArgs {
841 collateral_a: 10000000,
842 collateral_b: COMPUTED_AMOUNT,
843 borrow_a: 2000000,
844 borrow_b: COMPUTED_AMOUNT,
845 tick_lower_index: price_to_tick_index(1.0, 1, 1),
846 sqrt_price: price_to_sqrt_price(0.5, 1, 1),
847 tick_upper_index: price_to_tick_index(4.0, 1, 1),
848 protocol_fee_rate: 0,
849 protocol_fee_rate_on_collateral: 0,
850 swap_fee_rate: 0,
851 liquidation_threshold: HUNDRED_PERCENT * 83 / 100,
852 }),
853 Ok(IncreaseLpPositionQuoteResult {
854 collateral_a: 10000000,
855 collateral_b: 0,
856 borrow_a: 2000000,
857 borrow_b: 0,
858 total_a: 12000000,
859 total_b: 0,
860 swap_input: 0,
861 swap_output: 0,
862 swap_a_to_b: false,
863 protocol_fee_a: 0,
864 protocol_fee_b: 0,
865 liquidity: 24000764,
866 leverage: 1.2,
867 liquidation_lower_price: 0.0,
868 liquidation_upper_price: 9.959682525
869 })
870 );
871 }
872
873 #[test]
874 fn test_lp_increase_quote_one_sided_collateral_a_computed_b_provided() {
875 assert_eq!(
876 get_increase_lp_position_quote(IncreaseLpPositionQuoteArgs {
877 collateral_a: COMPUTED_AMOUNT,
878 collateral_b: 1000000,
879 borrow_a: COMPUTED_AMOUNT,
880 borrow_b: 2000000,
881 tick_lower_index: price_to_tick_index(1.0, 1, 1),
882 sqrt_price: price_to_sqrt_price(5.0, 1, 1),
883 tick_upper_index: price_to_tick_index(4.0, 1, 1),
884 protocol_fee_rate: 0,
885 protocol_fee_rate_on_collateral: 0,
886 swap_fee_rate: 0,
887 liquidation_threshold: HUNDRED_PERCENT * 83 / 100,
888 }),
889 Ok(IncreaseLpPositionQuoteResult {
890 collateral_a: 0,
891 collateral_b: 1000000,
892 borrow_a: 0,
893 borrow_b: 2000000,
894 total_a: 0,
895 total_b: 3000000,
896 swap_input: 0,
897 swap_output: 0,
898 swap_a_to_b: false,
899 protocol_fee_a: 0,
900 protocol_fee_b: 0,
901 liquidity: 3000191,
902 leverage: 3.0,
903 liquidation_lower_price: 1.8840617719481452,
904 liquidation_upper_price: 0.0
905 })
906 );
907 }
908
909 #[test]
910 fn test_lp_increase_quote_verify_liquidation_prices() {
911 let quote = get_increase_lp_position_quote(IncreaseLpPositionQuoteArgs {
912 collateral_a: 0,
913 collateral_b: 1000_000_000,
914 borrow_a: 3_000_000,
915 borrow_b: 100_000_000,
916 tick_lower_index: price_to_tick_index(180.736, 6, 6),
917 sqrt_price: price_to_sqrt_price(213.41, 6, 6),
918 tick_upper_index: price_to_tick_index(225.66, 6, 6),
919 protocol_fee_rate: 500,
920 protocol_fee_rate_on_collateral: 500,
921 swap_fee_rate: 40,
922 liquidation_threshold: HUNDRED_PERCENT * 83 / 100,
923 })
924 .unwrap();
925
926 assert_eq!(quote.liquidation_lower_price, 23.805241869982023);
927 assert_eq!(quote.liquidation_upper_price, 451.38033819333333);
928 }
929
930 #[test]
931 fn test_repay_debt_quote() {
932 let quote = get_repay_lp_position_debt_quote(RepayLpPositionDebtQuoteArgs {
933 repay_a: 1_000_000,
934 repay_b: 30_000_000,
935 liquidity: 1109671058,
936 debt_a: 3_000_000,
937 debt_b: 100_000_000,
938 leftovers_a: 2,
939 leftovers_b: 15,
940 tick_lower_index: price_to_tick_index(180.736, 6, 6),
941 sqrt_price: price_to_sqrt_price(213.41, 6, 6),
942 tick_upper_index: price_to_tick_index(225.66, 6, 6),
943 liquidation_threshold: HUNDRED_PERCENT * 83 / 100,
944 })
945 .unwrap();
946
947 assert_eq!(quote.debt_a, 2_000_000);
948 assert_eq!(quote.debt_b, 70_000_000);
949 assert_eq!(quote.liquidation_lower_price, 13.459576327110664);
950 assert_eq!(quote.liquidation_upper_price, 692.0710879340029);
951 }
952}