github

cosme12 / SimpleCoin

  • воскресенье, 21 января 2018 г. в 03:16:14
https://github.com/cosme12/SimpleCoin


Just a really simple, insecure and incomplete implementation of a blockchain for a cryptocurrency made in Python as educational material. In other words, a simple Bitcoin clone.



SimpleCoin

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.

What is a blockchain?

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.

How to run it

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 run miner.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.

How this code work?

There are 2 main scripts:

  • miner.py
  • wallet.py

Miner.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:

  1. the first process takes care of mining, updating new blockchains, and finding the proof of work

  2. 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.

miner

Wallet.py

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).

wallet

Contribution

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 to much code in 1 line) and don't introduce complex updates if they are not critical. In other words, keep it simple.

Disclaimer

By no means this project should be used for real purposes, it lacks security and may contain several bugs.