Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ SECRET_KEY=supersecret

BLOBSCAN_API_ENDPOINT=http://localhost:3001
EXECUTION_NODE_ENDPOINT=http://localhost:8545
BEACON_NODE_ENDPOINT=http://localhost:9596
BEACON_NODE_ENDPOINT=http://localhost:5052
SENTRY_DSN=
RUST_LOG=blob_indexer=INFO
2 changes: 1 addition & 1 deletion src/clients/beacon/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ impl BeaconClient {
}

pub async fn get_blobs(&self, slot: u32) -> ClientResult<Option<Vec<Blob>>> {
let path = format!("v1/beacon/blob_sidecars/{slot}");
let path = format!("v1/beacon/blobs/{slot}");
let url = self.base_url.join(path.as_str())?;

json_get!(&self.client, url, BlobsResponse).map(|res| match res {
Expand Down