yieldspace-tv
is a new implementation of Yieldspace that allows for the use of shares in tokenized vaults as base reserves. This is based on concepts and formulas derived in "YieldSpace with Yield Bearing Vaults" by Allan Niemerg which was based on the original "The Yield Protocol: On-Chain Lending With
Interest Rate Discovery" written by Dan Robinson and Allan Niemerg.
The pool is an UniV2 style, x/y fixed constant automated market maker used for providing liquidity and trading a pair of "fyToken" and related underlying "base" token as described in the papers noted above. In this new version, the base tokens can now be tokenized vault shares.
The use of tokenized vaults as base allows for a higher yield on the base reserves held by the pool. The main changes in the math come from introducing c
and mu
into the equation. c
represents the current value of the tokenized vault shares. mu
is the normalization factor which is the initial c0
at first mint.
This repo also serves as Yield's initial foray into the Foundry development tool ecosystem. Tests are written in Solidity and use Foundry cheatcodes.
This repo includes:
Additional notes:
mint
or mintWithBase
), the extra base tokens will be sent back to the to
addressbuyFYToken
or buyBase
, those tokens are not sent back. The user can retrieve them with retrieveFYToken
or retrieveBase
.As this repo is still under development, these smart contracts have not yet been deployed.
Detailed documentation can be found in the Yield docs.
Before running any command, be sure Foundry is installed.
git clone git@github.com:yieldprotocol/yieldspace-tv.git
cd yieldspace-tv
forge update
Compile and test the smart contracts with Forge:
forge test
If using forking capability, be sure to add MAINNET_RPC
to your .env
.
In developing this YieldSpace we have used two different libraries for fixed point arithmetic.
In developing the code in this repository we have set the highest bar possible for security. yieldspace-tv
has been audited by ABDK Consulting and the report can be found here.
We have also used fuzzing tests for the Pool and YieldMath contracts, allowing us to find edge cases and vulnerabilities that we would have missed otherwise.
Yield is offering bounties for bugs disclosed through Immunefi. The bounty reward is up to $500,000, depending on severity. Please include full details of the vulnerability and steps/code to reproduce. We ask that you permit us time to review and remediate any findings before public disclosure.
This project doesn't include any governance or upgradability features. If you have a contribution to make, please reach us out on Discord and we will consider it for a future release or product.
We would like to thank Dan Robinson (Paradigm), Georgios Konstantopoulos (Paradigm), SamCZSun (Paradigm), Mikhail Vladimirov (ABDK), Gustavo Grieco (Trail of Bits), Martin Lundfall (dAppHub), Noah Zinsmeister (Uniswap), and Transmissions11 (Paradigm) for their feedback and advice. We wouldn't be here without them.