From 6040beeb0544b9da5e516846e52f4d1f57f99aa5 Mon Sep 17 00:00:00 2001 From: Jeff Reiner Date: Mon, 17 Oct 2022 12:26:00 +0200 Subject: [PATCH] Update supportedChains.tsx with Arbitrum Goerli Arbitrum Rinkeby is deprecated now and marked as read-only. Adding in icon resolution support for the new testnet. --- packages/connectkit/src/constants/supportedChains.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/connectkit/src/constants/supportedChains.tsx b/packages/connectkit/src/constants/supportedChains.tsx index c83953f9..9e0025bc 100644 --- a/packages/connectkit/src/constants/supportedChains.tsx +++ b/packages/connectkit/src/constants/supportedChains.tsx @@ -68,6 +68,11 @@ const supportedChains: Chain[] = [ name: 'Arbitrum Rinkeby', logo: , }, + { + id: 421613, + name: 'Arbitrum Goerli', + logo: , + }, ]; export default supportedChains;