Skip to content

Commit

Permalink
refactor: hiding non itn nets
Browse files Browse the repository at this point in the history
  • Loading branch information
CalicoNino committed Oct 29, 2023
1 parent 67d5d03 commit 54f59ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/nibiru/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 ?? []);
Expand Down

0 comments on commit 54f59ae

Please sign in to comment.