Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/pjiwm/goodcoin

Simple blockchain implementation of a cryptocurrency writtein Python. CLI with miner and wallet functionality.
https://github.com/pjiwm/goodcoin

blockchain blockchain-technology cryptocurrency cryptography python

Last synced: 4 days ago
JSON representation

Simple blockchain implementation of a cryptocurrency writtein Python. CLI with miner and wallet functionality.

Awesome Lists containing this project

README

        

# Setup

## Script
On windows:

`setup.bat`

`.venv\Scripts\activate`

On Linux/Mac:

`bash setup.bash`

`source .venv/bin/activate`

## Manually
Create an environment:

`python -m venv .venv`

Activate environment Linux/MAC:

`source .venv/bin/activate`

Activate environment Windows:

`.venv\Scripts\activate`

Install dependencies:

`pip install -r requirements.txt`

Startup:

`python3 src/goodchain.py`