From d823f5a4a3ae8a737ce0556130435a887327d569 Mon Sep 17 00:00:00 2001 From: stranger80 Date: Mon, 6 Nov 2023 13:00:21 +0100 Subject: [PATCH] Update network.ts --- plugin/src/utils/network.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/src/utils/network.ts b/plugin/src/utils/network.ts index 9b43b3df..24093a67 100644 --- a/plugin/src/utils/network.ts +++ b/plugin/src/utils/network.ts @@ -3,7 +3,7 @@ import { type DevnetAccount } from '../types/accounts' const apiUrl = import.meta.env.VITE_API_URL ?? 'solidity-compile-remix-test.nethermind.io' const devnetUrl = 'http://localhost:8011' // process.env.REACT_APP_DEVNET_URL ?? 'http://localhost:8011' -const remoteDevnetUrl = process.env.REACT_APP_REMOTE_DEVNET_URL ?? 'https://starknet-devnet-dev.nethermind.io' +const remoteDevnetUrl = process.env.VITE_REMOTE_DEVNET_URL ?? 'https://zksync-devnet.nethermind.dev' interface Devnet { name: string