Golang implementation of Elysium's data availability node types (light
| full
| bridge
).
The elysium-node types described above comprise the elysium data availability (DA) network.
The DA network wraps the elysium-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 Elysium chain data.
Requirement | Notes |
---|---|
Go version | 1.20 or higher |
See the official docs page for system requirements per node type:
git clone https://github.com/furyaxyz/elysium-node.git
cd elysium-node
make build
sudo make install
For more information on setting up a node and the hardware requirements needed, go visit our docs at https://docs.elysium.org.
Elysium-node public API is documented here.
- Bridge nodes - relay blocks from the elysium consensus network to the elysium data availability (DA) network
- Full nodes - fully reconstruct and store blocks by sampling the DA network for shares
- Light nodes - verify the availability of block data by sampling the DA network for shares
More information can be found here.
<node_type>
can be bridge
, full
or light
.
elysium <node_type> init
elysium <node_type> start
Variable | Explanation | Default value | Required |
---|---|---|---|
ELESYIUM_BOOTSTRAPPER |
Start the node in bootstrapper mode | false |
Optional |
See our Code of Conduct here.