ckb-types 0.101.3

Provides the essential types for CKB.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Types utilities.
mod difficulty;
mod merkle_tree;

#[cfg(test)]
mod tests;

pub use difficulty::{
    compact_to_difficulty, compact_to_target, difficulty_to_compact, target_to_compact, DIFF_TWO,
};
pub use merkle_tree::{merkle_root, MergeByte32, MerkleProof, CBMT};