Skip to content

Commit

Permalink
Merge pull request #15 from dappnode/marc/ssv-prepare-for-generic
Browse files Browse the repository at this point in the history
use new staker scripts
  • Loading branch information
Marketen authored Nov 26, 2024
2 parents 96406f9 + cc6de9a commit dd23f6a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
7 changes: 2 additions & 5 deletions operator/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ export NODE_LOG_FILE=${OPERATOR_LOGS_DIR}/node.log
DEFAULT_PRIVATE_KEY_FILE=/encrypted_private_key.json
RAW_NODE_YML_CONFIG_FILE=${NODE_CONFIG_DIR}/raw-node-config.yml

SUPPORTED_NETWORKS="mainnet holesky"

# To use staker scripts
# shellcheck disable=SC1091
. /etc/profile
Expand All @@ -24,14 +22,13 @@ create_directories() {
}

assign_execution_endpoint() {
# TODO: Set all execution clients WS port to 8546
EXECUTION_LAYER_WS=$(get_execution_ws_url_from_global_env "$NETWORK" "$SUPPORTED_NETWORKS")
EXECUTION_LAYER_WS=$(get_execution_ws_url_from_global_env "$NETWORK")

export EXECUTION_LAYER_WS
}

assign_beacon_endpoint() {
BEACON_NODE_API=$(get_beacon_api_url_from_global_env "$NETWORK" "$SUPPORTED_NETWORKS")
BEACON_NODE_API=$(get_beacon_api_url_from_global_env "$NETWORK")

export BEACON_NODE_API
}
Expand Down
4 changes: 2 additions & 2 deletions package_variants/holesky/dappnode_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"services": ["operator"]
}
],
"shortDescription": "SSV for Holesky"
}
"shortDescription": "SSV for Ethereum Testnet Holesky"
}
5 changes: 4 additions & 1 deletion package_variants/mainnet/dappnode_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,8 @@
"services": ["operator"]
}
],
"shortDescription": "SSV for Mainnet"
"optionalDependencies": {
"nethermind.public.dappnode.eth": ">=1.0.55"
},
"shortDescription": "SSV for Ethereum Mainnet"
}

0 comments on commit dd23f6a

Please sign in to comment.