shuka 0.1.0

CLI tool for fetching verified smart contract source code from blockchain explorers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Shuka fetches verified smart contract source code from blockchain explorers
//! and writes the recovered source tree to disk.
//!
//! The crate is organized as a small pipeline:
//! `FetchRequest -> Explorer Adapter -> RawExplorerResponse -> Parser -> Storage`.
//! CLI code should stay thin, explorer adapters should only fetch raw data, the
//! parser should normalize explorer responses, and storage should only handle
//! filesystem writes.

pub mod app;
pub mod cli;
pub mod error;
pub mod explorers;
pub mod parsers;
pub mod storage;
pub mod types;