ckb_types/lib.rs
//! # The Core Types Library
//!
//! This Library provides the essential types for CKB.
pub mod prelude;
pub use block_number_and_hash::BlockNumberAndHash;
pub use bytes;
pub use ckb_fixed_hash::{h160, h256, H160, H256};
pub use ckb_gen_types::packed;
pub use molecule::{self, error};
pub use numext_fixed_uint::{u256, U128, U256};
pub mod core;
pub mod global;
pub mod constants;
mod conversion;
mod extension;
pub mod utilities;
mod block_number_and_hash;
#[cfg(test)]
mod tests;