Just a really simple, insecure and incomplete implementation of a blockchain for a cryptocurrency made in Python. The goal of this project is to make a working blockchain currency, keeping it as simple as posible, to be used as educational material.
This project is just being made for fun. If you want to make your own cryptocurrency you should probably take a look at the Bitcoin Repository.
Taking a look at the Bitcoin organization wiki website we can find this definition:
A block chain is a transaction database shared by all nodes participating in a system based on the Bitcoin protocol. A full copy of a currency's block chain contains every transaction ever executed in the currency. With this information, one can find out how much value belonged to each address at any point in history.
You can find more information in the original Bitcoin Paper.
First, install requirements.txt
.
pip install -r requirements.txt
Then you have 2 options:
- Run
miner.py
to become a node and start mining - Run
wallet.py
to become a user and send transactions (to send transactions you must run a node, in other words, you must runminer.py
too)
Important: DO NOT run it in the python IDLE, run it in console. The
miner.py
use parallel process that don't work in the python IDLE.
There are 2 main scripts:
miner.py
wallet.py
This file is probably the most important. Running it will create a node (like a server). From here you can connect to the blockchain and process transactions (that other users send) by mining. As a reward for this work, you recieve some coins. The more nodes exist, the more secure the blockchain gets.
miner.py
has 2 process running in parallel:
-
The first process takes care of mining, updating new blockchains, and finding the proof of work.
-
The second process runs the flask server where peer nodes and users can connect to ask for the entire blockchain or sumbmit new transactions.
Parallel process don't run in python IDLE, so make sure you are running it from the console.
This file is for those that don't want to be a node but simple users. Running this file allows you to generate a new address, send coins and check your transaction history (keep in mind that if you are running this in a local server, you will need a "miner" to process your transaction).
Anybody is welcome to collaborate in this project. Feel free to push any pull request (even if you are new to coding).
Note: the idea of this project is to build a really simple blockchain system, so make sure all your code is easy to read (avoid too much code in 1 line) and don't introduce complex updates if they are not critical. In other words, keep it simple.
By no means this project should be used for real purposes, it lacks security and may contain several bugs.