A fully commented, educational blockchain prototype built in Rust.
This project demonstrates how to design, hash, and validate a blockchain using minimal dependencies.
- Cryptographic hashing with SHA-256
- Dynamic CLI for interactive block creation
- Genesis block initialization
- Full chain validation & tamper detection
- Modular architecture with
lib.rsand tests - Built entirely in safe, idiomatic Rust
git clone https://github.com/Dev-Dy/mini_chain.git
cd mini_chain
cargo run