Skip to main content
Install and configure OnchainKit with Next.js. If you are integrating OnchainKit into an existing project, skip to the OnchainKit installation.
1

Install Next.js

Create a new Next.js project by using the Next.js CLI. More information about Next.js can be found here.
npm
During the setup process you will encounter multiple prompts. Make sure you enable TypeScript, ESLint, and Tailwind CSS.
2

Install OnchainKit

Install OnchainKit in your project.
3

Get Your Client API Key

Get your Client API Key from Coinbase Developer Platform.
OnchainKit copy Client API Key
Create a .env file in your project’s root directory.
OnchainKit define Client API Key
Add your Client API Key to the .env file:
.env
4

Add Providers

Create a providers.tsx file. Add OnchainKitProvider with your desired config.Under the hood, OnchainKit will create our recommended Wagmi and QueryClient providers. If you wish to customize these providers, check out Custom Supplemental Providers.
providers.tsx
5

Wrap your app with <Providers />

After the setup, wrap your app with the above <Providers /> component.
app.tsx
6

Add Styles

OnchainKit components come with pre-configured styles. To include these styles in your project, add the following import statement at the top of this file:
For example, if you’re using Next.js with the app router, your app/layout.tsx might look like this:
layout.tsx
This ensures that the OnchainKit styles are loaded and applied to your entire application.
  • For Tailwind CSS users, check out our Tailwind Integration Guide.
  • Update the appearance of components by using our built-in themes or crafting your own custom theme. Explore the possibilities in our Theming Guide.

Start building!

Explore our ready-to-use onchain components: