Skip to content

Commit 28cb9f0

Browse files
docs(da-indexer): intended links light node (#1203)
* docs: section links * docs: current links * docs: troubleshooting tonic Cargo toml * docs: language type code block
1 parent 3bb4339 commit 28cb9f0

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

da-indexer/README.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ DA Indexer Service
44
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).
55

66
## Celestia
7-
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.
7+
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.
88

99
## EigenDA
1010
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.
@@ -111,6 +111,11 @@ just run
111111
`Router` and `Router` have similar names, but are actually distinct types
112112
```
113113

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

116-
For now you can only change in `Cargo.lock`
116+
```toml
117+
[dependencies]
118+
tonic = "0.8"
119+
```
120+
121+
Then run `cargo update -p tonic` to update the lockfile.

user-ops-indexer/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ instance ([configuration](https://github.com/blockscout/docs/blob/master/for-dev
3131
* `MICROSERVICE_ACCOUNT_ABSTRACTION_URL={service_url}`
3232

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

3636
* `NEXT_PUBLIC_HAS_USER_OPS=true`
3737

0 commit comments

Comments
 (0)