Skip to content
Open
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,44 +1,50 @@
{
"upstream": [
{
"repo": "ChainSafe/lodestar",
"version": "v1.43.0",
"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": "Lodestar ETH2.0 Beacon chain + validator",
"description": "Typescript Ethereum Consensus Layer Implementation by ChainSafe",
"type": "service",
"author": "DAppNode Association <admin@dappnode.io> (https://github.com/dappnode)",
"bugs": {
"url": "https://github.com/dappnode/DAppNodePackage-Lodestar-generic/issues"
},
"categories": [
"Blockchain",
"ETH2.0"
],
"chain": {
"driver": "ethereum-beacon-chain",
"portNumber": 3500,
"serviceName": "beacon-chain"
},
"contributors": [
"tropicar <tropicar@dappnode.io> (https://github.com/tropicar)",
"nabsku <thenabsku@gmail.com> (https://github.com/nabsku)",
"Voss <voss@visnovalabs.io> (https://github.com/alexpeterson91)"
],
"categories": ["Blockchain", "ETH2.0"],
"description": "Typescript Ethereum Consensus Layer Implementation by ChainSafe",
"license": "LGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/dappnode/DAppNodePackage-Lodestar-generic.git"
},
"bugs": {
"url": "https://github.com/dappnode/DAppNodePackage-Lodestar-generic/issues"
},
"license": "LGPL-3.0",
"chain": {
"driver": "ethereum-beacon-chain",
"serviceName": "beacon-chain",
"portNumber": 3500
"requirements": {
"minimumDappnodeVersion": "0.2.106"
},
"shortDescription": "Lodestar ETH2.0 Beacon chain + validator",
"type": "service",
"upstream": [
{
"arg": "UPSTREAM_VERSION",
"repo": "ChainSafe/lodestar",
"version": "v1.44.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"
}

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Marketen any idea why there is such a large diff in this file?

}
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: v1.43.0
UPSTREAM_VERSION: v1.44.0
STAKER_SCRIPTS_VERSION: v0.1.2
DATA_DIR: /var/lib/data
volumes:
Expand Down