Defi Yield Farming Save

:tractor: :ear_of_rice: A DeFi app, which provides staking & farming functions are deploy-able with a website, for yield farming.

Project README

DeFi Yield Farming

This project focuses on developing a DeFi app which implements the concept of yield farming / liquidity mining based Dai token.

Demo of the DApp with the screenshots can be found on this wiki page.


This repository presents practices about:

  • Setup a blockchain.
  • Develop Ethereum smart contracts.
  • Write tests for the developed Ethereum smart contracts.
  • Develop a client-side website so people can actually use this application.

You can check the quick tutorial about "what is the blockchain?" in here.


ToDos:

  • Add OpenZeppelin Contracts to minimize risks.
  • Develop a new feature to keep track of the rewards.
  • Implement a method to withdraw the rewards automatically when certain conditions are met (it is triggered manually in the current version).

Theory

What is yield farming?

At its core, yield farming is a process that allows cryptocurrency holders to lock up their holdings, which in turn provides them with rewards.

In brief:

  • Yield farming lets you lock up funds, providing rewards in the process.
  • It involves lending out cryptos via DeFi protocols in order to earn fixed or variable interest.
  • The rewards can be far greater than traditional investments, but higher rewards bring higher risks, especially in such a volatile market.

Application Software Architecture

Here is the application software architecture work-flow:

  • Users use an Internet browser to connect front-end application which is written in HTML, CSS and JavaScript.
  • Then, instead of accessing a back-end server, the website talks directly to the blockchain which is where all the codes and data for the application lives.
  • The DeFi application codes are contained in smart contracts written in solidity progrramming language which was a lot like JavaScript. These smart contracts are immutable which means the code can not change and all the data is stored in the public ledger which is also immutable. And, anytime new data is added to the blockchain, it will be permanent and publicly verifiable.

Installation

Setup

  • Node.js

    sudo curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash
    nvm install 12.18.3
    node -v
    
  • Truffle

    sudo npm install -g [email protected] --unsafe-perm=true
    
  • Ganache installation guide can be found in here.

  • MetaMask installation guide can be found in here.

Commands

  • Install necessarily Node.js packages

    npm install
    
  • Deploy smart contracts to the Ethereum blockchain

    truffle migrate --reset
    
  • Deploy and run the front-end application

    npm start run
    
  • Run the scripts to issue tokens

    truffle exec scripts/issue-tokens.js
    

Demo of the DApp with the screenshots can be found on this wiki page.

Citation

If you use this code for your publications, please cite it as:

@ONLINE{
    author = "Ahmet Özlü",
    title  = "DeFi Yield Farming App",
    year   = "2021",
    url    = "https://github.com/ahmetozlu/defi_yield_farming"
}

References

This project was built on top of Dapp University implementation, here you can find more details.

Author

Ahmet Özlü

License

This system is available under the MIT license. See the LICENSE file for more info.

Open Source Agenda is not affiliated with "Defi Yield Farming" Project. README Source: ahmetozlu/defi_yield_farming