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
Changes from 2 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
16 changes: 8 additions & 8 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 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 @@ -154,12 +154,6 @@ The LUKSO network currently supports the following clients versions:
</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 +262,12 @@ The synchronization process will take multiple hours for the node to finalize.

:::

:::caution Sync Delay

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
Loading