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
62 changes: 34 additions & 28 deletions dappnode_package.json
Original file line number Diff line number Diff line change
@@ -1,44 +1,50 @@
{
"upstream": [
{
"repo": "status-im/nimbus-eth2",
"version": "v26.5.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": "Nimbus ETH2.0 Beacon chain + validator",
"description": "Nimbus is a client implementation that strives to be as lightweight as possible in terms of resources used. This allows it to perform well on embedded systems, resource-restricted devices -- including Raspberry Pis and mobile devices -- and multi-purpose servers.",
"type": "service",
"author": "DAppNode Association <admin@dappnode.io> (https://github.com/dappnode)",
"bugs": {
"url": "https://github.com/dappnode/DAppNodePackage-nimbus-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)",
"marce <mgarciate@dappnode.io> (https://github.com/mgarciate)"
],
"description": "Nimbus is a client implementation that strives to be as lightweight as possible in terms of resources used. This allows it to perform well on embedded systems, resource-restricted devices -- including Raspberry Pis and mobile devices -- and multi-purpose servers.",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/dappnode/DAppNodePackage-nimbus-generic.git"
},
"bugs": {
"url": "https://github.com/dappnode/DAppNodePackage-nimbus-generic/issues"
},
"categories": ["Blockchain", "ETH2.0"],
"chain": {
"driver": "ethereum-beacon-chain",
"serviceName": "beacon-chain",
"portNumber": 3500
},
"warnings": {
"onRemove": "Make sure your StakersUI does not have this client selected! Double check in the Stakers Tab in the left NavBar",
"onMajorUpdate": "This major update requires you to reconfigure your previous settings."
},
"requirements": {
"minimumDappnodeVersion": "0.2.106"
},
"shortDescription": "Nimbus ETH2.0 Beacon chain + validator",
"type": "service",
"upstream": [
{
"arg": "UPSTREAM_VERSION",
"repo": "status-im/nimbus-eth2",
"version": "v26.6.0"
},
{
"arg": "STAKER_SCRIPTS_VERSION",
"repo": "dappnode/staker-package-scripts",
"version": "v0.1.2"
}
],
"warnings": {
"onMajorUpdate": "This major update requires you to reconfigure your previous settings.",
"onRemove": "Make sure your StakersUI does not have this client selected! Double check in the Stakers Tab in the left NavBar"
}
}
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
build:
context: beacon-chain
args:
UPSTREAM_VERSION: v26.5.0
UPSTREAM_VERSION: v26.6.0
STAKER_SCRIPTS_VERSION: v0.1.2
DATA_DIR: /home/user/nimbus-eth2/build/data
environment:
Expand Down