#fixed-hash #blockchain #constructor #data #ckb #static #fixed-sized

ckb-fixed-hash

Provide several simple fixed-sized hash data type and their static constructors

91 releases (25 breaking)

new 0.121.0-rc1 Jan 8, 2025
0.120.0 Dec 11, 2024
0.120.0-rc2 Nov 20, 2024
0.117.0 Jul 29, 2024
0.38.0 Nov 18, 2020

#111 in Magic Beans

Download history 3356/week @ 2024-09-20 1064/week @ 2024-09-27 1252/week @ 2024-10-04 3401/week @ 2024-10-11 4508/week @ 2024-10-18 1721/week @ 2024-10-25 933/week @ 2024-11-01 665/week @ 2024-11-08 1251/week @ 2024-11-15 894/week @ 2024-11-22 1446/week @ 2024-11-29 2011/week @ 2024-12-06 2355/week @ 2024-12-13 1242/week @ 2024-12-20 1420/week @ 2024-12-27 1197/week @ 2025-01-03

6,513 downloads per month
Used in 91 crates (3 directly)

MIT license

42KB
817 lines

ckb-fixed-hash

This crate is a component of ckb.

Provide several simple fixed-sized hash data type and their static constructors.

Minimum Supported Rust Version policy (MSRV)

This crate's minimum supported rustc version is 1.81.0


lib.rs:

Provide several simple fixed-sized hash data type and their static constructors.

Example

use ckb_fixed_hash::{H256, h256};

const N1: H256 = h256!("0xffffffff_ffffffff_ffffffff_fffffffe_baaedce6_af48a03b_bfd25e8c_d0364141");
const N2: H256 = H256([
    0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
    0xfe, 0xba, 0xae, 0xdc, 0xe6, 0xaf, 0x48, 0xa0, 0x3b, 0xbf, 0xd2, 0x5e, 0x8c, 0xd0, 0x36,
    0x41, 0x41
]);
assert_eq!(N1, N2);

const ONE1: H256 = h256!("0x1");
const ONE2: H256 = H256([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]);
assert_eq!(ONE1, ONE2);

Dependencies

~2–2.7MB
~60K SLoC