Pickle Finance
Contract addresses: https://github.com/pickle-finance/contracts.
Last updated
Was this helpful?
Contract addresses: https://github.com/pickle-finance/contracts.
Last updated
Was this helpful?
Pickle Finance is an interesting "yield farming" experiment. Users deposit tokens into a "jar" (a smart contract) and the jar will leverage a "strategy" (another smart contract) to provide liquidities to different protocols in order to earn those protocol specific tokens.
We are using Scout and Etherscan to explore how the "jar" and "strategy" work. At the end of exploration, we build a dashboard for the jar 0.88a: https://scout.cool/picklefinance/mainnet/dashboards/jar-0.88a
Let us use jar 0.88a as an example. People deposit DAI into this jar and it uses the deposit to repeatedly borrow from Compound in order to earn COMP tokens.
The below screenshot on the left shows that I deposited 50 DAI from my wallet (0x6bA) to the jar 0.88a and the one on the right shows that I withdraw DAI from the same jar later on. The address of jar 0.88a is 0x6949Bb624E8e8A90F87cD2058139fcd77D2F3F87.
TLDR: When I deposited 50 DAI, there was a Transfer(from, to, value) log from DAI contract that sends 50 DAI from my wallet (0x6bA) to the jar (0x6949Bb624...) and the jar sent 36 pDAI to my wallet. When I withdraw, the jar sent 50 DAI (plus my earnings and minus the withdraw fees) back to my wallet and my wallet sent that 36 pDAI to 0x0000... which destroyed the pDAI tokens.
There is a special case of withdraw that happens when the DAI you deposited has already been used to borrow DAI on Compound. So when you withdraw from the jar, the jar will also withdraw from Compound. Here is an example on etherscan.
Let us build a bar chart to visualize the Daily deposit and withdraw amount of jar 0.88
A strategy describes how a jar farms protocol tokens for you. The farming strategy for jar 0.88a is in the contract 0xCd892a97951d46615484359355e3Ed88131f82. It basically takes the DAI in the jar as a collateral to borrow from Compound recursively in order to earn COMP tokens. Take a look at a transaction from this contract. There are over 100 logs in this transaction and I have picked a few important ones for you pay attention to:
a. Collecting COMP tokens from Compound. The compound tokens were transferred to the strategy contract (0xCd892a97...) There are two logs in this transaction.
b. Borrow DAI from Compound. The strategy contract will borrow DAI from Compound via Compound DAI contract (also known as cDAI). The value under borrowAmount
is the amount that you should pay attention to. If you sum up all the borrowAmount
of the 3 logs, this is the total amount of DAI borrowed in this transaction.
c. Supply borrowed DAI back to Compound. In this case, the strategy contract supplied the borrowed DAI back to Compound 3 times.
Let us build a table chart to display the borrowed DAI and earned COMP tokens of the strategy.
Total deposit amount in the jar: It should be the latest "total" value on this daily cumulative chart.
Total borrowed amount in the jar:
To get this number, you need to sum up all the borrowed DAI from the strategy contract(left) and subtract it with the withdraw amount from the transactions which also collected COMP tokens(right). These two tables can also be found on the same dashboard.
Demos of the tutorial: https://scout.cool/picklefinance/mainnet/dashboards/jar-0.88a