From 6419d4ba16312861c351d4fe518c826c4f973a13 Mon Sep 17 00:00:00 2001 From: Uncle Stretch Date: Wed, 10 Jun 2026 11:11:46 +0300 Subject: [PATCH] add hoodi network for the rpc-tester Signed-off-by: Uncle Stretch --- scripts/rpc-tester.sh | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/scripts/rpc-tester.sh b/scripts/rpc-tester.sh index 8fbc936..6868ec9 100755 --- a/scripts/rpc-tester.sh +++ b/scripts/rpc-tester.sh @@ -17,15 +17,21 @@ MORDOR_RPC=( "https://rpc.mordor.etccooperative.org" ) +HOODI_RPC=( + "https://rpc.hoodi.ethpandaops.io" + "https://0xrpc.io/hoodi" + "https://ethereum-hoodi.gateway.tatum.io" + "https://rpc.sentio.xyz/hoodi" +) + show_help() { cat << EOF Usage: $(basename "$0") [OPTIONS] Options: - --chain Specify network: 'sepolia' or 'mordor'. If omitted, checks both. + --chain Specify network: 'sepolia', 'hoodi' or 'mordor'. If omitted, checks all. --output Base directory to save results. Creates a subfolder with Unix Timestamp. - --rpcs Comma-separated list of custom RPC endpoints. - Disables default Sepolia/Mordor lists. + --rpcs Comma-separated list of custom RPC endpoints. Disables default networks lists. --help Show this help message. Example: @@ -129,8 +135,11 @@ else check_network "Sepolia" "${SEPOLIA_RPC[@]}" elif [ "$CHOSEN_CHAIN" == "mordor" ]; then check_network "Mordor" "${MORDOR_RPC[@]}" + elif [ "$CHOSEN_CHAIN" == "hoodi" ]; then + check_network "Hoodi" "${HOODI_RPC[@]}" else check_network "Sepolia" "${SEPOLIA_RPC[@]}" check_network "Mordor" "${MORDOR_RPC[@]}" + check_network "Hoodi" "${HOODI_RPC[@]}" fi fi