Pickle Jar Strategies
A description of the different strategies employed by Pickle Finance's PickleJars.
Last updated
A description of the different strategies employed by Pickle Finance's PickleJars.
Last updated
Each PickleJar employs a Strategy contract to earn yield for its depositors. In this document, we explore the types of Strategies being employed and how these work under the hood.
The PickleJar system is largely based on Yearn's yVault system, and therefore the most relevant function is the harvest()
function, which is what executes the profit-generating steps.
All Strategy contracts are being developed under the src/strategies
directory of the protocol repository. For a listing of all currently deployed Strategy contracts, see the contracts repo.
All pickle jars have 20% performance fee except Sushi jars (Excluding USDT/MIC & USDT/MIS). The displayed APY % is the net APY after the fees.
These Strategies are based on farming CRV tokens, and then selling them for more of the deposit tokens (usually Curve LP tokens).
In broad strokes, this is what the CRV-based Strategies do:
Farmed CRV tokens are collected and converted to the stablecoin offering the most premium.
A portion of the farmed CRV may be locked up as veCRV for future voting and boosting
The stablecoin from Step 1 is then supplied back into the Curve pool to get more of the PickleJar's deposit token (i.e. Curve LP tokens).
The reason for the focus on converting to the most premium stablecoin is because Curve gives a bonus for providing the most premium stablecoin to its pools.
Note: The sCRV Strategy has an additional step to collect farmed SNX and convert that to the most premium stablecoin.
The relevant Strategy contracts are located in the src/strategies/curve
directory. All CRV-based Strategies begin with StrategyCurve
and you may reference this README to see which PickleJars are using this Strategy.
These Strategies are based on farming UNI tokens, and then selling them for more of the deposit tokens (usually Uniswap v2 LP tokens).
In broad strokes, this is what the UNI-based Strategies do:
Farmed UNI tokens are collected.
A portion of the farmed UNI may be locked up for future voting and boosting
The remaining UNI is sold for WETH.
Half of this WETH is sold for the other token in the Uniswap pair. For example, this would be DAI for the DAI/WETH pair.
Supply both tokens into Uniswap for more of the deposit token (aka LP token).
Stake the additional deposit token to earn even more UNI.
Note: Extra dust is donated to the Pickle Finance community-controlled Treasury.
The relevant Strategy contracts are located in the src/strategies/uniswap
directory. All UNI-based Strategies begin with StrategyUni
and you may reference this README to see which PickleJars are using this Strategy.
We're going back to basics with pJar 0.88, allowing users to deposit base-currencies such as DAI, USDT, USDC etc. The first pJar 0.88a supports DAI, and utilizes a leveraged COMP mining strategy.
pJar 0.88 (Inactive)These Strategies are based on farming SUSHI tokens, and then selling them for more of the deposit tokens (usually Sushiswap v2 LP tokens). The SUSHI 23.33% shown in the pJars are the 1/3 that is claimable instantly. The remaining 2/3 vested tokens are still in discussion on how they are to be used. Instead, there are no performance fee for these SUSHI-based strategies!
In broad strokes, this is what the SUSHI-based Strategies do:
Farmed SUSHI tokens are collected.
The SUSHI token is sold for WETH.
Half of this WETH is sold for the other token in the Sushiswap pair. For example, this would be DAI for the DAI/WETH pair.
Supply both tokens into SUSHIswap for more of the deposit token (aka LP token).
Stake the additional deposit token to earn even more SUSHI.
The relevant Strategy contracts are located in the src/strategies/sushiswap
directory. All SUSHI-based Strategies begin with StrategySushi
and you may reference this README to see which PickleJars are using this Strategy.