Core connect, sign, and transact work today on Whitechain Sepolia. AppKit features that depend on the Reown Blockchain API do not. See What Reown does not support on Whitechain.
Whitechain networks in the package
@reown/appkit/networks re-exports viem/chains, so Whitechain Sepolia is available from AppKit with no custom chain definition of your own:
Configure AppKit
Install the packages:Terminal
NEXT_PUBLIC_REOWN_PROJECT_ID. Never put a server secret in one of those: everything in a client bundle ships to the browser.
Import whitechainSepolia, hand it to the wagmi adapter, and call createAppKit once at module scope:
src/lib/wagmi.ts
createAppKit takes a non-empty tuple rather than a plain array, so type the networks constant instead of letting TypeScript widen it. No type assertion is needed beyond that: a viem chain from @reown/appkit/networks satisfies AppKit’s AppKitNetwork type directly. Set ssr: true only for a server-rendered app such as Next; drop it in a client-only single-page app.
features turns off email and social login. Both route through Reown’s embedded wallet, which does not support Whitechain, so the login completes and signing then fails. Leave them off unless you have confirmed otherwise for your users.
Hand wagmiConfig to WagmiProvider and open the modal with useAppKit. Both are standard AppKit and wagmi, so follow the Next dapp template for the provider and panel code.
One Whitechain-specific detail when you render a balance: useBalance in wagmi v3 returns value, decimals, and symbol. It has no formatted field, which wagmi v2 did have, so format it yourself with viem’s formatUnits(balance.value, balance.decimals).
This configuration is compiled and run as a Next app against Whitechain Sepolia on the current releases:
Build under Next and Turbopack
wagmi’s connector barrel pulls in wallet SDKs your app never uses. One of them declares optional peer dependencies of its own, which package managers skip by design. Turbopack resolves every import it can reach, sonext build fails on packages nothing calls at runtime:
Build error
Terminal
node_modules and nothing to the browser bundle, since no code path reaches them.
The failing set tracks the connector packages rather than your code, so it changes when they do. Read the specifiers in your own build output rather than assuming this list. If a future version names packages this page does not, either install those or alias them to an empty module with Turbopack’s resolveAlias, which is the workaround the wagmi maintainers point to in wevm/wagmi#4906. Vite and Rollup builds are unaffected.
Point the app at a different RPC endpoint
ThewhitechainSepolia definition already defaults to the official endpoint https://rpc.testnet.whitechain.io, so most apps need no override. Override it when you run your own node, a local development chain, or a private gateway.
Set the transport on the wagmi adapter. Every read and write your app makes through wagmi hooks then goes to that endpoint:
src/lib/wagmi.ts
What Reown does not support on Whitechain
Reown’s Blockchain API is a separate hosted service from the WalletConnect relays, and it is what powers AppKit’s value-added features. Whitechain is not in its chain list: the list athttps://rpc.walletconnect.org/v1/supported-chains contains neither eip155:1874 nor eip155:1875.
At L2 Mainnet the test-network limitation no longer applies, and Whitechain is working toward these features being available there. The remaining step is the chain being listed in Reown’s Blockchain API. Whitechain publishes the Mainnet chain ID and endpoints in the Network reference before launch, so check the supported-chain list against that chain ID once it is published.

