Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,31 @@ The indexer for the [Blobscan](https://github.com/Blobscan/blobscan) explorer im

Check out our [documentation website](https://docs.blobscan.com/docs/indexer).

```
./blob-indexer --help
Blobscan's indexer for blob transactions (EIP-4844).

Usage: blob-indexer [OPTIONS]

Options:
-f, --from-slot <FROM_SLOT>
Slot to start indexing from
-t, --to-slot <TO_SLOT>
Slot to stop indexing at
-n, --num-threads <NUM_THREADS>
Number of threads used for parallel indexing
-s, --slots-per-save <SLOTS_PER_SAVE>
Amount of slots to be processed before saving latest slot in the database
-c, --disable-sync-checkpoint-save
Disable slot checkpoint saving when syncing
-d, --disable-sync-historical
Disable backfill indexing thread
-h, --help
Print help
-V, --version
Print version
```

# Sponsors

We extend our gratitude to each one of them. Thank you 🙏
Expand Down
4 changes: 2 additions & 2 deletions src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use clap::{ArgAction, Parser};

use crate::clients::beacon::types::BlockId;

/// Blobscan's indexer for the EIP-4844 upgrade.
/// Blobscan's indexer for blob transactions (EIP-4844).
#[derive(Parser, Debug)]
#[command(author, version, about, long_about = None)]
pub struct Args {
Expand All @@ -26,7 +26,7 @@ pub struct Args {
#[arg(short = 'c', long, action = ArgAction::SetTrue)]
pub disable_sync_checkpoint_save: bool,

/// Disable historical synchronization
/// Disable backfill indexing thread
#[arg(short = 'd', long, action = ArgAction::SetTrue)]
pub disable_sync_historical: bool,
}
Loading