mithril_client_cli/
lib.rs

1#![warn(missing_docs)]
2
3//! A command line interface that uses the [Mithril Client Library](https://mithril.network/doc/manual/developer-docs/nodes/mithril-client-library)
4//! to manipulate Mithril certified types from a Mithril Aggregator:
5//! - Cardano Database v1 (aka Snapshot): list, show, download archive
6//! - Cardano Database v2: list, show, download archive
7//! - Cardano transactions: list & show snapshot, certify a list of transactions
8//! - Cardano stake distribution: list and download
9//! - Mithril stake distribution: list and download
10//!
11//!   You can find more information on how it works reading the [documentation website](https://mithril.network/doc/mithril/mithril-network/client).
12
13mod command_context;
14pub mod commands;
15mod configuration;
16mod utils;
17
18pub use command_context::*;
19/// Error Clap
20pub type ClapError = clap::error::Error;