https://github.com/pjiwm/goodcoin
Simple blockchain implementation of a cryptocurrency written Python. CLI with miner and wallet functionality.
https://github.com/pjiwm/goodcoin
blockchain blockchain-technology cryptocurrency cryptography python
Last synced: 12 days ago
JSON representation
Simple blockchain implementation of a cryptocurrency written Python. CLI with miner and wallet functionality.
- Host: GitHub
- URL: https://github.com/pjiwm/goodcoin
- Owner: Pjiwm
- Created: 2023-10-21T23:26:40.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-19T17:17:30.000Z (over 2 years ago)
- Last Synced: 2025-03-02T20:27:36.013Z (over 1 year 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`