diff --git a/src/components/NavBar/SearchBarDropdown.tsx b/src/components/NavBar/SearchBarDropdown.tsx index 34da819a97..eab9898c79 100644 --- a/src/components/NavBar/SearchBarDropdown.tsx +++ b/src/components/NavBar/SearchBarDropdown.tsx @@ -362,8 +362,6 @@ function SearchBarDropdownContents({ function ComingSoonText({ chainId }: { chainId: ChainId }) { switch (chainId) { - case ChainId.BNB: - return Coming soon: search and explore tokens on BNB Chain case ChainId.AVALANCHE: return Coming soon: search and explore tokens on Avalanche Chain default: diff --git a/src/graphql/data/util.tsx b/src/graphql/data/util.tsx index 2fa5dd0e3c..978081f1d4 100644 --- a/src/graphql/data/util.tsx +++ b/src/graphql/data/util.tsx @@ -184,13 +184,14 @@ export function logSentryErrorForUnsupportedChain({ export const BACKEND_SUPPORTED_CHAINS = [ Chain.Ethereum, - Chain.Polygon, Chain.Arbitrum, Chain.Optimism, - Chain.Celo, + Chain.Polygon, Chain.Base, + Chain.Bnb, + Chain.Celo, ] as const -export const BACKEND_NOT_YET_SUPPORTED_CHAIN_IDS = [ChainId.BNB, ChainId.AVALANCHE] as const +export const BACKEND_NOT_YET_SUPPORTED_CHAIN_IDS = [ChainId.AVALANCHE] as const export function getTokenDetailsURL({ address,