From ac5bbf792245329072914b39f6629dc2b0f5ede7 Mon Sep 17 00:00:00 2001 From: "Miquel A. Cabot" Date: Tue, 15 Mar 2022 18:44:58 +0100 Subject: [PATCH] use ip number instead of localhost in config file --- src/utils/ConfigHelper.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/ConfigHelper.ts b/src/utils/ConfigHelper.ts index 49672be1..e8582263 100644 --- a/src/utils/ConfigHelper.ts +++ b/src/utils/ConfigHelper.ts @@ -7,7 +7,7 @@ const configHelperNetworksBase: Config = { chainId: null, network: 'unknown', metadataCacheUri: 'https://v4.aquarius.oceanprotocol.com', - nodeUri: 'http://localhost:8545', + nodeUri: 'http://127.0.0.1:8545', providerUri: 'http://127.0.0.1:8030', subgraphUri: null, explorerUri: null,