ckb-types 0.115.0-rc1

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 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;

#[cfg(test)]
mod tests;