Network
Launch Date
Consensus
Note
Sepolia
Oct 2021
PoW
Like-for-like representation of Ethereum
Görli
Jan 2019
PoA
Proof-of-Authority
Kiln
Mar 2022
PoS
Post-Merge (for ETH2), shadow fork of the mainnet
Kintsugi
Dec 2021
PoS
DEPRECATED, use Kiln; post-Merge (for ETH2)
Ropsten
Nov 2016
PoW
DEPRECATED, use Sepolia; the Merge to happen on Jun 8, 2022
Rinkeby
Apr 2017
PoA
DEPRECATED, use Görli and Görli Faucet
Kovan
Mar 2017
PoA
DEPRECATED, use Sepolia or Görli
List of active and deprecated Ethereum testnets, including Kintsugi.
Features
Optimistic rollup 
ZK-rollup 
Proof
Uses fraud proofs to prove transaction validity. 
Uses validity (zero-knowledge) proofs to prove transaction validity. 
Capital efficiency
Requires waiting through a 1-week delay (dispute period) before withdrawing funds. 
Users can withdraw funds immediately because validity proofs provide incontrovertible evidence of the authenticity of off-chain transactions. 
Data compression
Publishes full transaction data as calldata to Ethereum Mainnet, which increases rollup costs. 
Doesn't need to publish transaction data on Ethereum because ZK-SNARKs and ZK-STARKs already guarantee the accuracy of the rollup state. 
EVM compatibility
Uses a simulation of the Ethereum Virtual Machine (EVM), which allows it to run arbitrary logic and support smart contracts. 
Doesn't widely support EVM computation, although a few EVM-compatible ZK-rollups have appeared. 
Rollup costs
Reduces costs since it publishes minimal data on Ethereum and doesn't have to post proofs for transactions, except in special circumstances. 
Faces higher overhead from costs involved in generating and verifying proofs for every transaction block. ZK proofs require specialized, expensive hardware to create and have high on-chain verification costs. 
Trust assumptions
Doesn't require a trusted setup. 
Requires a trusted setup to work. 
Liveness requirements
Verifiers are needed to keep tabs on the actual rollup state and the one referenced in the state root to detect fraud. 
Users don't need someone to watch the L2 chain to detect fraud. 
Security properties 
Relies on cryptoeconomic incentives to assure users of rollup security. 
Relies on cryptographic guarantees for security. 
Start building
on Alchemy.
Sign up for free
Start building on Optimism.
Sign up for free
Start building on Arbitrum.
Sign up for free
Start building on Ethereum.
Sign up for free
Start building on Polygon.
Sign up for free
Start building on Starknet.
Sign up for free
Start building on Flow.
Sign up for free
kiln faucet
Get free Kiln ETH.
Start building today
Goerli faucet
Get free Goerli ETH.
Start building today
SEPOLIA FAUCET
Get free Sepolia ETH.
Start Building Today
mumbai faucet
Get free Mumbai Matic.
Start building today
rinkeby faucet
Get free Rinkeby
ETH.
Start building today
Start building on Ethereum.
Get started for free
Start building on Ethereum.
Get started for free
Start building on Flow.
Get started for free
Start building on Polygon.
Get started for free
Start building on Starknet.
Get started for free
Start building on Optimism.
Get started for free
Start building on Solana.
Get started for free
Start building on Solana.
Sign up for beta access
Start building on Solana.
Join the waitlist
Arbitrum logo
Start building on Arbitrum.
Get started for free
Build with Alchemy's
Gas Manager & Bundler APIs
Learn
Solidity at
Alchemy
University
Get started today
Build with Alchemy's
Gas Manager & Bundler APIs
curl 
https://release.solana.com/v1.10.32/solana-install-init-x86_64-pc-windows-msvc.exe 
--output 
C:\solana-install-tmp\solana-install-init.exe 
--create-dirs
Ethereum
ETHEREUM NODE TYPES

Types of Ethereum Nodes: Full vs. Archive vs. Light

Explore Types of Ethereum Nodes, How They Work, and How They're Different
Last Updated:
August 11, 2022

The Ethereum blockchain is a worldwide distributed network of computers across which nodes pool processing power, resources, and share block verification responsibilities so the network can reach consensus (i.e. agree on a shared state).

This post examines the different types of Ethereum nodes used on the Ethereum blockchain (full nodes, archive nodes, and light nodes), and their differences.

What is a full node?

A full node keeps a complete copy of the blockchain data, and contributes to the network by receiving transactions and blocks from other full nodes, validating them, and forwarding them to other full nodes.

When a smart contract transaction is executed, Ethereum full nodes execute all of the instructions in the smart contract. Together, full determine whether the smart contract execution is producing the desired result. However, running full Ethereum nodes is  expensive to run and consume a great deal of power.

Full Node Clients

A client is an Ethereum software implementation that verifies all transactions in each block, ensuring that the network is safe, and that the transaction data is valid. Ethereum full node clients validate all transactions in each block, providing the network with security and data accuracy.

Each Ethereum client comes with its own set of capabilities and advantages. Implementations can be tailored to different user groups due to their diversity. Consider features, support, web3 programming language, and licenses when selecting an Ethereum node client.

Full Node Client Software Implementations (Execution Layer Clients)

There are four primary types of execution layer full node client implementations:

  1. Geth (Go Ethereum) - written in Go
  2. Nethermind - written in C# and .NET
  3. Erigon - written in Go
  4. Hyperledger Besu - written in Java

After The Merge, when Ethereum transitions from Proof-of-Work to Proof-of-Stake, each full node will need to run a consensus layer client in conjunction with one of the aforemention execution layer clients.

Full Node Client Software Implementations (Consensus Layer Clients)

There are five primary consensus layer clients:

  1. Prsym - built by Prysmatic Labs in Go
  2. Teku - built by the Besu team in Java
  3. Lighthouse - built by Sigma Prime and written in Rust
  4. Nimbus - built by the Nimbus team written in Rust
  5. Lodestar - built by ChainSafe Systems in Typescript

What is a light node?

A light node stores block header data, such as the preceding block's hash and a timestamp, rather than the complete block data like a full node does. Light nodes send on-demand requests to full nodes, validating only the parts of the state that their user's require.

Low-capacity devices, such as personal computers, may benefit from light nodes because they do not perform expensive data storage and writing tasks.

Examples of use cases for light nodes include:

  1. Examining balances
  2. Validating if a transaction was confirmed by the network
  3. Checking event logs

Beside personal computers, light nodes can also be efficiently run on low-capacity devices like mobile phones or Raspberry Pis.

What is an archive node?

An archive node holds all of the same data as a complete node, as well as all of the blockchain's history state data dating back to the Genesis Block (i.e. the first block).

Although full nodes can rebuild old blockchain state data, this synchronization process is time-consuming and inefficient. This data may need to be served rapidly depending on the use case. However, archive nodes can trace transactions since they have historical data dating back to the first block.

Archive nodes can store gigabytes of past data, making them less desirable to the typical user but valuable to service providers like block explorers, wallets, and on-chain analytics companies.

Erigon vs. Geth

The official Golang implementation for the Ethereum protocol is Go Ethereum (or Geth). Geth is the most popular Ethereum client, has the most users, and provides a wide range of Go-based tools for developers, all of which are open-source and licensed under the GNU LGPL v3.

Erigon is a Geth fork that focuses on speed and disk space savings. Erigon is an entirely re-architected Ethereum node client implementation developed in Go with plans tol be ported to other languages in the future. Erigon aims to deliver a more modular, quicker, and streamlined Ethereum implementation.

Compared to Geth, Erigon's parallelized development, flat storage, preprocessing, and staged synchronization, Erigon achieves smaller storage footprints, faster sync speeds, and overall a better experience for developers needing to use trace APIs.

What are the differences between a full node and an archive node?

The main difference between a full node and an archive node is that the archive node keeps track of all of the chain's previous states (i.e. a complete picture of the Ethereum ecosystem), while a full node only needs to store a snapshot of current state data.

Put simply, archive nodes contain all of the historical data since block one, whereas full nodes only contain the most important, current data necessary for validating new transactions while unnecessary blockchain data is "pruned."

How to Choose the Right Type of Node

Choosing the right type of Ethereum node to deploy depends on your use case and resources because node setup and functionality differ significantly.

You can use Ethereum in a private, self-sufficient, and trustless manner by running your node. You don't have to trust the network because the data may be verified with your own node client.

A full node has the advantage of being able to communicate directly with any smart contract on the public blockchain. Smart contracts can also be deployed now into the public blockchain by full nodes.

Unlimited data usage, storage, and direct smart contract capabilities are not free, however, and full nodes may tax the hardware and bandwidth resources of your machine.

Archive nodes store all of the information that a full node does and creates a history of blockchain states. Even after a client has completed synchronization, archive nodes will save previous data. 

If your application requires historical blockchain information you will need to run your own archive node or pick a blockchain node provider that offers archive node access.

Light nodes are comparable to full nodes, however, they only handle a small amount of data. The light node saves header chain data but only receives extra data when requested. They can validate data validity, but they don't engage fully in block validation.

Alchemy Node Infrastructure

Alchemy is a web3 node infrastructure provider and blockchain developer platform that offers web3 devs supercharged scalability, stability, and data accuracy through Supernode and Alchemy's suite of tooling. Supernode increases every aspect of node functionality using specialized distributed systems and a proprietary coordinator service to ensure real-time data accuracy.

Because nodes are general-purpose and not designed to be highly available, apps that operate their own node may experience higher than average latency and downtime compared to a node provider.

Scalable, Reliable, and Accurate

Alchemy's Supernode offers a scalable node architecture with a 99.99% uptime guarantee, allowing dApp developers to continue scale without interruption to their product or users.

Alchemy's infinitely scalable node infrastructure, unmatched reliability, speed, and data correctness are used to power Polygon, which has proven to be an adoption catalyst, resulting in a significant increase in the number of dApps built on Polygon. 

0x, the global backbone for decentralized exchanges, which allows hundreds of billions of trades to flow through all major blockchains, trusts Alchemy for reliable node infrastructure.

Free Archive node access

Alchemy offers a robust free tier that provides free archive access for both mainnet and testnets. To learn more about Alchemy and to get free archive access, sign up for a free account today.

ALCHEMY SUPERNODE - ETHEREUM NODE API

Scale to any size, without any errors

Alchemy Supernode finally makes it possible to scale blockchain applications without all the headaches. Plus, our legendary support will guide you every step of the way.

Get started for free
Supernode footer
Ethereum
ETHEREUM NODE TYPES

Types of Ethereum Nodes: Full vs. Archive vs. Light

Explore Types of Ethereum Nodes, How They Work, and How They're Different
Last Updated:
August 11, 2022
Last Updated:
March 14, 2023
Don't miss an update
Sign up for our newsletter to get alpha, key insights, and killer resources.
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.

Talk to an Expert

Learn how Alchemy's blockchain developer tools can help your business succeed in web3!
Valid number
Thank you! An Alchemy expert will be in touch with you shortly!
Oops! Something went wrong while submitting the form.

{{building-on-ethereum}}

The Ethereum blockchain is a worldwide distributed network of computers across which nodes pool processing power, resources, and share block verification responsibilities so the network can reach consensus (i.e. agree on a shared state).

This post examines the different types of Ethereum nodes used on the Ethereum blockchain (full nodes, archive nodes, and light nodes), and their differences.

What is a full node?

A full node keeps a complete copy of the blockchain data, and contributes to the network by receiving transactions and blocks from other full nodes, validating them, and forwarding them to other full nodes.

When a smart contract transaction is executed, Ethereum full nodes execute all of the instructions in the smart contract. Together, full determine whether the smart contract execution is producing the desired result. However, running full Ethereum nodes is  expensive to run and consume a great deal of power.

Full Node Clients

A client is an Ethereum software implementation that verifies all transactions in each block, ensuring that the network is safe, and that the transaction data is valid. Ethereum full node clients validate all transactions in each block, providing the network with security and data accuracy.

Each Ethereum client comes with its own set of capabilities and advantages. Implementations can be tailored to different user groups due to their diversity. Consider features, support, web3 programming language, and licenses when selecting an Ethereum node client.

Full Node Client Software Implementations (Execution Layer Clients)

There are four primary types of execution layer full node client implementations:

  1. Geth (Go Ethereum) - written in Go
  2. Nethermind - written in C# and .NET
  3. Erigon - written in Go
  4. Hyperledger Besu - written in Java

After The Merge, when Ethereum transitions from Proof-of-Work to Proof-of-Stake, each full node will need to run a consensus layer client in conjunction with one of the aforemention execution layer clients.

Full Node Client Software Implementations (Consensus Layer Clients)

There are five primary consensus layer clients:

  1. Prsym - built by Prysmatic Labs in Go
  2. Teku - built by the Besu team in Java
  3. Lighthouse - built by Sigma Prime and written in Rust
  4. Nimbus - built by the Nimbus team written in Rust
  5. Lodestar - built by ChainSafe Systems in Typescript

What is a light node?

A light node stores block header data, such as the preceding block's hash and a timestamp, rather than the complete block data like a full node does. Light nodes send on-demand requests to full nodes, validating only the parts of the state that their user's require.

Low-capacity devices, such as personal computers, may benefit from light nodes because they do not perform expensive data storage and writing tasks.

Examples of use cases for light nodes include:

  1. Examining balances
  2. Validating if a transaction was confirmed by the network
  3. Checking event logs

Beside personal computers, light nodes can also be efficiently run on low-capacity devices like mobile phones or Raspberry Pis.

What is an archive node?

An archive node holds all of the same data as a complete node, as well as all of the blockchain's history state data dating back to the Genesis Block (i.e. the first block).

Although full nodes can rebuild old blockchain state data, this synchronization process is time-consuming and inefficient. This data may need to be served rapidly depending on the use case. However, archive nodes can trace transactions since they have historical data dating back to the first block.

Archive nodes can store gigabytes of past data, making them less desirable to the typical user but valuable to service providers like block explorers, wallets, and on-chain analytics companies.

Erigon vs. Geth

The official Golang implementation for the Ethereum protocol is Go Ethereum (or Geth). Geth is the most popular Ethereum client, has the most users, and provides a wide range of Go-based tools for developers, all of which are open-source and licensed under the GNU LGPL v3.

Erigon is a Geth fork that focuses on speed and disk space savings. Erigon is an entirely re-architected Ethereum node client implementation developed in Go with plans tol be ported to other languages in the future. Erigon aims to deliver a more modular, quicker, and streamlined Ethereum implementation.

Compared to Geth, Erigon's parallelized development, flat storage, preprocessing, and staged synchronization, Erigon achieves smaller storage footprints, faster sync speeds, and overall a better experience for developers needing to use trace APIs.

What are the differences between a full node and an archive node?

The main difference between a full node and an archive node is that the archive node keeps track of all of the chain's previous states (i.e. a complete picture of the Ethereum ecosystem), while a full node only needs to store a snapshot of current state data.

Put simply, archive nodes contain all of the historical data since block one, whereas full nodes only contain the most important, current data necessary for validating new transactions while unnecessary blockchain data is "pruned."

How to Choose the Right Type of Node

Choosing the right type of Ethereum node to deploy depends on your use case and resources because node setup and functionality differ significantly.

You can use Ethereum in a private, self-sufficient, and trustless manner by running your node. You don't have to trust the network because the data may be verified with your own node client.

A full node has the advantage of being able to communicate directly with any smart contract on the public blockchain. Smart contracts can also be deployed now into the public blockchain by full nodes.

Unlimited data usage, storage, and direct smart contract capabilities are not free, however, and full nodes may tax the hardware and bandwidth resources of your machine.

Archive nodes store all of the information that a full node does and creates a history of blockchain states. Even after a client has completed synchronization, archive nodes will save previous data. 

If your application requires historical blockchain information you will need to run your own archive node or pick a blockchain node provider that offers archive node access.

Light nodes are comparable to full nodes, however, they only handle a small amount of data. The light node saves header chain data but only receives extra data when requested. They can validate data validity, but they don't engage fully in block validation.

Alchemy Node Infrastructure

Alchemy is a web3 node infrastructure provider and blockchain developer platform that offers web3 devs supercharged scalability, stability, and data accuracy through Supernode and Alchemy's suite of tooling. Supernode increases every aspect of node functionality using specialized distributed systems and a proprietary coordinator service to ensure real-time data accuracy.

Because nodes are general-purpose and not designed to be highly available, apps that operate their own node may experience higher than average latency and downtime compared to a node provider.

Scalable, Reliable, and Accurate

Alchemy's Supernode offers a scalable node architecture with a 99.99% uptime guarantee, allowing dApp developers to continue scale without interruption to their product or users.

Alchemy's infinitely scalable node infrastructure, unmatched reliability, speed, and data correctness are used to power Polygon, which has proven to be an adoption catalyst, resulting in a significant increase in the number of dApps built on Polygon. 

0x, the global backbone for decentralized exchanges, which allows hundreds of billions of trades to flow through all major blockchains, trusts Alchemy for reliable node infrastructure.

Free Archive node access

Alchemy offers a robust free tier that provides free archive access for both mainnet and testnets. To learn more about Alchemy and to get free archive access, sign up for a free account today.

The Ethereum blockchain is a worldwide distributed network of computers across which nodes pool processing power, resources, and share block verification responsibilities so the network can reach consensus (i.e. agree on a shared state).

This post examines the different types of Ethereum nodes used on the Ethereum blockchain (full nodes, archive nodes, and light nodes), and their differences.

What is a full node?

A full node keeps a complete copy of the blockchain data, and contributes to the network by receiving transactions and blocks from other full nodes, validating them, and forwarding them to other full nodes.

When a smart contract transaction is executed, Ethereum full nodes execute all of the instructions in the smart contract. Together, full determine whether the smart contract execution is producing the desired result. However, running full Ethereum nodes is  expensive to run and consume a great deal of power.

Full Node Clients

A client is an Ethereum software implementation that verifies all transactions in each block, ensuring that the network is safe, and that the transaction data is valid. Ethereum full node clients validate all transactions in each block, providing the network with security and data accuracy.

Each Ethereum client comes with its own set of capabilities and advantages. Implementations can be tailored to different user groups due to their diversity. Consider features, support, web3 programming language, and licenses when selecting an Ethereum node client.

Full Node Client Software Implementations (Execution Layer Clients)

There are four primary types of execution layer full node client implementations:

  1. Geth (Go Ethereum) - written in Go
  2. Nethermind - written in C# and .NET
  3. Erigon - written in Go
  4. Hyperledger Besu - written in Java

After The Merge, when Ethereum transitions from Proof-of-Work to Proof-of-Stake, each full node will need to run a consensus layer client in conjunction with one of the aforemention execution layer clients.

Full Node Client Software Implementations (Consensus Layer Clients)

There are five primary consensus layer clients:

  1. Prsym - built by Prysmatic Labs in Go
  2. Teku - built by the Besu team in Java
  3. Lighthouse - built by Sigma Prime and written in Rust
  4. Nimbus - built by the Nimbus team written in Rust
  5. Lodestar - built by ChainSafe Systems in Typescript

What is a light node?

A light node stores block header data, such as the preceding block's hash and a timestamp, rather than the complete block data like a full node does. Light nodes send on-demand requests to full nodes, validating only the parts of the state that their user's require.

Low-capacity devices, such as personal computers, may benefit from light nodes because they do not perform expensive data storage and writing tasks.

Examples of use cases for light nodes include:

  1. Examining balances
  2. Validating if a transaction was confirmed by the network
  3. Checking event logs

Beside personal computers, light nodes can also be efficiently run on low-capacity devices like mobile phones or Raspberry Pis.

What is an archive node?

An archive node holds all of the same data as a complete node, as well as all of the blockchain's history state data dating back to the Genesis Block (i.e. the first block).

Although full nodes can rebuild old blockchain state data, this synchronization process is time-consuming and inefficient. This data may need to be served rapidly depending on the use case. However, archive nodes can trace transactions since they have historical data dating back to the first block.

Archive nodes can store gigabytes of past data, making them less desirable to the typical user but valuable to service providers like block explorers, wallets, and on-chain analytics companies.

Erigon vs. Geth

The official Golang implementation for the Ethereum protocol is Go Ethereum (or Geth). Geth is the most popular Ethereum client, has the most users, and provides a wide range of Go-based tools for developers, all of which are open-source and licensed under the GNU LGPL v3.

Erigon is a Geth fork that focuses on speed and disk space savings. Erigon is an entirely re-architected Ethereum node client implementation developed in Go with plans tol be ported to other languages in the future. Erigon aims to deliver a more modular, quicker, and streamlined Ethereum implementation.

Compared to Geth, Erigon's parallelized development, flat storage, preprocessing, and staged synchronization, Erigon achieves smaller storage footprints, faster sync speeds, and overall a better experience for developers needing to use trace APIs.

What are the differences between a full node and an archive node?

The main difference between a full node and an archive node is that the archive node keeps track of all of the chain's previous states (i.e. a complete picture of the Ethereum ecosystem), while a full node only needs to store a snapshot of current state data.

Put simply, archive nodes contain all of the historical data since block one, whereas full nodes only contain the most important, current data necessary for validating new transactions while unnecessary blockchain data is "pruned."

How to Choose the Right Type of Node

Choosing the right type of Ethereum node to deploy depends on your use case and resources because node setup and functionality differ significantly.

You can use Ethereum in a private, self-sufficient, and trustless manner by running your node. You don't have to trust the network because the data may be verified with your own node client.

A full node has the advantage of being able to communicate directly with any smart contract on the public blockchain. Smart contracts can also be deployed now into the public blockchain by full nodes.

Unlimited data usage, storage, and direct smart contract capabilities are not free, however, and full nodes may tax the hardware and bandwidth resources of your machine.

Archive nodes store all of the information that a full node does and creates a history of blockchain states. Even after a client has completed synchronization, archive nodes will save previous data. 

If your application requires historical blockchain information you will need to run your own archive node or pick a blockchain node provider that offers archive node access.

Light nodes are comparable to full nodes, however, they only handle a small amount of data. The light node saves header chain data but only receives extra data when requested. They can validate data validity, but they don't engage fully in block validation.

Alchemy Node Infrastructure

Alchemy is a web3 node infrastructure provider and blockchain developer platform that offers web3 devs supercharged scalability, stability, and data accuracy through Supernode and Alchemy's suite of tooling. Supernode increases every aspect of node functionality using specialized distributed systems and a proprietary coordinator service to ensure real-time data accuracy.

Because nodes are general-purpose and not designed to be highly available, apps that operate their own node may experience higher than average latency and downtime compared to a node provider.

Scalable, Reliable, and Accurate

Alchemy's Supernode offers a scalable node architecture with a 99.99% uptime guarantee, allowing dApp developers to continue scale without interruption to their product or users.

Alchemy's infinitely scalable node infrastructure, unmatched reliability, speed, and data correctness are used to power Polygon, which has proven to be an adoption catalyst, resulting in a significant increase in the number of dApps built on Polygon. 

0x, the global backbone for decentralized exchanges, which allows hundreds of billions of trades to flow through all major blockchains, trusts Alchemy for reliable node infrastructure.

Free Archive node access

Alchemy offers a robust free tier that provides free archive access for both mainnet and testnets. To learn more about Alchemy and to get free archive access, sign up for a free account today.

{{building-on-ethereum}}

Contact Us

Talk to an expert at Alchemy to answer all of your product questions.
Valid number
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.

Build blockchain magic with Alchemy

Alchemy combines the most powerful web3 developer products and tools with resources, community and legendary support.

Get started for free