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
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"
}