{"id":18951325,"url":"https://github.com/adorsys/p2p-lending","last_synced_at":"2025-04-16T00:31:55.322Z","repository":{"id":33266878,"uuid":"148613672","full_name":"adorsys/p2p-lending","owner":"adorsys","description":"A decentralized, smart contract based platform for p2p-lending on the Ethereum Blockchain","archived":false,"fork":false,"pushed_at":"2023-01-03T16:13:05.000Z","size":4952,"stargazers_count":76,"open_issues_count":37,"forks_count":40,"subscribers_count":14,"default_branch":"master","last_synced_at":"2024-04-14T12:53:55.707Z","etag":null,"topics":["blockchain","dao","ethereum","p2p-lending","solidity"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/adorsys.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-09-13T09:19:56.000Z","updated_at":"2024-03-13T10:19:24.000Z","dependencies_parsed_at":"2023-01-15T00:14:02.697Z","dependency_job_id":null,"html_url":"https://github.com/adorsys/p2p-lending","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adorsys%2Fp2p-lending","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adorsys%2Fp2p-lending/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adorsys%2Fp2p-lending/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adorsys%2Fp2p-lending/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/adorsys","download_url":"https://codeload.github.com/adorsys/p2p-lending/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223691241,"owners_count":17186771,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["blockchain","dao","ethereum","p2p-lending","solidity"],"created_at":"2024-11-08T13:27:32.453Z","updated_at":"2024-11-08T13:27:33.086Z","avatar_url":"https://github.com/adorsys.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://travis-ci.org/adorsys/p2p-lending.svg?branch=master)](https://travis-ci.org/adorsys/p2p-lending)\n\n# P2P-Lending\n\n## Table of Contents\n\n- [About the Project](#about-the-project)\n  - [Challenges](#challenges)\n  - [Built With](#built-with)\n- [Getting Started](#getting-started)\n  - [Prerequisites](#prerequisites)\n  - [Installation](#installation)\n\n\u003c!-- ABOUT THE PROJECT --\u003e\n\n## About The Project\n\nThis repository hosts a variety of smart contracts for a DAO (Decentralized Autonomous Organisation) focussing on delivering a decentralized p2p-lending platform on the Ethereum Blockchain. This may very well develop into something completely different based on the direction taken by the DAO in the future. We are as excited as you are! ;-)\n\n_A decentralized, smart contract based platform for p2p-lending on the Ethereum Blockchain can play the role of a bank in the process of lending money to one or more beneficiaries.\nThe open ecosystem of the p2p-lending platform has the potential to offer cheaper lending contracts than traditional centralized institutions, while also enabling people all over the world to profit from a fair and transparent portfolio of products._\n\n### Challenges\n\nTo solve multiple challenges within such a substantial system, we are conductiong extensive research into Ethereum and other potential smart contract platforms as well as continue developing a modular system based on components solving those challenges one by one. The most pressing challenges to solve for such a system include:\n\n- Proof of Identity\n- Decentralized management and progression of the ecosystem by a DAO\n- Staying within the bounds of Ethereum\n- Incentivization of the DAO ecosystem and its continuous use\n- Building financially profitable and inclusive products\n- Accessibility and Usability of the p2p-lending plattform and ecosystem\n\n### Built With\n\n- [Node 10](https://nodejs.org/en/)\n- [Truffle](https://truffleframework.com/truffle)\n- [Vue.js](https://vuejs.org/)\n- [web3.js](https://web3js.readthedocs.io/en/1.0/getting-started.html)\n\n\u003c!-- GETTING STARTED --\u003e\n\n## Getting Started\n\nTo get a local copy up and running follow these steps.\n\n### Prerequisites\n\nThese are the requisites you need, in order to use the software and instructions, on how to install them.\n\n- [Node.js](https://nodejs.org/en/):\n\n  - macOS:\n    - Install [Homebrew](https://brew.sh/):\n      ```sh\n      /usr/bin/ruby -e \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)\"\n      ```\n    - Update Homebrew:\n      ```sh\n      brew update\n      ```\n    - Check if Homebrew is ready to brew:\n      ```sh\n      brew doctor\n      ```\n    - Install Node.js:\n      ```sh\n      brew install node\n      ```\n    - Test that Node.js was installed by running:\n      ```sh\n      node --version\n      ```\n  - Windows:\n    - Install [Chocolatey](https://chocolatey.org/install):\n      - via cmd.exe:\n        ```sh\n        @\"%SystemRoot%\\System32\\WindowsPowerShell\\v1.0\\powershell.exe\" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command \"iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))\" \u0026\u0026 SET \"PATH=%PATH%;%ALLUSERSPROFILE%\\chocolatey\\bin\"\n        ```\n      - via PowerShell.exe:\n        ```sh\n        Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))\n        ```\n    - Install Node.js:\n      ```sh\n      choco install nodejs\n      ```\n    - Test that Node.js was installed by running:\n      ```sh\n      node --version\n      ```\n\n- [npm](https://www.npmjs.com/)\n\n  - Install npm:\n\n    ```sh\n    npm install npm -g\n    ```\n\n  - Test that npm was installed by running:\n\n    ```sh\n    npm --version\n    ```\n\n- [Ganache](https://truffleframework.com/ganache)\n- [Truffle](https://truffleframework.com/truffle)\n  - Install Truffle:\n    ```sh\n    npm install truffle -g\n    ```\n  - Test that truffle was installed by running:\n    ```sh\n    truffle version\n    ```\n\n### Installation\n\n1. Clone the repo\n\n   ```sh\n   git clone https://github.com/adorsys/p2p-lending.git\n   ```\n\n2. Run Ganache on port 8545\n\n   ```sh\n   Ganache -\u003e Settings -\u003e Server -\u003e Port Number -\u003e 8545\n   ```\n\n3. Install dependencies\n\n   ```sh\n   npm install\n   ```\n\n4. Compile Smart Contracts\n\n   ```sh\n   truffle compile\n   ```\n\n5. Deploy Smart Contracts to local blockchain\n\n   ```sh\n   npm run migrate:dev\n   ```\n\n6. Switch to frontend folder\n\n   ```sh\n   cd frontend\n   ```\n\n7. Install frontend dependencies\n\n   ```sh\n   npm install\n   ```\n\n8. Start frontend\n\n   ```sh\n   npm start\n   ```\n\n9. Open the DApp in your favorite browser\n\n   ```sh\n   localhost:8080\n   ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadorsys%2Fp2p-lending","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadorsys%2Fp2p-lending","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadorsys%2Fp2p-lending/lists"}