Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 628 Bytes

README.md

File metadata and controls

7 lines (6 loc) · 628 Bytes

Mini-Blockchain

Simple Blockchain application build with Python.

This repository contains two main python files.

  1. Block.py: The class allowing to store a blocks basic properties, such as a Timestamp, Transaction, Hash, Previous Hash, and Nonce
  2. Blockchain.py: The class which holds the "Chain," storing blocks inside the blockchain, including a list of unverified transactions passed, as well as a genesis block, which automatically generates a block when the blockchain is initialized.
  3. Transactions.py: Simple transactions demonstrating a simple blockchain transaction between "Bob" and "Alice."