ckb_types/lib.rs
1//! # The Core Types Library
2//!
3//! This Library provides the essential types for CKB.
4
5pub mod prelude;
6
7pub use block_number_and_hash::BlockNumberAndHash;
8pub use bytes;
9pub use ckb_fixed_hash::{h160, h256, H160, H256};
10pub use ckb_gen_types::packed;
11pub use molecule::{self, error};
12pub use numext_fixed_uint::{u256, U128, U256};
13pub mod core;
14pub mod global;
15
16pub mod constants;
17mod conversion;
18mod extension;
19pub mod utilities;
20
21mod block_number_and_hash;
22#[cfg(test)]
23mod tests;