From e9594a053afd7cb83e8eeafd7124b19e9e8e5ca8 Mon Sep 17 00:00:00 2001 From: "mia von steinkirch, phd" <1130416+mvonsteinkirch@users.noreply.github.com> Date: Tue, 20 Dec 2022 16:18:12 -0800 Subject: [PATCH] Update just-in-time.md --- uniswap/uniswap-v3/just-in-time.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/uniswap/uniswap-v3/just-in-time.md b/uniswap/uniswap-v3/just-in-time.md index 5257ad2..6da09d6 100644 --- a/uniswap/uniswap-v3/just-in-time.md +++ b/uniswap/uniswap-v3/just-in-time.md @@ -2,13 +2,29 @@
+### tl; dr + * jit liquidity is a form of liquidity provision where an LP mints and burns a concentrated position immediately before and after a swap. * because provision has significant costs, it's usually only used against very large swaps * jit lps face competition in mev auction market - the price improvement provided by jit liquidity should be capped by twice the fee rate of the pool that jit occurs in. +
+ +---- + +### impermanent loss (il) + +* uniswap lps profit a fixed trading fee associated with each liquidity pool, typically 0.01%, 0.05%, or 0.3% of the value of each swap +* when the price of the two assets begins to diverge, lps experience il associated with that divergence, as lps are continuously selling the appreciating asset of the pair for more of the depreciating asset. +* lps are in profit overall if the trading fees outweigh the il they are subject (either v2 or v3) +* in uniswap v3, lps may capture more tradng fees whenever their liquidity is in range, however, if the price moves permanently out of the range of their liquidity, their il aggravates. +* additionally, uniswap v3 comes with just-in-time (jit) liquidity, which reduces the fee accrual of normal lp. +
+---- + ### resources * [uniswap's jit liquidity](https://uniswap.org/blog/jit-liquidity)