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
54 changes: 30 additions & 24 deletions dappnode_package.json
Original file line number Diff line number Diff line change
@@ -1,46 +1,52 @@
{
"upstream": [
{
"repo": "prysmaticlabs/prysm",
"version": "v7.1.4",
"arg": "UPSTREAM_VERSION"
},
{
"repo": "dappnode/staker-package-scripts",
"version": "v0.1.2",
"arg": "STAKER_SCRIPTS_VERSION"
}
"architectures": [
"linux/amd64",
"linux/arm64"
],
"shortDescription": "Prysm Consensus Client + Validator Client",
"description": "Validate with Prysm: a Go implementation for the Ethereum consensus layer and open source project created by Prysmatic Labs.\n\nIt includes a Grafana dashboard for the [DMS](http://my.dappnode/#/installer/dms.dnp.dappnode.eth) thanks to the amazing work of [metanull-operator](https://github.com/metanull-operator/eth2-grafana)",
"type": "service",
"author": "DAppNode Association <admin@dappnode.io> (https://github.com/dappnode)",
"architectures": ["linux/amd64", "linux/arm64"],
"mainService": "beacon-chain",
"contributors": [
"dappLion <dapplion@dappnode.io> (https://github.com/dapplion)"
"bugs": {
"url": "https://github.com/dappnode/DAppNodePackage-prysm-generic/issues"
},
"categories": [
"Blockchain",
"ETH2.0"
],
"chain": {
"driver": "ethereum-beacon-chain",
"serviceName": "beacon-chain",
"portNumber": 3500
"portNumber": 3500,
"serviceName": "beacon-chain"
},
"contributors": [
"dappLion <dapplion@dappnode.io> (https://github.com/dapplion)"
],
"description": "Validate with Prysm: a Go implementation for the Ethereum consensus layer and open source project created by Prysmatic Labs.\n\nIt includes a Grafana dashboard for the [DMS](http://my.dappnode/#/installer/dms.dnp.dappnode.eth) thanks to the amazing work of [metanull-operator](https://github.com/metanull-operator/eth2-grafana)",
"license": "GPL-3.0",
"mainService": "beacon-chain",
"repository": {
"type": "git",
"url": "git+https://github.com/dappnode/DAppNodePackage-prysm-generic.git"
},
"bugs": {
"url": "https://github.com/dappnode/DAppNodePackage-prysm-generic/issues"
},
"requirements": {
"minimumDappnodeVersion": "0.2.106"
},
"categories": ["Blockchain", "ETH2.0"],
"shortDescription": "Prysm Consensus Client + Validator Client",
"style": {
"featuredBackground": "linear-gradient(67deg, #16000c, #123939)",
"featuredColor": "white"
},
"type": "service",
"upstream": [
{
"arg": "UPSTREAM_VERSION",
"repo": "prysmaticlabs/prysm",
"version": "v7.1.5"
},
{
"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"
}
Expand Down
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: v7.1.4
UPSTREAM_VERSION: v7.1.5
STAKER_SCRIPTS_VERSION: v0.1.2
DATA_DIR: /data
volumes:
Expand Down
Loading