Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/optimism-java/blob-archiver-rs
https://github.com/optimism-java/blob-archiver-rs
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/optimism-java/blob-archiver-rs
- Owner: optimism-java
- License: mit
- Created: 2024-03-19T06:59:50.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-08-28T15:08:04.000Z (3 months ago)
- Last Synced: 2024-08-28T16:58:39.513Z (3 months ago)
- Language: Rust
- Size: 164 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# blob-archiver-rs
This is a Rust implementation of
the [Beacon Chain blob archiver](https://github.com/base-org/blob-archiver)### Development
```sh
# Run the tests
cargo test --workspace --all-features --all-targets --locked# Lint the project
cargo clippy --workspace --all-targets --all-features -- -D warnings# Build the project
cargo build --workspace --all-targets --all-features```
#### Run Locally
To run the project locally, you should first copy `.env.template` to `.env` and then modify the environment variables
to your beacon client and storage backend of choice. Then you can run the project with:```sh
docker compose up
```