diff --git a/bridges/testing/environments/rococo-westend/bridges_rococo_westend.sh b/bridges/testing/environments/rococo-westend/bridges_rococo_westend.sh
index 57a3e08502f2da8efb13c45e6982bba7353cf2ac..ef4a5597902fdc61caedd071f408f03a87a19ea0 100755
--- a/bridges/testing/environments/rococo-westend/bridges_rococo_westend.sh
+++ b/bridges/testing/environments/rococo-westend/bridges_rococo_westend.sh
@@ -175,11 +175,9 @@ function run_finality_relay() {
     RUST_LOG=runtime=trace,rpc=trace,bridge=trace \
         $relayer_path relay-headers rococo-to-bridge-hub-westend \
         --only-free-headers \
-        --source-host localhost \
-        --source-port 9942 \
+        --source-uri ws://localhost:9942 \
         --source-version-mode Auto \
-        --target-host localhost \
-        --target-port 8945 \
+        --target-uri ws://localhost:8945 \
         --target-version-mode Auto \
         --target-signer //Charlie \
         --target-transactions-mortality 4&
@@ -187,11 +185,9 @@ function run_finality_relay() {
     RUST_LOG=runtime=trace,rpc=trace,bridge=trace \
         $relayer_path relay-headers westend-to-bridge-hub-rococo \
         --only-free-headers \
-        --source-host localhost \
-        --source-port 9945 \
+        --source-uri ws://localhost:9945 \
         --source-version-mode Auto \
-        --target-host localhost \
-        --target-port 8943 \
+        --target-uri ws://localhost:8943 \
         --target-version-mode Auto \
         --target-signer //Charlie \
         --target-transactions-mortality 4
@@ -203,11 +199,9 @@ function run_parachains_relay() {
     RUST_LOG=runtime=trace,rpc=trace,bridge=trace \
         $relayer_path relay-parachains rococo-to-bridge-hub-westend \
         --only-free-headers \
-        --source-host localhost \
-        --source-port 9942 \
+        --source-uri ws://localhost:9942 \
         --source-version-mode Auto \
-        --target-host localhost \
-        --target-port 8945 \
+        --target-uri ws://localhost:8945 \
         --target-version-mode Auto \
         --target-signer //Dave \
         --target-transactions-mortality 4&
@@ -215,11 +209,9 @@ function run_parachains_relay() {
     RUST_LOG=runtime=trace,rpc=trace,bridge=trace \
         $relayer_path relay-parachains westend-to-bridge-hub-rococo \
         --only-free-headers \
-        --source-host localhost \
-        --source-port 9945 \
+        --source-uri ws://localhost:9945 \
         --source-version-mode Auto \
-        --target-host localhost \
-        --target-port 8943 \
+        --target-uri ws://localhost:8943 \
         --target-version-mode Auto \
         --target-signer //Dave \
         --target-transactions-mortality 4
@@ -230,13 +222,11 @@ function run_messages_relay() {
 
     RUST_LOG=runtime=trace,rpc=trace,bridge=trace \
         $relayer_path relay-messages bridge-hub-rococo-to-bridge-hub-westend \
-        --source-host localhost \
-        --source-port 8943 \
+        --source-uri ws://localhost:8943 \
         --source-version-mode Auto \
         --source-signer //Eve \
         --source-transactions-mortality 4 \
-        --target-host localhost \
-        --target-port 8945 \
+        --target-uri ws://localhost:8945 \
         --target-version-mode Auto \
         --target-signer //Eve \
         --target-transactions-mortality 4 \
@@ -244,13 +234,11 @@ function run_messages_relay() {
 
     RUST_LOG=runtime=trace,rpc=trace,bridge=trace \
         $relayer_path relay-messages bridge-hub-westend-to-bridge-hub-rococo \
-        --source-host localhost \
-        --source-port 8945 \
+        --source-uri ws://localhost:8945 \
         --source-version-mode Auto \
         --source-signer //Ferdie \
         --source-transactions-mortality 4 \
-        --target-host localhost \
-        --target-port 8943 \
+        --target-uri ws://localhost:8943 \
         --target-version-mode Auto \
         --target-signer //Ferdie \
         --target-transactions-mortality 4 \