Skip to content

Commit dd23f6a

Browse files
authored
Merge pull request #15 from dappnode/marc/ssv-prepare-for-generic
use new staker scripts
2 parents 96406f9 + cc6de9a commit dd23f6a

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

operator/entrypoint.sh

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ export NODE_LOG_FILE=${OPERATOR_LOGS_DIR}/node.log
1313
DEFAULT_PRIVATE_KEY_FILE=/encrypted_private_key.json
1414
RAW_NODE_YML_CONFIG_FILE=${NODE_CONFIG_DIR}/raw-node-config.yml
1515

16-
SUPPORTED_NETWORKS="mainnet holesky"
17-
1816
# To use staker scripts
1917
# shellcheck disable=SC1091
2018
. /etc/profile
@@ -24,14 +22,13 @@ create_directories() {
2422
}
2523

2624
assign_execution_endpoint() {
27-
# TODO: Set all execution clients WS port to 8546
28-
EXECUTION_LAYER_WS=$(get_execution_ws_url_from_global_env "$NETWORK" "$SUPPORTED_NETWORKS")
25+
EXECUTION_LAYER_WS=$(get_execution_ws_url_from_global_env "$NETWORK")
2926

3027
export EXECUTION_LAYER_WS
3128
}
3229

3330
assign_beacon_endpoint() {
34-
BEACON_NODE_API=$(get_beacon_api_url_from_global_env "$NETWORK" "$SUPPORTED_NETWORKS")
31+
BEACON_NODE_API=$(get_beacon_api_url_from_global_env "$NETWORK")
3532

3633
export BEACON_NODE_API
3734
}

package_variants/holesky/dappnode_package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
"services": ["operator"]
88
}
99
],
10-
"shortDescription": "SSV for Holesky"
11-
}
10+
"shortDescription": "SSV for Ethereum Testnet Holesky"
11+
}

package_variants/mainnet/dappnode_package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,8 @@
77
"services": ["operator"]
88
}
99
],
10-
"shortDescription": "SSV for Mainnet"
10+
"optionalDependencies": {
11+
"nethermind.public.dappnode.eth": ">=1.0.55"
12+
},
13+
"shortDescription": "SSV for Ethereum Mainnet"
1114
}

0 commit comments

Comments
 (0)