An IPFS based Ethereum blob archive you can run locally
Keep Ethereum blobs local
Run a follower for every historical blob, or just the blobs your L2 node needs. Use your own local endpoint instead of a hosted third-party API.
- Choose your scopeAll history or one L2
- Verify locallyNo hosted API dependency
- Decentralize the archiveRetain and serve a replica
Why complete blob history needs a network
Rollups publish their data to Ethereum as blobs. Blobs were always intended to be temporary on Ethereum: consensus nodes prune them after 4096 epochs, about 18 days. After that, in theory, it is up to parties economically interested in the blobs (eg L2s, node providers) to preserve them, but they are not always easily available to everyonne.
Since Fusaka, retrieval changed shape too. PeerDAS made ordinary nodes lighter: each one custodies a sampled subset of every blob's erasure-coded columns rather than whole blobs, so an ordinary beacon node may not serve a complete blob response even inside the custody window. Reconstructing a complete blob means gathering at least half of its columns from across the network (clients document this as a deliberate, opt-in role). That was the right trade since it made the base network got cheaper to run, but it means complete retrieval became a specialized job: once for reconstruction inside the window, and again for everything older than it.
Acquire once, verify and replicate everywhere
BlobArchive does that specialized job once and shares the result. The network's writers acquire complete blobs, verify every one against its KZG commitment, and sign replay-protected head documents. A separate public edge can publish and serve those already-authenticated bytes without holding the signing key or archive mutation authority.
Anyone can then run a follower or attach a
Kubo replica and get a local, verified
beacon-compatible blobs endpoint. It provides full blob history, from
Dencun to the current tip, on their own machine.
BlobArchive decentralizes publication, storage, and serving
without
pretending trust disappears. Anyone may publish, anyone may replicate,
and every follower chooses which writer to trust.
blobarchive.net provides curated discovery of writers
for convenience.
There is no hosted API
This site serves no blobs. Using the archive means running a node, be that a follower or a replica, and every node that joins is one more independent, verified copy of the history. The join page covers both paths.