Skip to content

Commit 69ac0bd

Browse files
authored
Update index.md
1 parent 633558d commit 69ac0bd

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

docs/blob-archiver-rs-docs/index.md

+21
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,27 @@ to your beacon client and storage backend of choice. Then you can run the projec
4141
docker compose up
4242
```
4343

44+
#### Get blobs
45+
After successfully starting the service, you can use the following command to obtain the blob:
46+
47+
- get blob by block id from api service:
48+
```shell
49+
# also there is support other type of block id, like: finalized,justified.
50+
curl -X 'GET' 'http://localhost:8000/eth/v1/beacon/blob_sidecars/head' -H 'accept: application/json'
51+
```
52+
53+
- get blob by slot number from api service:
54+
```shell
55+
curl -X 'GET' 'http://localhost:8000/eth/v1/beacon/blob_sidecars/7111008' -H 'accept: application/json'
56+
```
57+
58+
#### Storage Dashboard
59+
MinIO has started the dashboard, allowing you to view the status of blob storage.
60+
By default, you can access it directly at:
61+
```http
62+
http://localhost:9999
63+
```
64+
4465
## Options
4566

4667
### `verbose`

0 commit comments

Comments
 (0)