This repo contains an example web interface for interchain tokens built with Hyperlane Warp Route. Warp is a framework to permissionlessly bridge tokens to any chain.
This app is built with Next & React, Wagmi, RainbowKit, and the Hyperlane SDK.
- Constants that you may want to change are in
./src/consts/, see the following Customization section for details. - The index page is located at
./src/pages/index.tsx - The primary features are implemented in
./src/features/
See CUSTOMIZE.md for details about adjusting the tokens and branding of this app.
You need a projectId from the WalletConnect Cloud to run the Hyperlane Warp Route UI. Sign up to WalletConnect Cloud to create a new project.
# Install dependencies
yarn
# Build Next project
yarn buildYou can add .env.local file next to .env.example where you set projectId copied from WalletConnect Cloud.
# Start the Next dev server
yarn dev
# Or with a custom projectId
NEXT_PUBLIC_WALLET_CONNECT_ID=<projectId> yarn dev# Lint check code
yarn lint
# Check code types
yarn typecheck# Format code using Prettier
yarn prettier# Delete build artifacts to start fresh
yarn cleanThe easiest hosting solution for this Next.JS app is to create a project on Vercel.
For more information, see the Hyperlane documentation.