-
Go to cloud.walletconnect.com and create a new project. Copy the project ID.
-
Rename
.env.example
to.env
and fill in the project ID that you just created in step 1. -
Install dependencies:
# Using npm
npm install --legacy-peer-deps
# Or using yarn
yarn install
# Or using pnpm
pnpm install
# Or using bun
bun install
- Run the development server:
npm run dev
...or yarn dev
, or pnpm dev
, or bun dev
.
-
Open http://localhost:3000 with your browser to see the result.
-
See examples of how you can use AppKit in your app.
To learn more about AppKit:
- AppKit Documentation - learn how to use AppKit in your project.
- WalletConnect Docs - docs for WalletConnect SDKs: AppKit (to build apps) and WalletKit (to build wallets).
- WalletConnect.com - tools to build user experiences that make digital ownership effortless, intuitive, and secure.
If you encounter dependency conflicts during installation:
- Use
--legacy-peer-deps
flag with npm:
npm install --legacy-peer-deps
- Or clean your dependencies and reinstall:
rm -rf node_modules package-lock.json
npm install --legacy-peer-deps