Skip to content

Commit a7794aa

Browse files
Improve custom connectors documentation based on PR #404 (#427)
Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Ben Kremer <[email protected]>
1 parent 390d71b commit a7794aa

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

appkit/javascript/core/custom-connectors.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Custom connectors
33
---
44

5-
Add custom connectors for Wagmi
5+
In AppKit, a 'connector' is the bridge between your app and a user's wallet. This page shows how to add custom connectors beyond the default ones, allowing your users to connect with additional wallet types and authentication methods.
66

77
<Tabs>
88
<Tab title="Wagmi">
@@ -55,5 +55,7 @@ createAppKit({
5555
})
5656
```
5757

58+
Check our JavaScript Wagmi demo in [Github](https://github.com/reown-com/appkit-web-examples/)
59+
5860
</Tab>
5961
</Tabs>

appkit/next/core/custom-connectors.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Custom connectors
33
---
44

5-
Add custom connectors for Wagmi
5+
In AppKit, a 'connector' is the bridge between your app and a user's wallet. This page shows how to add custom connectors beyond the default ones, allowing your users to connect with additional wallet types and authentication methods.
66

77
<Tabs>
88
<Tab title="Wagmi">
@@ -44,7 +44,6 @@ connectors.push(
4444
export const networks = [sepolia]
4545

4646
export const wagmiAdapter = new WagmiAdapter({
47-
storage:
4847
transports: {
4948
[sepolia.id]: http()
5049
},
@@ -70,6 +69,8 @@ export function ContextProvider({ children }) {
7069
}
7170
```
7271

72+
Check our Next.js Wagmi demo in [Github](https://github.com/reown-com/appkit-web-examples/)
73+
7374
</Tab>
7475

7576
</Tabs>

appkit/vue/core/custom-connectors.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Custom connectors
33
---
44

5-
Add custom connectors for Wagmi
5+
In AppKit, a 'connector' is the bridge between your app and a user's wallet. This page shows how to add custom connectors beyond the default ones, allowing your users to connect with additional wallet types and authentication methods.
66

77
<Tabs>
88
<Tab title="Wagmi">
@@ -58,5 +58,7 @@ createAppKit({
5858
})
5959
```
6060

61+
Check our Vue Wagmi demo in [Github](https://github.com/reown-com/appkit-web-examples/)
62+
6163
</Tab>
6264
</Tabs>

0 commit comments

Comments
 (0)