- A special buffer vault through which all deposits, withdrawals, and rebalancings take place in the strategy to reduce gas consumption
- Uniswap V3 position
- Yield protocols (Aave/Yearn)
DENOMINATOR (typically $$10^9$$) in order to be saved as integers in the code. Hence, when we mention parameters as is, it’s mentioned as is, whereas we mention them multiplied by DENOMINATOR, we mention them with the letter D at the end. For example, erc20CapitalRatio= $$0.5$$, whereas erc20CapitalRatioD = $$5 \cdot 10^8$$.
RootVault Structure
To implement the above capital division into parts, the system of three vaults is used:- ERC20Vault - implements the logic of the special buffer vault
- UniV3Vault - implements UniswapV3Positon control logic
- AaveVault or YearnVault - implements the logic for working with yield protocols
Strategy
The idea of the strategy is to optimize a Uniswap V3 position (domain interval) by using an equally profitable Uniswap V3 position of a smaller size (short interval) and depositing the remaining tokens into yield protocols. This is based on the fact that positions with the same liquidity (in terms of Uniswap V3) receive the same fees and suffer the same impermanent losses. However, the number of tokens required for equal liquidity on a smaller interval is less. So, the remaining tokens are deposited into yield protocols, increasing final APY and reducing non-permanent losses compared to storing tokens in a domain interval on Uniswap V3. The mathematical justification of the formulas we use here is described in this article: Uniswap V3 Voodoo Magic Fuckery To optimize gas consumption for interaction with the strategy, a buffer vault (named erc20Vault in our protocol) is used, theratioParams.erc20CapitalRatioD parameter determines the fraction of capital that is normally stored in this buffer vault. The rest of the capital is distributed to the protocols according to calculated weights (for more details go to Appendix 1.).
Note: this strategy also can emulate not only the position in Uniswap V3 but also the position in Uniswap V2. To do this, it is enough to choose the widest possible domain interval.
The only problem that arises when emulating a domain interval is keeping a short interval active to receive fees from this interval. To do this, the strategy has a rebalance mechanic, which burns an inactive position and mints new, actual one.
Algorithm
The rebalance function consists of two functions:_partialRebalanceOfUniV3Position, which is optional, and _capitalRebalance, which is called every time.
rebalance:
- If the current price has deviated sufficiently concerning the short interval, then the strategy closes the old position and mints a new one via
_partialRebalanceOfUniV3Positionmethod:- Firstly, the strategy removes all liquidity from the old position
- Determines the borders of the new position and mints it (with small amounts)
- Transfers the new position to the uniV3Vault
- Closes the old position
- Rebalancing capitals via
_capitalRebalancemethod:- Calculates current amounts of tokens on each vault
- Calculates expected amounts of tokens after rebalancing with the formulas above
- If the deviation between current amounts and expected amounts is large enough, then the following transfers are done. “enough” is determined by the actual deviation and
ratioParamsparameters of the strategy - Pulls extra tokens from Uniswap V3 position and yield protocols compared to the expected number to erc20Vault (special buffer vault)
- Swaps tokens on Uniswap V3 via the SwapRouter on erc20Vault (if needed)
- Pulls missing (relative to expected values) tokens to Uniswap V3 position and yield protocols from erc20Vault (special buffer vault)
Appendix 1
Below are the formulas that determine the portion of the capital that should be directed to the Uniswap V3 position (short interval) and the yield protocols for both tokens.$$u_{1}= 1 - u_2 - u_3 =\frac{2\sqrt{c}-\sqrt{a}-\frac{c}{\sqrt{b}}}{2\sqrt{c}-\sqrt{a_{0}}-\frac{c}{\sqrt{b_{0}}}}$$ — fraction of capital to Uniswap V3;
$$u_{2}=\frac{\frac{c}{\sqrt{b}}-\frac{c}{\sqrt{b_{0}}}}{2\sqrt{c}-\sqrt{a_{0}}-\frac{c}{\sqrt{b_{0}}}}$$ — fraction of capital to the yield protocol in token X;
$$u_{3}=\frac{\sqrt{a}-\sqrt{a_{0}}}{2\sqrt{c}-\sqrt{a_{0}}-\frac{c}{\sqrt{b_{0}}}}$$ — fraction of capital to the yield protocol in token Y. where:
$$a_0$$,$$b_0$$— domain interval in Uniswap V3$$a$$,$$b$$— short interval in Uniswap V3$$c$$— current price
Appendix 2
To calculate the expected number of tokens in a Uniswap V3 position, we will use the basic Uniswap V3 equation for real tokens:$$x\dfrac{\sqrt{P}\cdot\sqrt{p_b}}{\sqrt{p_b} - \sqrt{P}} = \dfrac{y}{\sqrt{P} - \sqrt{p_a}}$$
Where:
$$x$$— the amount of token X weis$$y$$— the amount of token Y weis$$\sqrt{P}$$— square root of the current price$$\sqrt{p_a}$$— square root of the price at the left border of the position interval$$\sqrt{p_b}$$— square root of the price at the right border of the position interval
$$x_0$$ amount of weis in token X and we’d like to calculate how much we need to convert to token Y, we are solving the following system:
$$\begin{cases}x_1 + y_1/P &= x_0\\x_1\dfrac{\sqrt{P}\cdot\sqrt{p_b}}{\sqrt{p_b} - \sqrt{P}} &= \dfrac{y_1}{\sqrt{P} - \sqrt{p_a}}\end{cases}$$
The conclusion is the following:
$$y_1 =\dfrac{x_0 P \sqrt{P_b} (\sqrt{P} - \sqrt{P_a})}{ \sqrt{P_b} (\sqrt{P} - \sqrt{P_a}) + \sqrt{P} (\sqrt{P_b} - \sqrt{P}) }$$$$x_1 = x_0 - \dfrac{y_1}{P}$$
Parameters
Historical token prices for 2022 were used to determine strategy parameters. They were chosen as follows:- the maximum daily price change was no more than
halfOfShortInterval - the minimum price is higher than
domainLowerTickand the maximum price is less thandomainUpperTick.
-
StrategyParams for the strategy WBTC/WETH:
-
StrategyParams for the strategy USDC/WETH:
-
OracleParams:
-
RatioParams:
-
MintingParams for the strategy USDC/WETH:
-
MintingParams for the strategy WBTC/WETH:
tickNeighborhood could be negative as well, this means that tick should be outside of position for at least abs(tickNeighborhood) ticks to call rebalance
Risks:
The strategy has the same risk as the underlying UniV3 position with the domain interval with one exception: if the rebalance happens when the price is out of the short interval. If UniV3 Boosted rebalances at price$$c > b$$ then the approximate losses are:
-
Profit due to better swap price:
$$profit = 100\% * (strategyCapital / uniswapCapital - 1)$$, where:$$strategyCapital = L(c (\sqrt{b_0} - \sqrt{b}) / \sqrt{b b_0} + \sqrt{b} - \sqrt{a_0})$$— capital of the strategy in token Y if there has not been a rebalance since the price equal to$$b$$$$uniswapCapital = L (c(\sqrt{b_0} - \sqrt{c}) / \sqrt{c b_0} + \sqrt{c} - \sqrt{a_0})$$— capital of uniswap position in token Y$$L$$— liquidity of the uniswap position in terms of UniswapV3
-
Fees paid for swap:
$$loss = 0.05\% * (strategyRatioX - uniswapRatioX)$$, where:$$strategyRatioX = c(\sqrt{b_0} - \sqrt{b}) / (\sqrt{b b_0} * (\sqrt{b} - \sqrt{a_0}) + c(\sqrt{b_0} - \sqrt{b}))$$— the ratio of token X to the total capital of the strategy if there has not been a rebalance since the price equal to$$b$$$$uniswapRatioX = c(\sqrt{b_0} - \sqrt{c}) / (\sqrt{c b_0} * (\sqrt{c} - \sqrt{a_0}) + c(\sqrt{b_0} - \sqrt{c}))$$— the ratio of token X to the total capital of the uniswap position
-
Fees foregone not providing in the
$$[b, c]$$range:$$loss = 100\% * possibleFees / uniswapCapital$$, where:$$possibleFees = poolFees / (1 - poolFees) * L (\sqrt{c} - \sqrt{b})$$- the amount of fees that the uniswap position receives when the price moves from$$b$$to$$c$$in token Y$$uniswapCapital = L (c(\sqrt{b_0} - \sqrt{c}) / \sqrt{c b_0} + \sqrt{c} - \sqrt{a_0})$$— capital of uniswap position in token Y$$L$$— liquidity of the uniswap position in terms of UniswapV3