Skip to content

Commit

Permalink
include zkCandy to list of supported chains
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleendaly committed Oct 2, 2024
1 parent cf5495d commit 1607341
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions plugin/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 1607341

Please sign in to comment.