diff --git a/src/components/search/SearchFilterBar.tsx b/src/components/search/SearchFilterBar.tsx index c6ff4e5..d314ca8 100644 --- a/src/components/search/SearchFilterBar.tsx +++ b/src/components/search/SearchFilterBar.tsx @@ -92,7 +92,8 @@ function ChainMultiSelector({ ); const mainnets = coreEvmChains.filter((c) => !c.isTestnet); const testnets = coreEvmChains.filter((c) => !!c.isTestnet); - return { chains, mainnets, testnets }; + // Return only evnChains because of graphql only accept query non-evm chains (with bigint type not string) + return { chains: coreEvmChains, mainnets, testnets }; }, [multiProvider]); // Need local state as buffer before user hits apply @@ -316,4 +317,4 @@ function DatetimeSelector({ modalClasses="w-60 -right-8" /> ); -} +} \ No newline at end of file