Skip to content

Commit 57d356f

Browse files
authored
Merge pull request #651 from reown-com/devin/1759771246-appkit-1.8.9-docs
docs: add AppKit 1.8.9 feature documentation
2 parents 597e69e + 4050f3f commit 57d356f

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

appkit/javascript/core/actions.mdx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,21 @@ modal.subscribeWalletInfo(handler);
8989
const { name, icon } = modal.getWalletInfo();
9090
```
9191

92+
## Get Disabled Networks
93+
94+
Returns an array of CAIP networks that are disabled in the current configuration. This is useful for understanding which networks are not available for user selection.
95+
96+
```ts
97+
const modal = createAppKit({
98+
adapters: [wagmiAdapter],
99+
networks: [mainnet, arbitrum],
100+
projectId,
101+
});
102+
103+
const disabledNetworks = modal.getDisabledCaipNetworks();
104+
console.log('Disabled networks:', disabledNetworks);
105+
```
106+
92107
## Provider Access
93108

94109
Access wallet providers for direct blockchain interactions across different namespaces.

snippets/appkit/shared/options.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ createAppKit({
260260

261261
## enableMobileFullScreen
262262

263-
Render the modal as full height on mobile web browsers. Default is `false`.
263+
Enable or disable fullscreen rendering of AppKit Core on mobile devices. Default is `false`.
264264

265265
```ts
266266
createAppKit({

0 commit comments

Comments
 (0)