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.
- Host: GitHub
- URL: https://github.com/jitendragangwar123/decentralized-finance-programming-dai
- Owner: jitendragangwar123
- Created: 2022-08-26T07:38:24.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-09-02T11:34:24.000Z (over 2 years ago)
- Last Synced: 2025-01-14T05:42:44.997Z (4 months ago)
- Topics: dai, defi, erc20, ethereum, solidity, truffle-framework
- Language: JavaScript
- Homepage:
- Size: 394 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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```