This repository demonstrates how to migrate from ZeroDev Kernel 3.1 to 3.2 and create an intent client using the ZeroDev SDK. It provides a practical example of using the new intent system for account abstraction.
- Migration guide from Kernel 3.1 to 3.2 and create intentClient
- Node.js 18+ or Bun
- A ZeroDev project ID
- Basic understanding of account abstraction and intents
- Clone the repository:
cd intent-dynamic-example- Install dependencies:
npm install
# or
yarn install
# or
bun install- Create a
.env.localfile based on.env.exampleand add your ZeroDev project ID:
NEXT_PUBLIC_ZERODEV_PROJECT_ID=your_project_id
- Run the development server:
npm run dev
# or
yarn dev
# or
bun dev- Open http://localhost:3000 to see the example application.