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
- Host: GitHub
- URL: https://github.com/yashsahsani/nvcoins
- Owner: YashSahsani
- License: other
- Created: 2020-03-12T06:41:06.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-21T06:24:30.000Z (almost 6 years ago)
- Last Synced: 2025-02-24T11:30:44.345Z (over 1 year ago)
- Topics: api, bitcoin, blockchain, cryptocurrency, css, flask, html, python
- Language: HTML
- Homepage:
- Size: 989 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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