Skip to content
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
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
# Lighthouse Dappnode package

**Lighthouse ETH2.0 Beacon chain + validator**
**Lighthouse Consensus Client + Validator Client**

Lighthouse is an Ethereum consensus client that connects to other Ethereum consensus clients to form a resilient and decentralized proof-of-stake blockchain.

We implement the specification as defined in the ethereum/consensus-specs repository.
Lighthouse is a Rust-based Ethereum consensus client.

![avatar](avatar.png)
4 changes: 2 additions & 2 deletions dappnode_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
}
],
"architectures": ["linux/amd64"],
"shortDescription": "Lighthouse ETH2.0 Beacon chain + validator",
"description": "Lighthouse is an Ethereum 2.0 client that connects to other Ethereum 2.0 clients to form a resilient and decentralized proof-of-stake blockchain.",
"shortDescription": "Lighthouse Consensus Client + Validator Client",
"description": "Lighthouse is an Ethereum consensus client based in Rust and developed by [Sigma Prime](https://github.com/sigp/).",
"type": "service",
"author": "DAppNode Association <admin@dappnode.io> (https://github.com/dappnode)",
"contributors": [
Expand Down
21 changes: 0 additions & 21 deletions package_variants/holesky/dappnode_package.json

This file was deleted.

17 changes: 0 additions & 17 deletions package_variants/holesky/docker-compose.yml

This file was deleted.

52 changes: 0 additions & 52 deletions package_variants/holesky/holesky-notifications.yaml

This file was deleted.

20 changes: 0 additions & 20 deletions package_variants/holesky/prometheus-targets.json

This file was deleted.

2 changes: 1 addition & 1 deletion setup-wizard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ fields:
title: Checkpoint for fast sync
description: >-
To get Lighthouse up and running in only a few minutes, you can start Lighthouse from a recent finalized checkpoint state rather than syncing from genesis. This is substantially **faster** and consumes **less resources** than syncing from genesis, while still providing all the same features. Be sure you are using a trusted node for the fast sync. Check the Check the [Lighthouse docs](https://lighthouse-book.sigmaprime.io/checkpoint-sync.html) for more information.
Use the Dappnode Official endpoint for your network (`https://checkpoint-sync.dappnode.io`, `https://checkpoint-sync-holesky.dappnode.io`, `https://checkpoint-sync-hoodi.dappnode.io`, `https://checkpoint-sync-gnosis.dappnode.io`) or get your checkpoint sync from [Infura](https://infura.io/) (i.e https://XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX@eth2-beacon.infura.io)
Use the Dappnode Official endpoint for your network (`https://checkpoint-sync.dappnode.io`, `https://checkpoint-sync-hoodi.dappnode.io`, `https://checkpoint-sync-gnosis.dappnode.io`) or get your checkpoint sync from [Infura](https://infura.io/) (i.e https://XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX@eth2-beacon.infura.io)
*Note - If you are going to provide your own checkpoint sync endpoint, make sure you do not use a slash `/` at the end of the URL.*
required: false
- id: feeRecipientAddress
Expand Down
2 changes: 1 addition & 1 deletion validator/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

SUPPORTED_NETWORKS="gnosis holesky hoodi mainnet"
SUPPORTED_NETWORKS="gnosis hoodi mainnet"
MEVBOOST_FLAG_KEY="--builder-proposals"
SKIP_MEVBOOST_URL="true"
CLIENT="lighthouse"
Expand Down