From 54f59ae563b0180d02a49ea15b3500f58eb51543 Mon Sep 17 00:00:00 2001 From: elshenak Date: Sun, 29 Oct 2023 17:25:10 -0400 Subject: [PATCH] refactor: hiding non itn nets --- src/nibiru/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nibiru/index.ts b/src/nibiru/index.ts index 5353551870..2f0c6dc26c 100644 --- a/src/nibiru/index.ts +++ b/src/nibiru/index.ts @@ -53,8 +53,8 @@ export const getNibiruChains = async (): Promise<{ [key: string]: LocalConfig; }> => { const [playnets, devnets, itn] = await Promise.all([ - getPlaynets(), - getDevnets(), + undefined, //getPlaynets(), + undefined, //getDevnets(), getItn(), ]); const chains = (itn ?? []).concat(playnets ?? [], devnets ?? []);