Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions appkit/javascript/core/actions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,21 @@ modal.subscribeWalletInfo(handler);
const { name, icon } = modal.getWalletInfo();
```

## Get Disabled Networks

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.

```ts
const modal = createAppKit({
adapters: [wagmiAdapter],
networks: [mainnet, arbitrum],
projectId,
});

const disabledNetworks = modal.getDisabledCaipNetworks();
console.log('Disabled networks:', disabledNetworks);
```

## Provider Access

Access wallet providers for direct blockchain interactions across different namespaces.
Expand Down
11 changes: 11 additions & 0 deletions snippets/appkit/shared/options.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,17 @@ createAppKit({
});
```

## enableMobileFullScreen

Enable or disable fullscreen rendering of AppKit Core on mobile devices. Default is `false`.

```ts
createAppKit({
//...
enableMobileFullScreen: true,
});
```

## debug

Enable or disable debug mode in your AppKit. This is useful if you want to see UI alerts when debugging. Default is `false`.
Expand Down