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
60 changes: 33 additions & 27 deletions dappnode_package.json
Original file line number Diff line number Diff line change
@@ -1,43 +1,49 @@
{
"upstream": [
{
"repo": "sigp/lighthouse",
"version": "v8.1.3",
"arg": "UPSTREAM_VERSION"
},
{
"repo": "dappnode/staker-package-scripts",
"version": "v0.1.2",
"arg": "STAKER_SCRIPTS_VERSION"
}
"architectures": [
"linux/amd64",
"linux/arm64"
],
"architectures": ["linux/amd64", "linux/arm64"],
"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)",
"bugs": {
"url": "https://github.com/dappnode/DAppNodePackage-lighthouse-generic/issues"
},
"categories": [
"Blockchain",
"ETH2.0"
],
"chain": {
"driver": "ethereum-beacon-chain",
"portNumber": 3500,
"serviceName": "beacon-chain"
},
"contributors": [
"pablo <pablo@dappnode.io> (https://github.com/pablomendezroyo)",
"mgarciate <mgarciate@gmail.com> (https://github.com/mgarciate)"
],
"categories": ["Blockchain", "ETH2.0"],
"description": "Lighthouse is an Ethereum consensus client based in Rust and developed by [Sigma Prime](https://github.com/sigp/).",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/dappnode/DAppNodePackage-lighthouse-generic.git"
},
"bugs": {
"url": "https://github.com/dappnode/DAppNodePackage-lighthouse-generic/issues"
},
"license": "Apache-2.0",
"chain": {
"driver": "ethereum-beacon-chain",
"serviceName": "beacon-chain",
"portNumber": 3500
"requirements": {
"minimumDappnodeVersion": "0.2.106"
},
"shortDescription": "Lighthouse Consensus Client + Validator Client",
"type": "service",
"upstream": [
{
"arg": "UPSTREAM_VERSION",
"repo": "sigp/lighthouse",
"version": "v8.2.0"
},
{
"arg": "STAKER_SCRIPTS_VERSION",
"repo": "dappnode/staker-package-scripts",
"version": "v0.1.2"
}
],
"warnings": {
"onRemove": "Make sure your StakersUI does not have this client selected! Double check in the Stakers Tab in the left NavBar"
},
"requirements": {
"minimumDappnodeVersion": "0.2.106"
}
}
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
build:
context: beacon-chain
args:
UPSTREAM_VERSION: v8.1.3
UPSTREAM_VERSION: v8.2.0
STAKER_SCRIPTS_VERSION: v0.1.2
BEACON_API_PORT: 3500
DATA_DIR: /root/.lighthouse
Expand Down