Verbs SDK and demo applications for the Optimism ecosystem
This monorepo contains the following packages:
-
packages/sdk
- The core Verbs TypeScript SDK - A library of bare-bones abstractions for building onchain. -
packages/demo/frontend
- A React+vite web application providing a user interface for interacting with Verbs functionality. -
packages/demo/backend
- A hono service demonstrating the Verbs SDK in a backend environment.
pnpm install
- Run the backend setup steps.
- Run the backend:
cd packages/demo/backend
pnpm install && pnpm dev
- Open another terminal and run the frontend:
cd packages/demo/frontend
pnpm install && pnpm dev
pnpm build # Build all packages (includes type checking)
pnpm lint # Lint all packages
MIT