blob-indexer 0.5.2

Blob indexer for the Blobscan explorer
Documentation
use crate::{
    clients::{beacon::types::BlockIdResolutionError, common::ClientError},
    indexer::tasks::sse_indexing::SSEIndexingError,
    synchronizer::error::SynchronizerError,
};

#[derive(Debug, thiserror::Error)]
pub enum IndexerError {
    #[error("failed to retrieve blobscan's sync state")]
    IndexerStateRetrievalError(#[from] ClientError),
    #[error("task \"{task_name}\" failed: {error}")]
    IndexingTaskError {
        task_name: String,
        error: IndexerTaskError,
    },
    #[error(transparent)]
    SynchronizerError(#[from] SynchronizerError),
    #[error(transparent)]
    BlockIdResolutionFailed(#[from] BlockIdResolutionError),
}

#[derive(Debug, thiserror::Error)]
pub enum IndexerTaskError {
    #[error(transparent)]
    SSEIndexingError(#[from] SSEIndexingError),
    #[error(transparent)]
    SynchronizerError(#[from] SynchronizerError),
}