chaindexer/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![allow(dead_code)] // dead code b/c some stuff is not fully migrated so some funcs are dead
#![allow(clippy::from_str_radix_10)]
mod cli;
pub use cli::{entrypoint, CliError};
pub mod chains;

pub mod queryeng;
pub mod storage;
pub mod subgraph;

mod partition_index;
pub use partition_index::*;

mod table_api;
pub use table_api::*;
#[cfg(test)]
mod test;
mod util;