File tree Expand file tree Collapse file tree 2 files changed +27
-1
lines changed
apps/portal/src/app/connect
wallet/sign-in-methods/external-wallets Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ export const sidebar: SideBar = {
134134 } ,
135135 {
136136 name : "External Wallets" ,
137- href : `${ connectSlug } / methods/external-wallets` ,
137+ href : `${ walletSlug } /sign-in- methods/external-wallets` ,
138138 } ,
139139 {
140140 name : "Custom Authentication" ,
Original file line number Diff line number Diff line change 1+ # External wallets
2+
3+ thirdweb supports a number of first-party web3 wallets such as Metamask and Phantom.
4+
5+ ## Add externally owned wallets
6+
7+ ``` tsx
8+ import { ConnectButton } from " thirdweb/react" ;
9+ import { createWallet } from " thirdweb/wallets" ;
10+
11+ const wallets = [
12+ createWallet (" io.metamask" ),
13+ createWallet (" com.coinbase.wallet" ),
14+ createWallet (" me.rainbow" ),
15+ ];
16+
17+ function Example() {
18+ return (
19+ <div >
20+ <ConnectButton client = { client } wallets = { wallets } />
21+ </div >
22+ );
23+ }
24+ ```
25+
26+ [ View full list of supported wallets.] ( /typescript/v5/supported-wallets )
You can’t perform that action at this time.
0 commit comments