⚠️ Common Issue: If SSR is not set up correctly, you may see sessions resetting or users getting logged out unexpectedly. Make sure to follow this guide fully to preserve session state.
When using Smart Wallets in a server-side rendered setting, you will see inconsistencies of the user state between the server and the client. This will lead to flashes of content when a user is logged in. To avoid this, the account state can be optimistically loaded on the server and passed to the client.
To enable server-side rendering support, you need to set ssr: true when creating a config.
When using React, you should also make the config a function so that you can call it once per request, which allows for request-based isolation of the account state.
import { createConfig } from "@account-kit/react";
import { sepolia, alchemy } from "@account-kit/infra";
export const config = () =>
createConfig({
// required
transport: alchemy({ rpcUrl: "/api/rpc" }),
chain: sepolia,
ssr: true,
});This setting will defer hydration of the account state to the client after the initial mount.
To consistently pass the state between the server and the client, you can pass in a cookie storage to the config object created above. The cookie storage allows the client state to be written serialized to a cookie which can be passed along to the server on each request. This allows the server to have access to certain parts of the account state when rendering, ensuring a consistent render between client and server (eg. user's address displayed in the top nav). Instances which can only be created on the client will still not be available on the server, however. This includes the signer or smart contract account instances.
import { createConfig, cookieStorage } from "@account-kit/react";
import { sepolia, alchemy } from "@account-kit/infra";
import { QueryClient } from "@tanstack/react-query";
export const queryClient = new QueryClient();
export const config = () =>
createConfig({
// required
transport: alchemy({ rpcUrl: "/api/rpc" }),
chain: sepolia,
ssr: true,
storage: cookieStorage,
});Now, depending on your application, you can get the state from cookies and pass in the initialState to the AlchemyAccountProvider to hydrate the account state on the client.
If you are using NextJS App Directory, you can read the cookie state and pass it to the providers like so:
// @noErrors
import React from "react";
import { cookieToInitialState } from "@account-kit/core";
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import { headers } from "next/headers";
import { config } from "./config";
import "./globals.css";
import { Providers } from "./providers";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Embedded Accounts Getting Started",
description: "Embedded Accounts Quickstart Guide",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
// This will allow us to persist state across page boundaries
const initialState = cookieToInitialState(
// the config here is just used to compute the initial state
config(),
headers().get("cookie") ?? undefined,
);
return (
<html lang="en">
<body className={inter.className}>
<Providers initialState={initialState}>{children}</Providers>
</body>
</html>
);
}