wormhole/bridge_ui
chase-45 28c713a6dd
Tilt tests (#688)
* tests run in tilt / ci

* changed bridge_ui test process

* tests use kube proxy when in ci

* fix: allTests.sh permission

* fix: bridge_ui dockerfile sha for amd64

* fix: bridge_ui should use cra test

* fix: ci tests

Co-authored-by: Evan Gray <battledingo@gmail.com>
2022-02-08 03:55:10 -05:00
..
public bridge_ui: Changed title to Portal Token Bridge 2022-02-01 10:11:53 -05:00
src Tilt tests (#688) 2022-02-08 03:55:10 -05:00
.env.sample Tilt tests (#688) 2022-02-08 03:55:10 -05:00
.gitignore bridge_ui: initial commit 2021-07-26 15:34:58 +00:00
Dockerfile Tilt tests (#688) 2022-02-08 03:55:10 -05:00
README.md run bridge_ui in devnet 2021-10-27 21:16:07 +00:00
craco.config.js bridge_ui: solana balances, begin wasm integration 2021-08-11 12:49:30 +02:00
package-lock.json Tilt tests (#688) 2022-02-08 03:55:10 -05:00
package.json Tilt tests (#688) 2022-02-08 03:55:10 -05:00
tsconfig.json bridge_ui: eth wrapped assets and getSignedVAA 2021-08-11 12:49:30 +02:00

README.md

Example Token Bridge UI

Prerequisites

  • Docker
  • NodeJS v14+
  • NPM v7.18+

Run the following from the root of this repo

DOCKER_BUILDKIT=1 docker build --target node-export -f Dockerfile.proto -o type=local,dest=. .
DOCKER_BUILDKIT=1 docker build -f solana/Dockerfile.wasm -o type=local,dest=. solana
npm ci --prefix ethereum
npm ci --prefix sdk/js
npm run build --prefix sdk/js

The remaining steps can be run from this folder

Install

npm ci

Develop

npm start

Build for local tilt network

npm run build

Build for testnet

REACT_APP_CLUSTER=testnet npm run build

Build for mainnet

REACT_APP_CLUSTER=mainnet REACT_APP_COVALENT_API_KEY=YOUR_API_KEY REACT_APP_SOLANA_API_URL=YOUR_CUSTOM_RPC npm run build

Test Server

npx serve -s build

Environment Variables (optional)

Create .env from the sample file, then add your Covalent API key:

cp .env.sample .env