ckb-types 0.105.0

Provides the essential types for CKB.
Documentation
//! # The Core Types Library
//!
//! This Library provides the essential types for CKB.

pub mod prelude;

pub use bytes;
pub use ckb_fixed_hash::{h160, h256, H160, H256};
pub use molecule::{self, error};
pub use numext_fixed_uint::{u256, U128, U256};

mod generated;

pub use generated::packed;
pub mod core;

pub mod constants;
mod conversion;
mod extension;
pub mod utilities;

#[cfg(test)]
mod tests;