Skip to content
Closed
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
72 changes: 39 additions & 33 deletions dappnode_package.json
Original file line number Diff line number Diff line change
@@ -1,61 +1,67 @@
{
"upstream": [
{
"repo": "ssvlabs/ssv",
"version": "v2.4.3",
"arg": "OPERATOR_UPSTREAM_VERSION"
},
"architectures": [
"linux/amd64",
"linux/arm64"
],
"author": "DAppNode Association <admin@dappnode.io> (https://github.com/dappnode)",
"backup": [
{
"repo": "ssvlabs/ssv-dkg",
"version": "v3.0.3",
"arg": "DKG_UPSTREAM_VERSION"
"name": "operator-config",
"path": "/data/operator/config",
"service": "operator"
},
{
"repo": "dappnode/staker-package-scripts",
"version": "v0.1.2",
"arg": "STAKER_SCRIPTS_VERSION"
"name": "dkg-output",
"path": "/data/dkg/output",
"service": "dkg"
}
],
"architectures": ["linux/amd64", "linux/arm64"],
"shortDescription": "SSV",
"description": "The SSV Network is a decentralized, open-source Ethereum staking network that enhances validator key security and network redundancy using Distributed Validator Technology (DVT)",
"type": "service",
"author": "DAppNode Association <admin@dappnode.io> (https://github.com/dappnode)",
"bugs": {
"url": "https://github.com/dappnode/DAppNodePackage-SSV-generic/issues"
},
"categories": [
"Lido",
"ETH2.0"
],
"contributors": [
"Eduardo Antuña <edu@dappnode.io> (https://github.com/eduadiez)",
"Voss <voss@VisNovaLabs.io> (https://github.com/alexpeterson91)"
],
"categories": ["Lido", "ETH2.0"],
"description": "The SSV Network is a decentralized, open-source Ethereum staking network that enhances validator key security and network redundancy using Distributed Validator Technology (DVT)",
"license": "GPL-3.0",
"mainService": "operator",
"links": {
"SSV.Network Explorer": "https://explorer.ssv.network/",
"Docs": "https://docs.ssv.network/learn/introduction",
"Homepage": "https://ssv.network/",
"SSV Web App": "http://app.ssv.network/",
"SSV.Network Explorer": "https://explorer.ssv.network/",
"Validator Deposit Bot": "https://discord.gg/CBwPUX2Aav",
"Docs": "https://docs.ssv.network/learn/introduction",
"tSSV Faucet": "https://faucet.ssv.network/",
"SSV Web App": "http://app.ssv.network/"
"tSSV Faucet": "https://faucet.ssv.network/"
},
"mainService": "operator",
"repository": {
"type": "git",
"url": "git+https://github.com/dappnode/DAppNodePackage-SSV-generic.git"
},
"bugs": {
"url": "https://github.com/dappnode/DAppNodePackage-SSV-generic/issues"
},
"requirements": {
"minimumDappnodeVersion": "0.2.101"
},
"backup": [
"shortDescription": "SSV",
"type": "service",
"upstream": [
{
"name": "operator-config",
"path": "/data/operator/config",
"service": "operator"
"arg": "OPERATOR_UPSTREAM_VERSION",
"repo": "ssvlabs/ssv",
"version": "v2.4.3"
},
{
"name": "dkg-output",
"path": "/data/dkg/output",
"service": "dkg"
"arg": "DKG_UPSTREAM_VERSION",
"repo": "ssvlabs/ssv-dkg",
"version": "v3.1.0"
},
{
"arg": "STAKER_SCRIPTS_VERSION",
"repo": "dappnode/staker-package-scripts",
"version": "v0.1.2"
}
]
}
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: operator
args:
OPERATOR_UPSTREAM_VERSION: v2.4.3
OPERATOR_UPSTREAM_VERSION: v3.1.0
STAKER_SCRIPTS_VERSION: v0.1.2
restart: unless-stopped
volumes:
Expand Down
Loading