Overview
Direct Answer
A light node is a blockchain participant that synchronises only block headers rather than the complete ledger, delegating full transaction verification to full nodes through simplified payment verification (SPV). This architecture reduces storage and bandwidth requirements while maintaining cryptographic security guarantees.
How It Works
Light nodes download and validate block headers, which contain merkle tree roots and proof-of-work data, then query full nodes for specific transactions relevant to their addresses using bloom filters or similar privacy-preserving mechanisms. The node verifies transactions against the header chain without processing or storing the entire transaction history, relying on the assumption that the longest chain represents honest consensus.
Why It Matters
This design enables blockchain participation on resource-constrained devices such as mobile phones and IoT systems, reducing operational costs and latency for end-users whilst maintaining self-custody capabilities. Organisations deploying distributed applications require this trade-off between security assurance and computational efficiency at scale.
Common Applications
Mobile cryptocurrency wallets, embedded systems in supply chain tracking, and client-side applications in decentralised finance protocols commonly utilise this approach. Examples include SPV wallets for Bitcoin and similar implementations across alternative blockchains.
Key Considerations
Light nodes remain vulnerable to certain attacks such as merkle tree attacks and depend on availability of honest full nodes; they provide weaker security guarantees than full nodes in adversarial network conditions.
Cross-References(2)
More in Blockchain & DLT
Decentralised Physical Infrastructure
FoundationsNetworks that use blockchain token incentives to coordinate the deployment and operation of physical infrastructure such as wireless networks, energy grids, and compute resources.
Validator
FoundationsA node in a proof-of-stake blockchain responsible for verifying transactions and proposing new blocks.
Node
FoundationsA computer connected to a blockchain network that maintains a copy of the ledger and participates in consensus.
Smart Contract
Smart Contracts & DAppsSelf-executing programs stored on a blockchain that automatically enforce the terms of an agreement when conditions are met.
ERC-20
Tokens & AssetsA technical standard for implementing fungible tokens on the Ethereum blockchain.
Layer 1
FoundationsThe base blockchain protocol layer that handles consensus, data availability, and transaction settlement.
Hyperledger
FoundationsAn open-source collaborative project hosting enterprise-grade blockchain frameworks and tools.
Immutability
FoundationsThe property of blockchain data that prevents alteration or deletion once recorded on the ledger.