From 3f3afef8c584b32f8637e9abfaa9a6520c1337b1 Mon Sep 17 00:00:00 2001 From: zho Date: Tue, 17 Sep 2024 17:37:08 +0200 Subject: [PATCH] chore: use popular list of tokens for token search modal (#2392) --- packages/react-app-revamp/app/api/token/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-app-revamp/app/api/token/route.ts b/packages/react-app-revamp/app/api/token/route.ts index 5cfda7697..b9575f751 100644 --- a/packages/react-app-revamp/app/api/token/route.ts +++ b/packages/react-app-revamp/app/api/token/route.ts @@ -40,7 +40,7 @@ interface FilteredToken { logoURI: string; } -const DEFILLAMA_TOKEN_LIST_URL = "https://raw.githubusercontent.com/SmolDapp/tokenLists/main/lists/tokenlistooor.json"; +const DEFILLAMA_TOKEN_LIST_URL = "https://raw.githubusercontent.com/SmolDapp/tokenLists/main/lists/popular.json"; const fetchTokenList = async (): Promise => { const response = await fetch(DEFILLAMA_TOKEN_LIST_URL);