| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| erigon_v3.5.4_checksums.txt | 2026-07-28 | 477 Bytes | |
| erigon_3.5.4_amd64.deb | 2026-07-28 | 443.2 MB | |
| erigon_3.5.4_arm64.deb | 2026-07-28 | 406.5 MB | |
| erigon_v3.5.4_linux_amd64.tar.gz | 2026-07-28 | 499.4 MB | |
| erigon_v3.5.4_linux_amd64v2.tar.gz | 2026-07-28 | 499.2 MB | |
| erigon_v3.5.4_linux_arm64.tar.gz | 2026-07-28 | 460.0 MB | |
| README.md | 2026-07-28 | 1.3 kB | |
| v3.5.4 source code.tar.gz | 2026-07-28 | 41.6 MB | |
| v3.5.4 source code.zip | 2026-07-28 | 50.6 MB | |
| Totals: 9 Items | 2.4 GB | 2 | |
Erigon v3.5.4 — Tidal Tails
v3.5.4 is a bugfix release recommended for all users, and especially for operators running the RPC daemon with response compression enabled — archive nodes and high-traffic RPC endpoints — where a native-memory leak in the gzip path could grow by ~9-15 GiB/day (#22700). It is a drop-in upgrade from 3.5.3 — no re-sync required.
Bugfixes
- node: fix a native (C-allocated) memory leak in the RPC gzip path (#22700) by @AskAlexSharov — the
libdeflate.Compressorwas pooled in async.Poolwhose GC-evicted entries never hadClose()called, leaking the C context (~9-15 GiB/day on an archive node). Replaced with a bounded channel pool that closes compressors on overflow. Fixes [#22672]. - cmd: expand a leading
~/(or~\on Windows) and$VARin--datadirfor the cobra-based binaries (#22785) by @lystopad — rpcdaemon and the other cobra commands previously used the raw path, so a tilde/env-prefixed--datadirwas not resolved the way the main erigon binary resolves it. Fixes [#14629].
Improvements
- build: update
google.golang.org/grpcto v1.82.1 (#22690) by @AskAlexSharov — bringsrelease/3.5in line withrelease/3.6andmain.
Full Changelog: https://github.com/erigontech/erigon/compare/v3.5.3...v3.5.4