Macarse / yearn-starter-pack

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

yearn-starter-pack

What you'll find here

Solidity Smart Contracts for DAI Curve Strategy plus it's Controller and yVault.

Interfaces for some of the most used DeFi protocols on ethereum mainnet.

Sample test suite that runs on mainnet fork.

How does it work for the User

Let's say Alice holds 100 DAI and wants to start earning yield % on them.

For this Alice needs to DAI.approve(yVault.address, 100).

Then Alice will call yVault.deposit(100).

yVault will then transfer 100 DAI from Alice to itself, and mint Alice the corresponding shares.

Alice can then redeem those shares using yVault.withdrawAll() for the corresponding DAI balance.

How does it work for the Vault

TODO

Requirements

  • Install Brownie

  • Install Dev dependencies: pip3 install -r requirements-dev.txt

    • Use whatever pip version avaiable
  • Install ganache-cli: npm install -g ganache-cli@6.10.1

    • For those of you using Node 14, you'll need to launch ganache-cli via node 8, 10, or 12 until this is fixed. For example, run nvm use 12 && npm install ganache-cli -g to install for node 12, and then run ganache-cli with nvm use 12 && ganache-cli.

  • Install npm dependencies: npm install

  • Copy .env.example to .env

  • Setup ETHERSCAN_TOKEN & WEB3_INFURA_PROJECT_ID on .env

Useful commands

  • Compile contracts with: npm run compile

  • Run tests with: npm test

About

License:MIT License


Languages

Language:Solidity 88.2%Language:Python 11.6%Language:Shell 0.2%