An open API service indexing awesome lists of open source software.

https://github.com/jitendragangwar123/decentralized-finance-programming-dai

This Repository consist of some Decentralized Finance protocols implementation and use-cases.
https://github.com/jitendragangwar123/decentralized-finance-programming-dai

dai defi erc20 ethereum solidity truffle-framework

Last synced: about 2 months ago
JSON representation

This Repository consist of some Decentralized Finance protocols implementation and use-cases.

Awesome Lists containing this project

README

        

# DEFI-Programming-DAI
```shell
truffle init
npm init -y //intialize the config file
npm install @openzeppelin/contracts
npm i //install npm dependencies
truffle compile
truffle migrate --reset
```

```shell
git config --global user.name "jitendragangwar123"
git config --global user.email "[email protected]"
git init
git add .
git commit -m "initial commit"
git branch -M main
git remote add origin https://github.com/jitendragangwar123/Decentralized-Finance.git
git remote rm origin
git push -u origin main
git push -f origin main //forcefully push on github repository

```