This package contains the Bridge UI built with svelte and wagmi
Install all dependencies with
pnpm install
cp .env.example .env
Then update environment variables in .env
source .env
High-level flow:
- Prepare .json config files
- Export as base64 to .env
- build/serve creates typescript configs for the app
Detailed process
These are are the additional configuration files that have to be filled in:
Name | Description |
---|---|
/config/configuredBridges.json | Defines the chains that are connected via taiko bridges and lists the contract addresses |
/config/configuredChains.json | Defines some metadata for the chains, such as name, icons, explorer URL, etc. |
/config/configuredRelayer.json | If chains have a relayer, the URL and the chain IDs it covers are entered here |
/config/configuredCustomTokens.json | Defines a list of tokens that should be availabe in the token dropdowns |
To get started, open your terminal in /packages/bridge-ui-v2/
-
Copy the config examples
cp config/sample/configuredBridges.example config/configuredBridges.json cp config/sample/configuredChains.example config/configuredChains.json cp config/sample/configuredRelayer.example config/configuredRelayer.json cp config/sample/configuredCustomTokens.example config/configuredCustomTokens.json
-
Change or fill in all the information that will be used by the bridge UI inside these files.
-
As the configurations are not committed directly, they will be loaded from the .env.
For that they need to be encoded and appended to the .env file:pnpm export:config
This command exports the json as base64 string to your .env file
-
Now whenver a build is triggered it will generate the config files based on the .env file in
src/generated/
Note: In theconfig/schemas
folder are schemas that will validate the correct json format and report any errors in your initial json configurations, so check the log output for any errors!
Beware, that if you make changes to the json files, you need to export them to the .env again via script.
pnpm dev
# or start the server and open the app in a new browser tab
pnpm dev -- --open
To create a production version of your app:
npm run build
You can preview the production build with npm run preview
.
To deploy your app, you may need to install an adapter for your target environment.