File tree 4 files changed +21
-4
lines changed
4 files changed +21
-4
lines changed Original file line number Diff line number Diff line change 1
- MAIN_SERVICE_IMAGE = ghcr.io/layr-labs/eigenda/opr-node:release-0.6.2-rc.0
1
+ MAIN_SERVICE_IMAGE = ghcr.io/layr-labs/eigenda/opr-node:release-0.6.2
2
2
NETWORK_NAME = eigenda-network
3
3
MAIN_SERVICE_NAME = eigenda-native-node
4
4
Original file line number Diff line number Diff line change 5
5
6
6
socket=" $NODE_HOSTNAME " :" ${NODE_DISPERSAL_PORT} " \; " ${NODE_RETRIEVAL_PORT} "
7
7
8
- node_plugin_image=" ghcr.io/layr-labs/eigenda/opr-nodeplugin:release-0.6.2-rc.0 "
8
+ node_plugin_image=" ghcr.io/layr-labs/eigenda/opr-nodeplugin:release-0.6.2"
9
9
10
10
# In all commands, We have to explicitly set the password again here because
11
11
# when docker run loads the `.env` file, it keeps the quotes around the password
Original file line number Diff line number Diff line change 1
- MAIN_SERVICE_IMAGE = ghcr.io/layr-labs/eigenda/opr-node:release-0.6.1
1
+ MAIN_SERVICE_IMAGE = ghcr.io/layr-labs/eigenda/opr-node:release-0.6.2
2
2
NETWORK_NAME = eigenda-network
3
3
MAIN_SERVICE_NAME = eigenda-native-node
4
4
Original file line number Diff line number Diff line change 5
5
6
6
socket=" $NODE_HOSTNAME " :" ${NODE_DISPERSAL_PORT} " \; " ${NODE_RETRIEVAL_PORT} "
7
7
8
- node_plugin_image=" ghcr.io/layr-labs/eigenda/opr-nodeplugin:release-0.6.1 "
8
+ node_plugin_image=" ghcr.io/layr-labs/eigenda/opr-nodeplugin:release-0.6.2 "
9
9
10
10
# In all commands, We have to explicitly set the password again here because
11
11
# when docker run loads the `.env` file, it keeps the quotes around the password
@@ -62,6 +62,21 @@ listQuorums() {
62
62
--quorum-id-list 0
63
63
}
64
64
65
+ updateSocket () {
66
+ # we have to pass a dummy quorum-id-list as it is required by the plugin
67
+ docker run --env-file .env \
68
+ --rm \
69
+ --volume " ${NODE_ECDSA_KEY_FILE_HOST} " :/app/operator_keys/ecdsa_key.json \
70
+ --volume " ${NODE_BLS_KEY_FILE_HOST} " :/app/operator_keys/bls_key.json \
71
+ --volume " ${NODE_LOG_PATH_HOST} " :/app/logs:rw \
72
+ " $node_plugin_image " \
73
+ --ecdsa-key-password " $NODE_ECDSA_KEY_PASSWORD " \
74
+ --bls-key-password " $NODE_BLS_KEY_PASSWORD " \
75
+ --socket " $socket " \
76
+ --operation update-socket \
77
+ --quorum-id-list 0
78
+ }
79
+
65
80
if [ " $1 " = " opt-in" ]; then
66
81
if [ -z " $2 " ]; then
67
82
echo " Please provide quorum number (0/1/0,1)"
@@ -78,6 +93,8 @@ elif [ "$1" = "opt-out" ]; then
78
93
optOut " $2 "
79
94
elif [ " $1 " = " list-quorums" ]; then
80
95
listQuorums
96
+ elif [ " $1 " = " update-socket" ]; then
97
+ updateSocket
81
98
else
82
99
echo " Invalid command"
83
100
fi
You can’t perform that action at this time.
0 commit comments