File tree Expand file tree Collapse file tree 2 files changed +27
-2
lines changed Expand file tree Collapse file tree 2 files changed +27
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,31 @@ The indexer for the [Blobscan](https://github.com/Blobscan/blobscan) explorer im
6
6
7
7
Check out our [ documentation website] ( https://docs.blobscan.com/docs/indexer ) .
8
8
9
+ ```
10
+ ./blob-indexer --help
11
+ Blobscan's indexer for blob transactions (EIP-4844).
12
+
13
+ Usage: blob-indexer [OPTIONS]
14
+
15
+ Options:
16
+ -f, --from-slot <FROM_SLOT>
17
+ Slot to start indexing from
18
+ -t, --to-slot <TO_SLOT>
19
+ Slot to stop indexing at
20
+ -n, --num-threads <NUM_THREADS>
21
+ Number of threads used for parallel indexing
22
+ -s, --slots-per-save <SLOTS_PER_SAVE>
23
+ Amount of slots to be processed before saving latest slot in the database
24
+ -c, --disable-sync-checkpoint-save
25
+ Disable slot checkpoint saving when syncing
26
+ -d, --disable-sync-historical
27
+ Disable backwards indexing thread
28
+ -h, --help
29
+ Print help
30
+ -V, --version
31
+ Print version
32
+ ```
33
+
9
34
# Sponsors
10
35
11
36
We extend our gratitude to each one of them. Thank you 🙏
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ use clap::{ArgAction, Parser};
2
2
3
3
use crate :: clients:: beacon:: types:: BlockId ;
4
4
5
- /// Blobscan's indexer for the EIP-4844 upgrade .
5
+ /// Blobscan's indexer for blob transactions ( EIP-4844) .
6
6
#[ derive( Parser , Debug ) ]
7
7
#[ command( author, version, about, long_about = None ) ]
8
8
pub struct Args {
@@ -26,7 +26,7 @@ pub struct Args {
26
26
#[ arg( short = 'c' , long, action = ArgAction :: SetTrue ) ]
27
27
pub disable_sync_checkpoint_save : bool ,
28
28
29
- /// Disable historical synchronization
29
+ /// Disable backwards indexing thread
30
30
#[ arg( short = 'd' , long, action = ArgAction :: SetTrue ) ]
31
31
pub disable_sync_historical : bool ,
32
32
}
You can’t perform that action at this time.
0 commit comments