Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 946 Bytes

README.md

File metadata and controls

26 lines (20 loc) · 946 Bytes

Simple-Blockchain

This is an implementation of a simple blockchain build purely in Python 3.4

Features

  • Calculating the hash of a block
  • Mine a block with pending Transactions
  • Distribution of mining rewards
  • Implementation of Proof of work algorithm
  • Validating the Blockchain

A block consists of information like, index, timestamp, data, and the value of previous hash. Each block is stored in a list starting from the Genesis Block (which is the first block in the blockchain).

Libaries used

Further Implementations

  • Peer to peer connectivity
  • Public-private key for each individual performing the transaction

License

This project is licensed under the GPL-3.0 License - see the LICENSE file for details.

Acknowledgement

Inspired by Savjee.