ckb_rich_indexer/lib.rs
1//! CKB's built-in rich-indexer, based on relational database,
2//! which shares data with the ckb node by creating secondary db instances.
3
4mod indexer;
5mod indexer_handle;
6mod service;
7mod store;
8
9pub use indexer_handle::{AsyncRichIndexerHandle, RichIndexerHandle};
10pub use service::RichIndexerService;
11
12#[cfg(test)]
13mod tests;
14
15#[cfg(test)]
16pub(crate) use indexer::AsyncRichIndexer;