pub trait BlockFetcher: Send + Sync { // Required method fn fetch(&self, cid: Cid) -> BoxFuture<'_, Result<Block>>; }
Block fetcher trait for retrieving blocks by CID
Fetch a block by its CID