Skip to content

createConfig

Creates an AlchemyAccountsConfig object that can be used in conjunction with the actions exported from @account-kit/core.

The config contains core and client stores that can be used to manage account state in your application.

Import

import { createConfig } from "@account-kit/core";

Usage

import { createConfig } from "@account-kit/core";
import { sepolia } from "@account-kit/infra";
 
const config = createConfig({
  chain: sepolia,
  apiKey: "your-api-key",
});

Parameters

params

CreateConfigProps The parameters to create the config with

Returns

AlchemyAccountsConfig An alchemy account config object containing the core and client store