From 1f366826d755531bc1cd42703b8eb96615332193 Mon Sep 17 00:00:00 2001 From: EresDev Date: Tue, 25 Jun 2024 00:28:03 +0500 Subject: [PATCH] refactor: import networkRpcs from source, not build --- tests/rpc-handler.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rpc-handler.test.ts b/tests/rpc-handler.test.ts index 2205e85..a4f1f28 100644 --- a/tests/rpc-handler.test.ts +++ b/tests/rpc-handler.test.ts @@ -1,5 +1,5 @@ import { JsonRpcProvider } from "@ethersproject/providers"; -import { networkRpcs } from "../dist"; +import { networkRpcs } from "../types/constants"; import { RPCHandler } from "../types/rpc-handler"; import { HandlerConstructorConfig, getRpcUrls, Rpc, Tracking } from "../types/handler";