Skip to content

Commit 0b46ceb

Browse files
committed
docs: add odl external wallet docs as placeholder
1 parent 99b8348 commit 0b46ceb

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

apps/portal/src/app/connect/sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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",
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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)

0 commit comments

Comments
 (0)