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
82 changes: 44 additions & 38 deletions dappnode_package.json
Original file line number Diff line number Diff line change
@@ -1,58 +1,64 @@
{
"upstream": [
{
"repo": "ConsenSys/web3signer",
"version": "26.4.2",
"arg": "WEB3SIGNER_VERSION"
},
{
"repo": "dappnode/StakingBrain",
"version": "0.1.32",
"arg": "BRAIN_VERSION"
},
"architectures": [
"linux/amd64",
"linux/arm64"
],
"author": "DAppNode Association <admin@dappnode.io> (https://github.com/dappnode)",
"backup": [
{
"repo": "dappnode/staker-package-scripts",
"version": "v0.1.2",
"arg": "STAKER_SCRIPTS_VERSION"
"name": "keystores",
"path": "/data/keyfiles",
"service": "web3signer"
},
{
"repo": "dappnode/validator-tracker",
"version": "0.1.5",
"arg": "TRACKER_VERSION"
"name": "brain-db",
"path": "/app/data/brain-db.json",
"service": "brain"
}
],
"architectures": ["linux/amd64", "linux/arm64"],
"mainService": "web3signer",
"shortDescription": "Remote signer + slashing protection database + User interface to import validator keystores + Flyway for handling db migrations + validatro tracker for notifications",
"description": "Web3Signer package manages your validator keystores effectively, providing a seamless way to handle signing requests and switch between clients with ease.",
"type": "service",
"author": "DAppNode Association <admin@dappnode.io> (https://github.com/dappnode)",
"bugs": {
"url": "https://github.com/dappnode/DAppNodePackage-web3signer-generic/issues"
},
"categories": [
"Blockchain",
"ETH2.0"
],
"contributors": [
"mgarciate <mgarciate@gmail.com> (https://github.com/mgarciate)",
"pablomendezroyo <mendez4a@gmail.com> (https://github.com/pablomendezroyo"
],
"categories": ["Blockchain", "ETH2.0"],
"description": "Web3Signer package manages your validator keystores effectively, providing a seamless way to handle signing requests and switch between clients with ease.",
"license": "Apache-2.0",
"mainService": "web3signer",
"repository": {
"type": "git",
"url": "git+https://github.com/dappnode/DAppNodePackage-web3signer-generic.git"
},
"bugs": {
"url": "https://github.com/dappnode/DAppNodePackage-web3signer-generic/issues"
"requirements": {
"minimumDappnodeVersion": "0.2.101"
},
"license": "Apache-2.0",
"backup": [
"shortDescription": "Remote signer + slashing protection database + User interface to import validator keystores + Flyway for handling db migrations + validatro tracker for notifications",
"type": "service",
"upstream": [
{
"name": "keystores",
"path": "/data/keyfiles",
"service": "web3signer"
"arg": "WEB3SIGNER_VERSION",
"repo": "ConsenSys/web3signer",
"version": "26.4.2"
},
{
"name": "brain-db",
"path": "/app/data/brain-db.json",
"service": "brain"
"arg": "BRAIN_VERSION",
"repo": "dappnode/StakingBrain",
"version": "0.1.31"
},
{
"arg": "STAKER_SCRIPTS_VERSION",
"repo": "dappnode/staker-package-scripts",
"version": "v0.1.2"
},
{
"arg": "TRACKER_VERSION",
"repo": "dappnode/validator-tracker",
"version": "0.1.5"
}
],
"requirements": {
"minimumDappnodeVersion": "0.2.101"
}
]
}
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: services/brain
args:
BRAIN_VERSION: 0.1.32
BRAIN_VERSION: 0.1.31
environment:
- LOG_LEVEL=debug
restart: unless-stopped
Expand Down
Loading