bitcoin_explorer/parser/
mod.rs

1//!
2//! This module defines how to parse binary data on disk to Block structs defined in proto.
3//!
4
5/// read transactions and blocks from blk.dat files
6pub mod blk_file;
7
8/// read block index in memory from levelDB
9pub mod block_index;
10
11/// define binary file readers
12pub mod reader;
13
14/// add multi-sig pattern recognition and decode addresses from multi-sig script
15pub mod script;
16
17/// on disk transaction index database
18pub mod tx_index;
19
20/// various formats of blockchain data representation
21pub mod proto;
22
23/// error handling
24pub mod errors;