Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/pjiwm/goodcoin
- Owner: Pjiwm
- Created: 2023-10-21T23:26:40.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-19T17:17:30.000Z (10 months ago)
- Last Synced: 2024-01-19T18:38:14.995Z (10 months ago)
- Topics: blockchain, blockchain-technology, cryptocurrency, cryptography, python
- Language: Python
- Homepage:
- Size: 154 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`