Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update running-a-node.md #1183

Merged
merged 6 commits into from
Dec 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 20 additions & 9 deletions docs/networks/mainnet/running-a-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ The LUKSO network currently supports the following clients versions:
</tr>
<tr>
<td><a href="https://geth.ethereum.org/">Geth</a></td>
<td><a href="https://github.com/ethereum/go-ethereum/releases/tag/v1.14.7">v1.14.7</a></td>
<td><a href="https://github.com/ethereum/go-ethereum/releases/tag/v1.14.12">v1.14.12</a></td>
<td style={{textAlign: 'center'}}><a class="imageLink" href="https://github.com/ethereum/go-ethereum"><GithubIcon /></a></td>
<td style={{textAlign: 'center'}}><a class="imageLink" href="https://geth.ethereum.org/docs"><BookIcon /></a></td>
<td style={{textAlign: 'center'}}><a class="imageLink" href="https://discord.com/invite/nthXNEv"><DiscordIcon /></a></td>
Expand All @@ -76,7 +76,7 @@ The LUKSO network currently supports the following clients versions:
<td style={{textAlign: 'center'}}><a class="imageLink" href="https://github.com/ledgerwatch/erigon"><GithubIcon /></a></td>
<td style={{textAlign: 'center'}}><a class="imageLink" href="https://erigon.gitbook.io/erigon"><BookIcon /></a></td>
<td style={{textAlign: 'center'}}><a class="imageLink" href="https://github.com/erigontech/erigon?tab=readme-ov-file#erigon-discord-server"><DiscordIcon /></a></td>
<td>Alpha & Beta</td>
<td>Stable</td>
<td>Linux, Win, macOS, ARM</td>
<td><a href="https://go.dev/">Golang</a></td>
<td style={{textAlign: 'center'}}><a class="imageLink" href="https://protocol-guild.readthedocs.io/en/latest/index.html"><img style={{verticalAlign: 'middle'}} src={protocolGuildIcon}/></a></td>
Expand Down Expand Up @@ -121,7 +121,7 @@ The LUKSO network currently supports the following clients versions:
</tr>
<tr>
<td><a href="https://prysmaticlabs.com/">Prysm</a></td>
<td><a href="https://github.com/prysmaticlabs/prysm/releases/tag/v5.0.4">v5.0.4</a></td>
<td><a href="https://github.com/prysmaticlabs/prysm/releases/tag/v5.1.2">v5.1.2</a></td>
<td style={{textAlign: 'center'}}><a class="imageLink" href="https://github.com/prysmaticlabs/prysm"><GithubIcon /></a></td>
<td style={{textAlign: 'center'}}><a class="imageLink" href="https://docs.prylabs.network/docs/getting-started"><BookIcon /></a></td>
<td style={{textAlign: 'center'}}><a class="imageLink" href="https://discord.com/invite/prysmaticlabs"><DiscordIcon /></a></td>
Expand Down Expand Up @@ -152,14 +152,19 @@ The LUKSO network currently supports the following clients versions:
<td><a href="https://www.java.com/">Java</a></td>
<td style={{textAlign: 'center'}}><a class="imageLink" href="https://protocol-guild.readthedocs.io/en/latest/index.html"><img style={{verticalAlign: 'middle'}} src={protocolGuildIcon}/></a></td>
</tr>
<tr>
<td><a href="https://nimbus.team/">Nimbus</a></td>
<td><a href="https://github.com/status-im/nimbus-eth2/releases/tag/v24.10.0">v24.10.0</a></td>
<td style={{textAlign: 'center'}}><a class="imageLink" href="https://github.com/status-im/nimbus-eth2"><GithubIcon /></a></td>
<td style={{textAlign: 'center'}}><a class="imageLink" href="https://nimbus.guide/index.html"><BookIcon /></a></td>
<td style={{textAlign: 'center'}}><a class="imageLink" href="https://discord.com/invite/XRxWahP"><DiscordIcon /></a></td>
<td>Stable</td>
<td>Linux, Win, macOS</td>
<td><a href="https://nim-lang.org/">Nim</a></td>
<td style={{textAlign: 'center'}}><a class="imageLink" href="https://protocol-guild.readthedocs.io/en/latest/index.html"><img style={{verticalAlign: 'middle'}} src={protocolGuildIcon}/></a></td>
</tr>
</table>

:::info

In preparation for the [upcoming Dencun fork](https://luksovalidators.substack.com/p/preparing-for-the-dencun-fork) on LUKSO, we **highly recommend** node operators to [update their clients and network configurations](../advanced-guides/update-clients.md).

:::

:::caution

Running newer versions of the clients can potentially lead to validation issues, loss of funds, or even a validator slash.
Expand Down Expand Up @@ -268,6 +273,12 @@ The synchronization process will take multiple hours for the node to finalize.

:::

:::caution Lighthouse Sync

Starting from the current version of the Lighthouse client software, it is mandatory to use checkpoint sync for initializing a fresh node. Without this, the node will fail to start and log the following error message: Syncing from genesis is insecure and incompatible with data availability checks. You should instead perform a checkpoint sync from a trusted node using the --checkpoint-sync-url option: `lukso start --checkpoint-sync` or use additional flag to force regular Lighthouse sync: `lukso start --lighthouse-allow-insecure-genesis-sync`

:::

```sh
lukso start
```
Expand Down
6 changes: 0 additions & 6 deletions docs/networks/testnet/running-a-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,6 @@ Running a testnet node is very similar to running a mainnet node. Therefore, we

:::

:::info

In preparation for the [upcoming Dencun fork](https://luksovalidators.substack.com/p/preparing-for-the-dencun-fork) on LUKSO, we **highly recommend** node operators to [update their clients and network configurations](../advanced-guides/update-clients.md) based on the [latest supported clients](../mainnet/running-a-node.md#supported-clients-versions).

:::

## Starting a Node

To start your clients and contribute to the LUKSO testnet network, you have 3 options.
Expand Down
Loading