Skip to content

Commit

Permalink
add nightly wallet
Browse files Browse the repository at this point in the history
  • Loading branch information
hkey0 authored Oct 1, 2024
1 parent 646d5be commit 06ea85b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/client-layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const evmNetworks = [{
rpcUrls: ['https://sepolia.drpc.org'],
vanityName: 'Sepolia',
}];

const eclipseWallets = ["backpacksol", "nightlysol"]

export default function ClientLayout({
children,
Expand Down Expand Up @@ -136,7 +136,7 @@ export default function ClientLayout({
mainContent.style.filter = ""
}
},
walletsFilter: (wallets) => wallets.filter((w) => w.walletConnector.supportedChains.includes("EVM") || w.key === "backpacksol"),
walletsFilter: (wallets) => wallets.filter((w) => w.walletConnector.supportedChains.includes("EVM") || eclipseWallets.includes(w.key)),
environmentId: process.env.NEXT_PUBLIC_ENVIRONMENT_ID || '',
walletConnectors: [EthereumWalletConnectors, SolanaWalletConnectors],
initialAuthenticationMode: 'connect-only',
Expand Down

0 comments on commit 06ea85b

Please sign in to comment.