Skip to main content

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. Create your client once and chain it with all extensions you need, e.g. createClient({ ... }).extend(ReactNativeExtension()).extend(ViemExtension()).extend(SolanaExtension()). Then render <dynamicClient.reactNative.WebView /> in your app.
For adding a custom EVM network, see Adding Custom Networks.