Skip to main content

Recommended: JavaScript SDK with React Hooks

For new React apps, we recommend the JavaScript SDK with React Hooks (@dynamic-labs-sdk/react-hooks) instead of the legacy React SDK documented here. The JS SDK comes with many benefits such as a much smaller bundle size and other optimizations. Use the React quickstart (JavaScript SDK) to get started.
For adding a custom EVM networks with Wagmi see: WAGMI - adding custom networks
You can enable any EVM network that we do not currently support out of the box by passing an array of EvmNetwork to the DynamicContextProvider’s overrides.evmNetworks settings.This can be done in two different ways:
  1. By passing an array of EvmNetwork, it completely overrides whatever networks were received from your dashboard configurations and uses that array instead.
  2. By passing a method with signature (dashboardNetworks: EvmNetwork[]) => EvmNetwork[], you can use this callback to first receive the array of networks that was sent from your dashboard configurations, and then return the array of networks you want the app to use.
The second approach is best for making adjustments to the networks you get from our dashboard (like changing rpc urls), as well as when you want to hide some specific networks.If you’re just trying to merge new networks with the ones from dashboard, we have a helper function that will make that easier:
Note that the order of the params for mergeNetworks matters: the first param takes precedence in case of a conflict.

Example

The following example sets the Ethereum mainnet and Polygon as supported networks for the application. A comprehensive list of networks can be found at chainlist.org
The transaction confirmation UI renders a network’s native token amount using nativeCurrency.decimals. Custom or emerging EVM chains must set decimals to the chain’s correct value (18 for most EVM chains) or the confirm popup will display the wrong amount.
To adjust decimals, rpcUrls, or other fields on dashboard-provided networks without replacing them, use the callback form of overrides.evmNetworks(dashboardNetworks: EvmNetwork[]) => EvmNetwork[] — as shown above.

Type Reference

Definition

NativeCurrency

Last modified on July 6, 2026