File tree 1 file changed +21
-0
lines changed
docs/blob-archiver-rs-docs
1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,27 @@ to your beacon client and storage backend of choice. Then you can run the projec
41
41
docker compose up
42
42
```
43
43
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
+
44
65
## Options
45
66
46
67
### ` verbose `
You can’t perform that action at this time.
0 commit comments