Simple Blockchain in Rust
This is a basic implementation of a Blockchain in Rust, showcasing how blocks are created, linked, and validated using SHA-256 hashing. Each block contains a cryptographic hash of its contents and the hash of the previous block, forming an immutable chain.
Getting Started
git clone https://github.com/codevivekk/rust_blockchain_implementation.git cd rust_blockchain_implementation cargo run