Download Latest Version v3.6.1 source code.zip (51.8 MB) Google Add to Preferred Sources
Home / v3.5.4
Name Modified Size InfoDownloads / 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.Compressor was pooled in a sync.Pool whose GC-evicted entries never had Close() 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 $VAR in --datadir for the cobra-based binaries (#22785) by @lystopad — rpcdaemon and the other cobra commands previously used the raw path, so a tilde/env-prefixed --datadir was not resolved the way the main erigon binary resolves it. Fixes [#14629].

Improvements

  • build: update google.golang.org/grpc to v1.82.1 (#22690) by @AskAlexSharov — brings release/3.5 in line with release/3.6 and main.

Full Changelog: https://github.com/erigontech/erigon/compare/v3.5.3...v3.5.4

Source: README.md, updated 2026-07-28