From 205412fe1ef50e5b7f3a942fc43486ed22c9dcc4 Mon Sep 17 00:00:00 2001 From: Tina Zheng <59578595+tinaszheng@users.noreply.github.com> Date: Tue, 21 Dec 2021 14:37:42 -0800 Subject: [PATCH] restrict walletlink to mainnet only (#3024) --- src/connectors/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/connectors/index.ts b/src/connectors/index.ts index 5a242642ba..fa7d3f65ea 100644 --- a/src/connectors/index.ts +++ b/src/connectors/index.ts @@ -70,4 +70,5 @@ export const walletlink = new WalletLinkConnector({ url: NETWORK_URLS[SupportedChainId.MAINNET], appName: 'Uniswap', appLogoUrl: UNISWAP_LOGO_URL, + supportedChainIds: [SupportedChainId.MAINNET], })