Skip to content
Merged
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
12 changes: 11 additions & 1 deletion pages/tools/solana-unity-sdk/getting-started/configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ The SDK supports a veriety of wallets, including
| In-game (Web3auth) | ✅ | In-app |
| Wallet Adapter | ✅ | External |
| Mobile Wallet Adapter | ✅ | External |
| Seed Vault | 🏗 | In-app |
| WalletConnect | ✅ | External |
| Seed Vault | 🏗 | In-app |

## Interface

Expand Down Expand Up @@ -51,6 +52,15 @@ To configure a wallet following the [Wallet Adapter](https://solana-mobile.githu
WalletBase wallet = new SolanaWalletAdapterWebGL(walletAdapterOptions, RpcCluster.DevNet, ...);
```

## WalletConnect
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, but please move it under the Wallet Adapter section


[WalletConnect](https://walletconnect.network/) enables your game to connect with a wide range of Solana wallets — including Binance Wallet, Jupiter Mobile, Trust, OKX Wallet, and many more — through a single integration.
On mobile, users can connect any supported wallet installed on their device. On desktop, they pair with their wallet by scanning a QR code. See the [full list of supported Solana wallets](https://walletguide.walletconnect.network/?chains=solana%3A5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp).
Comment on lines +57 to +58
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick | 🔵 Trivial

Avoid hard-coding wallet brand examples that can quickly go stale.

This list may drift over time and create maintenance churn. Prefer generic wording plus the authoritative supported-wallets link.

Proposed doc tweak
-[WalletConnect](https://walletconnect.network/) enables your game to connect with a wide range of Solana wallets — including Binance Wallet, Jupiter Mobile, Trust, OKX Wallet, and many more — through a single integration.
-On mobile, users can connect any supported wallet installed on their device. On desktop, they pair with their wallet by scanning a QR code. See the [full list of supported Solana wallets](https://walletguide.walletconnect.network/?chains=solana%3A5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp).
+[WalletConnect](https://walletconnect.network/) enables your game to connect with a wide range of Solana wallets through a single integration.
+On mobile, users can connect any supported wallet installed on their device. On desktop, they pair with their wallet by scanning a QR code. See the [full list of currently supported Solana wallets](https://walletguide.walletconnect.network/?chains=solana%3A5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp).
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@pages/tools/solana-unity-sdk/getting-started/configuration.mdx` around lines
49 - 50, The example list of wallet brands in the "WalletConnect" paragraph is
hard-coded and can become stale; update the copy in the "WalletConnect" sentence
(the paragraph mentioning Binance Wallet, Jupiter Mobile, Trust, OKX Wallet) to
use generic wording (e.g., "many popular Solana wallets") and keep the
authoritative supported-wallets link
(https://walletguide.walletconnect.network/...) as the source of truth; replace
the explicit brand names with a short generic phrase and ensure the link remains
intact and visible.


The integration is powered by [Reown AppKit for Unity](https://docs.reown.com/appkit/unity/core/usage#appkit-with-solana-unity-sdk), which provides an adapter package that plugs directly into the Solana Unity SDK. Once set up, all signing and session management go through AppKit while you continue using the same `Web3` APIs from `Solana.Unity.SDK`.

For installation and setup instructions, see the [Reown AppKit documentation](https://docs.reown.com/appkit/unity/core/usage#appkit-with-solana-unity-sdk).

## SMS

Solana Mobile Stack is a set of libraries for wallets and apps, allowing developers to create rich mobile experiences for the Solana network.
Expand Down