Supported Chains/Networks
We support EVM (including all EVM networks), Solana (SVM), Sui, and TON in the React Native SDK. See the wallet docs for each chain. If you don’t see the chain you need, let us know.Enabling a Chain/Network
To integrate a specific chain/network, simply enable it in the dashboard. You’ll also see that you can add custom RPC URLs for each network. Each provider will use the RPC configured in the Dashboard if present, otherwise they fall back to public RPC URLs.Add chain extensions
With the React Native (client-based) SDK, you extend your client with the appropriate chain extension for each chain you want to support. You also need the React Native extension (for the WebView) if you have not already added it.- EVM — extend with
ViemExtension()(see Using EVM Wallets). - Solana (SVM) — extend with
SolanaExtension()(see Using Solana Wallets). - Sui — extend with
SuiExtension()(see Using Sui Wallets). - TON — enable in the dashboard and use the corresponding extension.
createClient({ ... }).extend(ReactNativeExtension()).extend(ViemExtension()).extend(SolanaExtension()). Then render <dynamicClient.reactNative.WebView /> in your app.