@@ -31,12 +31,12 @@ elif [ "$NETWORK" = "devnet" ]; then
3131 NIMBUS_NETWORK=" hoodi"
3232 PRYSM_NETWORK=" --hoodi"
3333 TEKU_NETWORK=" hoodi"
34- elif [ " $NETWORK " = " holesky " ]; then
35- LH_NETWORK=" holesky "
36- LODESTAR_NETWORK=" holesky "
37- NIMBUS_NETWORK=" holesky "
38- PRYSM_NETWORK=" --holesky "
39- TEKU_NETWORK=" holesky "
34+ elif [ " $NETWORK " = " testnet " ]; then
35+ LH_NETWORK=" hoodi "
36+ LODESTAR_NETWORK=" hoodi "
37+ NIMBUS_NETWORK=" hoodi "
38+ PRYSM_NETWORK=" --hoodi "
39+ TEKU_NETWORK=" hoodi "
4040else
4141 echo " Unknown network [$NETWORK ]"
4242 exit 1
210210# Prysm startup
211211if [ " $CC_CLIENT " = " prysm" ]; then
212212
213- # Grab the Holesky genesis state if needed
214- if [ " $NETWORK " = " holesky " ]; then
215- echo " Prysm is configured to use Holesky , genesis state required."
216- if [ ! -f " /ethclient/holesky -genesis.ssz" ]; then
213+ # Grab the Testnet genesis state if needed
214+ if [ " $NETWORK " = " testnet " ]; then
215+ echo " Prysm is configured to use Hoodi , genesis state required."
216+ if [ ! -f " /ethclient/hoodi -genesis.ssz" ]; then
217217 echo " Downloading from Github..."
218- wget https://github.com/eth-clients/holesky /blob/main/metadata/genesis.ssz -O /ethclient/holesky -genesis.ssz
218+ wget https://github.com/eth-clients/hoodi /blob/main/metadata/genesis.ssz -O /ethclient/hoodi -genesis.ssz
219219 echo " Download complete."
220220 else
221221 echo " Genesis state already downloaded, continuing."
@@ -264,8 +264,8 @@ if [ "$CC_CLIENT" = "prysm" ]; then
264264 CMD=" $CMD --disable-monitoring"
265265 fi
266266
267- if [ " $NETWORK " = " holesky " ]; then
268- CMD=" $CMD --genesis-state /ethclient/holesky -genesis.ssz"
267+ if [ " $NETWORK " = " testnet " ]; then
268+ CMD=" $CMD --genesis-state /ethclient/hoodi -genesis.ssz"
269269 elif [ " $NETWORK " = " devnet" ]; then
270270 CMD=" $CMD --genesis-state /ethclient/hoodi-genesis.ssz"
271271 fi
0 commit comments