fuel_block_committer_encoding/lib.rs
1pub mod blob;
2pub mod bundle;
3
4pub(crate) mod constants {
5 // These are copied over from alloy so that we don't make fuel-core pull in alloy just for the
6 // constants.
7 pub const BYTES_PER_BLOB: usize = 131_072;
8 pub const FIELD_ELEMENTS_PER_BLOB: usize = 4096;
9 pub const USABLE_BITS_PER_FIELD_ELEMENT: usize = 254;
10}