Skip to content

Commit

Permalink
docs(da-indexer): intended links light node (#1203)
Browse files Browse the repository at this point in the history
* docs: section links

* docs: current links

* docs: troubleshooting tonic Cargo toml

* docs: language type code block
  • Loading branch information
guspan-tanadi authored Jan 28, 2025
1 parent 3bb4339 commit 28cb9f0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
11 changes: 8 additions & 3 deletions da-indexer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ DA Indexer Service
The DA Indexer service collects blobs from different DA solutions (currently only Celestia and EigenDA) and provides a convenient API for fetching blob data. In addition to indexing blobs, this service can be configured to fetch L2 batch metadata corresponding to a specific blob (currently only available for Celestia).

## Celestia
The Celestia indexer runs on top of the [Celestia light node](https://docs.celestia.org/nodes/light-node). It is worth noting that the indexer collects only blobs and some block metadata, it does not collect full blocks, transactions, etc.
The Celestia indexer runs on top of the [Celestia light node](https://docs.celestia.org/how-to-guides/light-node). It is worth noting that the indexer collects only blobs and some block metadata, it does not collect full blocks, transactions, etc.

## EigenDA
The EigenDA indexer runs on top of the EigenDA disperser. It is worth mentioning that the disperser does not store blobs older than two weeks, so these blobs will be unavailable.
Expand Down Expand Up @@ -111,6 +111,11 @@ just run
`Router` and `Router` have similar names, but are actually distinct types
```

To fix this error you need to change tonic version of `tonic` in `blockscout-service-launcer` to `0.8`
To fix this error, update the tonic dependency in [`blockscout-service-launcher/Cargo.toml`](../libs/blockscout-service-launcher/Cargo.toml#L31):

For now you can only change in `Cargo.lock`
```toml
[dependencies]
tonic = "0.8"
```

Then run `cargo update -p tonic` to update the lockfile.
2 changes: 1 addition & 1 deletion user-ops-indexer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ instance ([configuration](https://github.com/blockscout/docs/blob/master/for-dev
* `MICROSERVICE_ACCOUNT_ABSTRACTION_URL={service_url}`

And the following ENVs on the Blockscout
frontend ([configuration](https://github.com/blockscout/frontend/blob/main/docs/ENVS.md#user-operations-feature-erc-4337)):
frontend ([configuration](https://github.com/blockscout/frontend/blob/main/docs/ENVS.md#user-operations-erc-4337)):

* `NEXT_PUBLIC_HAS_USER_OPS=true`

Expand Down

0 comments on commit 28cb9f0

Please sign in to comment.