diff --git a/crates/bin/pindexer/src/main.rs b/crates/bin/pindexer/src/main.rs index 6afc295971..71989105ff 100644 --- a/crates/bin/pindexer/src/main.rs +++ b/crates/bin/pindexer/src/main.rs @@ -1,12 +1,14 @@ use anyhow::Result; use clap::Parser as _; -use pindexer::{supply::Supply, Indexer, Options}; +use pindexer::block::Block; +use pindexer::{Indexer, IndexerExt as _, Options}; #[tokio::main] async fn main() -> Result<()> { Indexer::new(Options::parse()) .with_default_tracing() - .with_index(Supply::new()) + .with_default_penumbra_app_views() + .with_index(Block {}) .run() .await?;