Skip to main content

Filecoin Node Comparison

There are three full-node implementations of the Filecoin protocol.

  • Forest is written in Rust and maintained by ChainSafe Systems. It focuses on chain validation, a high-performance RPC API, and snapshot generation, all with low hardware requirements.
  • Lotus is the reference implementation, written in Go. It provides the complete Filecoin feature set, including the storage-provider stack, and is typically where new protocol features land first.
  • Venus is a modular Go implementation. Rather than a single daemon, it is a set of independently deployable components (venus, damocles, sophon-miner, venus-wallet, sophon-messager, sophon-auth, sophon-gateway) that together pioneered Filecoin's distributed storage pool model, with a largely Lotus-compatible API. It aims to help small and medium-sized storage providers join the Filecoin network with a lower barrier to entry.

Feature comparison

CapabilityForestLotus
Chain synchronization and validationYesYes
Filecoin JSON-RPC APIYesYes
Ethereum-compatible RPC (eth_*)YesYes
Snapshot exportYesYes
Built-in and standalone wallet (forest-wallet / lotus-wallet)YesYes
Bootstrap nodeYesYes
F3 (Fast Finality) participationYesYes
Built-in health-check endpointsYesYes
Storage provider / sealing (lotus-miner, lotus-worker)NoYes
Block production / miningNo (untested)Yes
Single binary for all networks (--chain)YesNo
Auto-download snapshot on startupYesNo
Lite / diff / archival snapshot generationYesNo
Offline RPC server from snapshot (forest-tool api serve)YesNo
Stateless node mode (--stateless)YesNo
Ethereum trace_call and debug_traceTransactionYesNo
Written in Rust 🦀YesNo

Forest and Lotus both expose a compatible Filecoin JSON-RPC API (requests and responses use the same JSON format). Forest serves three API versions: /rpc/v0 (deprecated, legacy Lotus-compatible methods), /rpc/v1 (stable and recommended for production), and /rpc/v2 (experimental, still being rolled out). See the JSON-RPC overview, methods reference, and API conformance report for supported methods and Lotus API parity.

Performance

For a comparable RPC workload, Forest serves requests at lower latency while using less CPU and memory than Lotus, and it exports snapshots significantly faster and with lower hardware requirements. See the RPC Performance Comparison and Snapshot Generation Comparison for the full figures and methodology.