For the complete documentation index, see llms.txt. This page is also available as Markdown.

Block Node Overview

Block Nodes represent a new class of nodes in a Hiero network designed to increase decentralization and network data distribution. They enable operators to assume responsibility for long-term block and state storage while supporting the security and performance characteristics of a Hiero network.

This overview document provides operators with the essential concepts needed to understand Block Node roles and responsibilities before diving into deployment.

What is a Block Node?

A Block Node is a special kind of server that keeps a complete, trustworthy copy of what is happening on a Hiero network. It receives a stream of already-agreed blocks from Consensus Nodes, delivers the block stream via the subscribe API, checks that each block is valid, stores valid blocks, and serves single blocks via API query. In the future Block Nodes will also maintain an accurate copy of the current network state and will serve state related queries via new APIs.

Instead of pushing this data into centralized cloud storage, Block Nodes act as a decentralized data layer for the network. They stream blocks to Mirror Nodes and other Block Nodes, answer questions from apps and services about past blocks or current state, and serve the cryptographic proofs produced by Consensus Nodes so users can independently verify that the data is correct.

How Block Nodes differ from other nodes

Aspect

Consensus Node

Block Node

Mirror Node

Primary role

Reach consensus and update canonical state.

Ingest, verify, store, and serve blocks, and state.

Provide value‑added access to historical data and analytics.

Produces blocks

Yes – produces finalized block streams per (HIP-1056)

No – consumes and verifies blocks from Consensus Nodes or upstream Block Nodes.

No – will consume data from Block Nodes once the cutover lands; today Mirror Nodes still download record files from cloud storage.

Maintains full consensus state

Yes – authoritative state, optimized for consensus.

(planned) Manages an active copy of network state locally, updated with StateChanges; supports reconnect flows.

No – maintains data in an indexed form as needed for queries and analytics.

Data APIs

gRPC for transactions/queries; no history.

Streaming gRPC APIs for live and historical blocks, random-access retrieval, state, and proofs.

Public REST and custom APIs for queries and observability.

Who runs it

Governing Council and approved operators.

Tier 1: Council / trusted; Tier 2: permissionless operators, service providers, app teams, and infra providers.

Permissionless operators, service providers, and app teams.

Role in the Hiero Network

Block Nodes act as the trusted historians and data providers for a Hiero network. They receive block streams from Consensus Nodes, verify that each block and its data are correct, and durably store valid blocks for downstream consumption. Block Nodes distribute blocks to downstream clients—including Mirror Nodes, other Block Nodes, and applications—so anyone can access real-time or historical data. Each block includes cryptographic proofs produced by Consensus Nodes, making it possible for users and applications to independently verify the accuracy of the network's history without relying on a single provider.

Block Nodes provide these core services:

  • Block Stream ingestion, verification, and distribution.

  • Storage and serving of cryptographic block proofs produced by Consensus Nodes, enabling independent verification of block data.

  • Durable storage of blocks on local disk or S3-compatible archival storage.

  • Real-time and historical data streaming to downstream clients.

  • Random-access retrieval of blocks at specific block heights.

  • State snapshot creation and reconnect services (planned — not currently in active development).

block-node-network-architecture

How Data Flows Through the Network

The diagram above illustrates the complete data flow:

  1. Consensus Nodes produce blocks - Users submit transactions via gRPC to Consensus Nodes, which reach consensus through Hashgraph and produce finalized blocks with block proofs containing aggregated signatures.

  2. Block Nodes receive and verify - Tier 1 Block Nodes receive block streams directly from Consensus Nodes, verify block integrity, and store verified blocks and state to local disk and (optionally) S3-compatible archival storage.

  3. Block Nodes distribute downstream - block streams fan out to:

    • Mirror Nodes - for public REST APIs and explorer services

    • Tier 2 Block Nodes - for geographic redundancy and permissionless participation

    • Applications - via gRPC/REST APIs for custom integrations

  4. Block Nodes support Consensus Node recovery (planned) - When a Consensus Node falls behind, it will be able to request reconnect data from Block Nodes to quickly resynchronize. This capability is not currently in active development.

Example Use Cases

  • Running an API server for wallets, explorers, or dApps to access verified blockchain data.

  • Operating analytics or aggregation pipelines using live and historical block streams.

  • Providing specialized compliance, archival, or network recovery support for Hiero services.

Block Node Tiers and Configuration

A Block Node's tier describes where it gets its block stream from. The same core software runs at every tier; the differences are operational.

Tier

Description

Typical Operators

Key Focus

Receive streams directly from Consensus Nodes; high reliability.

Governing Council, trusted entities

Verification, reconnect, state management.

Receive streams from Tier 1 or another Tier 2; permissionless.

Community, enterprises

Streaming, proofs, geographic redundancy.

Beyond tiers, operators can deploy a Block Node in different types — for example Full Node, Rolling-History, Light Node, Private-Cloud, Archive Server, or Community Node — by combining different sets of plugins. See Block Node Types and Tiers for the full taxonomy.

Choose Your Tier

Choose Tier 1 if:

  • You are a member of the Hiero network's governance structure or trusted network partner.

    • In the public Hiero network a governance member is an Hiero Governing Council member.

  • You have authorization to peer directly with Consensus Nodes.

  • You can commit to high-availability SLAs (99.9%+ uptime).

  • You want to provide reconnect services to Consensus Nodes.

  • You are able to operate a bare‑metal server that meets the recommended hardware specifications described in the Block Node Hardware Specifications.

Choose Tier 2 if:

  • You are a community operator, enterprise, or infrastructure provider.

  • You want to participate without special permissions (permissionless).

  • You can receive block streams from existing Tier 1 or Tier 2 Block Nodes.

  • Your focus is on streaming verified data to applications or Mirror Nodes.

  • Your goals include developing and providing value-added services based on Block Stream data.

Note: Tier 2 nodes are truly permissionless—anyone can deploy one without approval or registration. You simply configure your node to connect to one or more existing Block Nodes (Tier 1 or Tier 2) for upstream block streams.

Choose Your Deployment Profile

Once you know your tier, select the plugin profile that matches your storage strategy. Profiles are pre-built Helm values overrides shipped in the charts/block-node-server/values-overrides/ directory and applied with the -f flag during Helm install, or selected interactively by Solo Provisioner.

Goal
Profile
Storage strategy
Hardware sizing

Tier 1 — full block history on local disk

Local NVMe (recent) + local HDD (archive)

Tier 1 — recent blocks local, history in cloud

Local NVMe (recent) + S3-compatible cloud archive

Tier 1 — local history and cloud backup

Local NVMe + local HDD + S3 archive

Tier 2 — full history on local disk

plugin-profile-lfh with stream-publisher removed from plugins.names

Local NVMe (recent) + local HDD (archive)

Tier 2 — recent blocks local, history in cloud

plugin-profile-rfh with stream-publisher removed from plugins.names

Local NVMe (recent) + S3-compatible cloud archive

Development, testing, or testnet / previewnet

No block storage (health and status only)

Note: For Tier 2, no dedicated profile file exists. Start from plugin-profile-lfh (local history) or plugin-profile-rfh (cloud archive) and remove stream-publisher from plugins.names. See configuration.md for the full plugins.names reference.

For CPU, RAM, disk, and NIC requirements for each profile, see Block Node Hardware Specifications.

Operator Responsibilities

Block Node operators are responsible for:

  • Keeping their Block Node online, monitored, and synchronized with the latest network state.

  • Managing storage and retention for blocks and state snapshots.

  • Securing access to APIs and infrastructure, including authentication, authorization, and network boundaries.

  • Applying software upgrades in line with Hedera/Hiero releases and Block Node compatibility guidance.

  • Choosing and configuring which services to expose (streaming, random access, proofs, reconnect/state snapshots) for their consumers.

Getting Started

Last updated