miniapp-to-web
Installation
SKILL.md
Migrate Mini App to Standalone Web App
You are converting a World App mini app to also work in a regular browser. MiniKit commands auto-detect the environment — inside World App they use the native bridge, outside they fall back to Wagmi. Follow these steps in order.
Step 1 — Install dependencies
pnpm add wagmi @tanstack/react-query siwe
wagmi— wallet connection and transaction execution on web@tanstack/react-query— peer dependency of wagmisiwe— needed forwalletAuthSIWE message construction on web
Step 2 — Create Wagmi config
// config.ts
import { worldApp } from '@worldcoin/minikit-js/wagmi';
Related skills