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

https://github.com/yashsahsani/nvcoins

Basic cryptocurrency implementation using blockchain
https://github.com/yashsahsani/nvcoins

api bitcoin blockchain cryptocurrency css flask html python

Last synced: about 2 months ago
JSON representation

Basic cryptocurrency implementation using blockchain

Awesome Lists containing this project

README

          

# NVCoins
Basic cryptocurrency implementation using blockchain

## Prerequisites
- python 3.7.x

## Setup

```bash
# Create service container
$ cd NVCoins
$ pip install virtualenv
$ virtualenv venv
$ source venv/bin/activate
$ pip install -r requirements.txt
$ cd NVCoins/client
$ python main.py (runs on localhost:8080)
# Keep it running and in anouther terminal
$ cd NVCoins/NVCoins/miner
$ python main.py (runs on localhost:5000)
```

## In Your Browser goto:
http://localhost:8080
And
http://localhost:5000