File tree 4 files changed +42
-0
lines changed
docs/blob-archiver-rs-docs
4 files changed +42
-0
lines changed Original file line number Diff line number Diff line change 67
67
],
68
68
"ignoreWords" : [
69
69
" Hildr" ,
70
+ " Superproof" ,
71
+ " Shisui" ,
72
+ " Flashbots" ,
70
73
" meili" ,
71
74
" Linea"
72
75
]
Original file line number Diff line number Diff line change
1
+ # blob-archiver-rs
2
+ This is a Rust implementation of
3
+ the [ Beacon Chain blob archiver] ( https://github.com/base-org/blob-archiver )
4
+
5
+ ### Development
6
+ ``` sh
7
+ # Run the tests
8
+ cargo test --workspace --all-features --all-targets --locked
9
+
10
+ # Lint the project
11
+ cargo clippy --workspace --all-targets --all-features -- -D warnings
12
+
13
+ # Build the project
14
+ cargo build --workspace --all-targets --all-features
15
+
16
+ ```
17
+
18
+ #### Run Locally
19
+ To run the project locally, you should first copy ` .env.template ` to ` .env ` and then modify the environment variables
20
+ to your beacon client and storage backend of choice. Then you can run the project with:
21
+
22
+ ``` sh
23
+ docker compose up
24
+ ```
Original file line number Diff line number Diff line change @@ -114,6 +114,18 @@ const config = {
114
114
position : "left" ,
115
115
label : "Superproof" ,
116
116
} ,
117
+ {
118
+ type : "doc" ,
119
+ docId : "blob-archiver-rs-docs/index" ,
120
+ position : "left" ,
121
+ label : "Blob-arhiver-rs" ,
122
+ } ,
123
+ {
124
+ type : "doc" ,
125
+ docId : "blob-archiver-rs-docs/index" ,
126
+ position : "left" ,
127
+ label : "Blob-arhiver-rs" ,
128
+ } ,
117
129
{
118
130
href : "https://discord.gg/YC34UKyc2Y" ,
119
131
className : "header-discord-link" ,
Original file line number Diff line number Diff line change @@ -62,6 +62,9 @@ const sidebars = {
62
62
] ,
63
63
} ,
64
64
] ,
65
+ blobArchiverRs : [
66
+ "blob-archiver-rs-docs/index" ,
67
+ ] ,
65
68
} ;
66
69
67
70
module . exports = sidebars ;
You can’t perform that action at this time.
0 commit comments