Skip to main content

ckb_indexer/
lib.rs

1//! CKB's built-in indexer, which shares data with the ckb node by creating secondary db instances.
2
3pub(crate) mod indexer;
4pub(crate) mod store;
5
6/// The indexer service.
7pub mod service;
8
9pub use service::{IndexerHandle, IndexerService};