Celestia Data Availability Nodes
Celestia Node
Golang implementation of Celestia's data availability node types (light | bridge).
The celestia-node types described above comprise the celestia data availability (DA) network.
The DA network wraps the celestia-core consensus network by listening for blocks from the consensus network and making them digestible for data availability sampling (DAS).
Continue reading here if you want to learn more about DAS and how it enables secure and scalable access to Celestia chain data.
Table of Contents
- Table of Contents - Minimum requirements - System requirements - Supported architectures - Installation - API docs - Node types - Run a node - Quick Start with Light Node on arabica - Environment variables - Package-specific documentation - Code of ConductMinimum requirements
| Requirement | Notes | | ----------- |----------------| | Go version | 1.25 or higher |
System requirements
See the official docs page for system requirements for each node type.
Supported architectures
Celestia-node officially supports the following architectures:
linux/amd64linux/arm64darwin/amd64(macOS Intel)darwin/arm64(macOS Apple Silicon)
Installation
git clone https://github.com/celestiaorg/celestia-node.git
cd celestia-node
make build
sudo make install
For more information on setting up a node and the hardware requirements needed, go visit our docs at
API docs
The celestia-node public API is documented here.
Node types
- Bridge nodes - relay blocks from the celestia consensus network to the celestia data availability (DA) network
- Light nodes - verify the availability of block data by sampling the DA network for shares
Run a node
<node_type> can be: bridge or light.
celestia <node_type> init
celestia <node_type> start
Please refer to this guide for more information on running a node.
Quick Start with Light Node on arabica
View available commands and their usage:
make node-help
Install celestia node and cel-key binaries:
make node-install
Start a light node with automated setup:
make light-arabica-up
This command:
- Automatically checks wallet balance
- Requests funds from faucet if needed
- Sets node height to latest-1 for quick startup
- Initializes the node if running for the first time
make light-arabica-up COMMAND=again # Reset node state to latest height
make light-arabica-up CORE_IP=<ip> # Use custom core IP
Environment variables
| Variable | Explanation | Default value | Required | | ----------------------- | ----------------------------------- | ------------- | -------- | | CELESTIA_BOOTSTRAPPER | Start the node in bootstrapper mode | false | Optional |
Package-specific documentation
Code of Conduct
See our Code of Conduct here.