Simple Blockchain application build with Python.
This repository contains two main python files.
Block.py
: The class allowing to store a blocks basic properties, such as a Timestamp, Transaction, Hash, Previous Hash, and NonceBlockchain.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.Transactions.py
: Simple transactions demonstrating a simple blockchain transaction between "Bob" and "Alice."