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

https://github.com/analitico-771/fintech_finder

This is an application that customers can use to find FinTech professionals from among a list of candidates, hire them, and pay them. It integrates the Ethereum blockchain network into the application in order to enable customers to instantly pay the FinTech professionals whom they hire with ETH.
https://github.com/analitico-771/fintech_finder

bip44 blockchain ethereum fintech ganache streamlit web3py

Last synced: 7 months ago
JSON representation

This is an application that customers can use to find FinTech professionals from among a list of candidates, hire them, and pay them. It integrates the Ethereum blockchain network into the application in order to enable customers to instantly pay the FinTech professionals whom they hire with ETH.

Awesome Lists containing this project

README

          

[![Contributors][contributors-shield]][contributors-url]
[![Forks][forks-shield]][forks-url]
[![Stargazers][stars-shield]][stars-url]
[![Issues][issues-shield]][issues-url]
[![LinkedIn][linkedin-shield]][linkedin-url]

Table of Contents



  1. About The Project



  2. Getting Started


  3. Usage

  4. Roadmap

  5. Contributing


  6. Contact

  7. Acknowledgements

---

## About The Project

This is an application that customers can use to find FinTech professionals from among a list of candidates, hire them, and pay them. It integrates the Ethereum blockchain network into the application in order to enable customers to instantly pay the FinTech professionals whom they hire with ETH.

---

### Built With

* [Python](https://www.python.org/)
* [Python conda](https://docs.conda.io/projects/conda/en/latest/user-guide/install/index.html)
* [Python pandas](https://pandas.pydata.org/)
* [Web3.py](https://web3py.readthedocs.io/en/stable/)
* [Python bip44](https://pypi.org/project/bip44/)
* [Streamlit](https://streamlit.io/)

---

## Getting Started

You don't need Python directly on your system. You can install Anaconda for a virtual environment and JupyterLab normally just like any other application on your computer. Follow the instructions for Anaconda, ensure that its working, then install JupyterLab.

You will need Anaconda Navigator as the preferred tool to install the Streamlit environment. Go to the Streamlit docs to follow the installation.

I have placed Comments throughout the code so that you can follow the Lambda code and be able to replicate the app on your own. Also, so that you're able to contribute in the future :-)

---

### Prerequisites

A text editor such as [VS Code](https://code.visualstudio.com/) or [Sublime Text](https://www.sublimetext.com/)

### Installation

1. Clone the repo
```sh
git clone https://github.com/AnaIitico/Fintech_Finder.git
```

2. You don't need to install pip - Conda comes with pip and you can also use the command
conda install 'package name'

3. Install Conda according to the instructions based on your operating system.
For windows users you MUST use the Administrator PowerShell. Users with AMD Processors MUST use the Administrator PowerShell 7 (X64) version

Once installed Conda has an Admin PowerShell version shortcut - look on your Start menu for it.
This shortcut will prove very useful at times when you need to install other apps or make adjustments to your installation

Once installed and you have finished all Conda instructions, you will see (base) on your terminal. Make sure that you finish the Conda full installation or this will not work!!

4. Activate Conda Dev environment
```sh
conda activate dev
```
You should now see (dev) on your terminal (if not go back to step 3)

5. Install Streamlit from the Anaconda Navigator
```sh
pip install streamlit
```

6. Conda install Web3.py to avoid dependency conflicts
```sh
conda install -c conda-forge web3
```

7. Install bip44
```sh
pip install bip44
```

8. Update conda environment - run each command one at a time
```sh
conda deactivate dev
```

```sh
conda update conda
```

```sh
conda update Anaconda
```

```sh
conda activate dev
```

---

## Usage

#### This image shows the App live on Streamlit
- Select the FinTech professional
- Select the number of hours
- Review the fee based on hours and Ethereum price
- Send transaction to blockchain
- Verify the hash

![Streamlit](Images/streamlit.png)

---

#### This image shows the Ganache account balance State after the transaction
- Number of transactions is visible
- Wallet Address is confirmed

![Ganache Balance](Images/ganache_balance.png)

---

#### This image shows the Ganache transaction hash and information
- Sender and Receiver address are visible and confirmed
- Transaction hash is visible and confirmed
- ETH value is confirmed

![Ganache Tx](Images/ganache_tx.png)

---

## Roadmap

The app is finished

See the [open issues](https://github.com/AnaIitico/Fintech_Finder/issues) for a list of proposed features (and known issues).

---

## Contributing

Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are **greatly appreciated**.

1. Fork the Project
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
4. Push to the Branch (`git push origin feature/AmazingFeature`)
5. Open a Pull Request

## Contact

Jose Tollinchi - [@josetollinchi][linkedin-url] - jtollinchi1971@gmail.com

Project Link: [https://github.com/AnaIitico/Fintech_Finder](https://github.com/AnaIitico/Fintech_Finder)

---

## Acknowledgements

* [Img Shields](https://shields.io)
* [Choose an Open Source License](https://choosealicense.com)

[contributors-shield]: https://img.shields.io/github/contributors/AnaIitico/Fintech_Finder.svg?style=for-the-badge
[contributors-url]: https://github.com/AnaIitico/Fintech_Finder/graphs/contributors
[forks-shield]: https://img.shields.io/github/forks/AnaIitico/Fintech_Finder.svg?style=for-the-badge
[forks-url]: https://github.com/AnaIitico/Fintech_Finder/network/members
[stars-shield]: https://img.shields.io/github/stars/AnaIitico/Fintech_Finder.svg?style=for-the-badge
[stars-url]: https://github.com/AnaIitico/Fintech_Finder/stargazers
[issues-shield]: https://img.shields.io/github/issues/AnaIitico/Fintech_Finder/network/members?style=for-the-badge
[issues-url]: https://github.com/AnaIitico/Fintech_Finder/issues

[linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?style=for-the-badge&logo=linkedin&colorB=555
[linkedin-url]: https://www.linkedin.com/in/josetollinchi/

---

## License

[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)