From f1c9de9faf75bfd7ee44b7ca7c3759c6f23d07f1 Mon Sep 17 00:00:00 2001 From: Nacho Avecilla Date: Fri, 17 Nov 2023 22:50:04 +0300 Subject: [PATCH] fix: update rpc urls (#80) Co-authored-by: Joaquin Carletti --- src/data/chains.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/data/chains.ts b/src/data/chains.ts index 8f5d3113..5691f714 100644 --- a/src/data/chains.ts +++ b/src/data/chains.ts @@ -43,18 +43,18 @@ export const l2Chains: L2Chain[] = [ id: 260, name: "Local In-memory node", network: "local-in-memory", - rpcUrl: "http://localhost:8011", + rpcUrl: "http://127.0.0.1:8011", }, { id: 270, name: "Local Dockerized node", network: "local-dockerized", - rpcUrl: "http://localhost:3050", + rpcUrl: "http://127.0.0.1:3050", l1Chain: { id: 9, name: "L1 Local", network: "l1-local", - rpcUrl: "http://localhost:8545", + rpcUrl: "http://127.0.0.1:8545", }, }, ];