Skip to content

Commit

Permalink
comment other socials
Browse files Browse the repository at this point in the history
  • Loading branch information
julienbrg committed Jul 31, 2024
1 parent 13164c5 commit 92402a5
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/context/web3modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,24 @@ const sepolia = {
currency: 'ETH',
explorerUrl: 'https://sepolia.etherscan.io',
rpcUrl: endpoint,
blockExplorerUrl: 'https://sepolia.etherscan.io',
}

const metadata = {
name: 'Genji',
description: 'Next.js + Web3 Modal + Ethers.js + Chakra UI',
url: 'https://genji.netlify.app',
icons: ['./public/favicon.ico'],
icons: ['./favicon.ico'],
}

const ethersConfig = defaultConfig({
metadata,
defaultChainId: 11155111, // Sepolia
rpcUrl: endpoint,
auth: {
email: true,
socials: ['google', 'x', 'github', 'discord', 'apple'],
// socials: ['google', 'x', 'github', 'discord', 'apple'],
socials: ['google'],
showWallets: true,
walletFeatures: true,
},
Expand All @@ -41,6 +45,8 @@ createWeb3Modal({
projectId,
enableAnalytics: true,
enableOnramp: true,
themeMode: 'dark',
themeVariables: {},
})

export function Web3Modal({ children }: Props) {
Expand Down

0 comments on commit 92402a5

Please sign in to comment.