Skip to content

Commit

Permalink
Update App.tsx to show case Solana v2 functionalities (#701)
Browse files Browse the repository at this point in the history
  • Loading branch information
rohit-710 committed Sep 6, 2024
1 parent f6bc32d commit 8321a4b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions dapps/web3modal/react-solana/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ const solanaConfig = defaultSolanaConfig({
projectId,
auth: {
email: true,
socials: ['google', 'x', 'farcaster', 'github']
socials: ['google', 'x', 'discord', 'farcaster', 'github', 'apple', 'facebook'],
walletFeatures: true, //set to true by default
showWallets: true //set to true by default
}
})

Expand All @@ -49,6 +51,7 @@ createWeb3Modal({
solanaConfig,
chains,
projectId,
enableOnramp: true //set to true by default
})

const App = () => {
Expand Down Expand Up @@ -226,4 +229,4 @@ return (
);
}

export default App;
export default App;

0 comments on commit 8321a4b

Please sign in to comment.