From 1607341a0679878823692ec321d13e22b7bf4a57 Mon Sep 17 00:00:00 2001 From: Ashleen Date: Wed, 2 Oct 2024 20:56:05 +0100 Subject: [PATCH] include zkCandy to list of supported chains --- plugin/src/index.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugin/src/index.tsx b/plugin/src/index.tsx index 890dc992..0ccf8809 100644 --- a/plugin/src/index.tsx +++ b/plugin/src/index.tsx @@ -11,15 +11,16 @@ import { zkSync, zkSyncSepoliaTestnet } from 'viem/chains' import { WalletConnectConnector } from 'wagmi/connectors/walletConnect' import { InjectedConnector } from 'wagmi/connectors/injected' import { EIP6963Connector, walletConnectProvider } from '@web3modal/wagmi' +import { zkCandySepoliaTestnet } from './utils/chains' const projectId: string = import.meta.env.VITE_WALLET_CONNECT_PROJECT_ID // TODO who owns this? make sure nethermind owns this const { publicClient } = configureChains( - [zkSync, zkSyncSepoliaTestnet], + [zkSync, zkSyncSepoliaTestnet, zkCandySepoliaTestnet], [walletConnectProvider({ projectId }), publicProvider()] ) -const chains = [zkSyncSepoliaTestnet, zkSync] +const chains = [zkSyncSepoliaTestnet, zkSync, zkCandySepoliaTestnet] const metadata = { name: 'zkSync remix plugin',