Basic cryptocurrency implementation using blockchain
- python 3.7.x
# 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)