You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
compare expect segment hash and data_hash got by step2, record segment_id:data_info_on_avail
add blake2b_simd to dependencies
/// calculate data hashpubfncalc_data_hash(segment_bytes:&[u8]) -> H256{blake2_256(segment_bytes)}fnblake2_256(data:&[u8]) -> H256{H256(blake2(data))}fnblake2(data:&[u8]) -> [u8;LENGTH]{
blake2b_simd::Params::new().hash_length(LENGTH).hash(data).as_bytes().try_into().expect("slice is always the necessary length")}
Enhancement:
Option to fill up chunks if there is missing segment by other DA backend
Provide RPC to get/list Rooch blocks on Avail
Dump/Load Index to/from file
The text was updated successfully, but these errors were encountered:
Proposal Details
For fast access data on Avail.
Approach:
Enhancement:
The text was updated successfully, but these errors were encountered: