Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 687 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 687 Bytes

Example Token Bridge UI

This repository is a fork of Wormhole's example Token Bridge UI. Support for Base Sepolia, Optimism Sepolia and Arbitrum Sepolia was added.

Deployed code can be used to attest/register tokens on L2 chains (when deloyed locally, this can be done from http://localhost:3000/#/register) and to bridge tokens between chains (http://localhost:3000/#/transfer).

Local deploy:

To deploy locally, execute:

nvm use 18
npm ci
npm start

Deploy using serve:

To deploy using serve as a static server, execute:

nvm use 18
npm ci
npm run build
serve -s build -l 4000