Skip to content

Commit

Permalink
Initial Renzo Warp Route
Browse files Browse the repository at this point in the history
  • Loading branch information
nambrot committed Jun 18, 2024
1 parent 25a5158 commit 59c7f33
Show file tree
Hide file tree
Showing 7 changed files with 1,077 additions and 32 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@hyperlane-xyz/warp-ui-template",
"description": "A web app template for building Hyperlane Warp Route UIs",
"version": "3.13.0",
"version": "3.15.0",
"author": "J M Rossy",
"dependencies": {
"@chakra-ui/next-js": "^2.1.5",
Expand All @@ -17,8 +17,8 @@
"@emotion/styled": "^11.11.0",
"@headlessui/react": "^1.7.14",
"@hyperlane-xyz/registry": "2.1.0",
"@hyperlane-xyz/sdk": "3.13.0",
"@hyperlane-xyz/utils": "3.13.0",
"@hyperlane-xyz/sdk": "3.15.0",
"@hyperlane-xyz/utils": "3.15.0",
"@hyperlane-xyz/widgets": "3.13.1",
"@metamask/jazzicon": "https://github.com/jmrossy/jazzicon#7a8df28974b4e81129bfbe3cab76308b889032a6",
"@metamask/post-message-stream": "6.1.2",
Expand Down
17 changes: 17 additions & 0 deletions public/logos/ezeth.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions src/consts/app.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const APP_NAME = 'Hyperlane Warp UI Template';
export const APP_DESCRIPTION = 'A DApp for Hyperlane Warp Route transfers';
export const APP_URL = 'hyperlane-warp-template.vercel.app';
export const APP_BRAND_COLOR = '#025aa1';
export const APP_NAME = 'Hyperlane Renzo Bridge';
export const APP_DESCRIPTION = 'A DApp for ezETH transfers';
export const APP_URL = 'renzo.hyperlane.xyz';
export const APP_BRAND_COLOR = '#ACE731';
2 changes: 1 addition & 1 deletion src/consts/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const config: Config = Object.freeze({
version,
registryUrl,
explorerApiKeys,
showTipBox: true,
showTipBox: false,
showDisabledTokens: true,
walletConnectProjectId,
withdrawalWhitelist,
Expand Down
2 changes: 1 addition & 1 deletion src/consts/warpRouteWhitelist.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Warp Route IDs use format `SYMBOL/chainname1-chainname2...` where chains are ordered alphabetically
// If left null, all warp routes in the configured registry will be included
// If set to a list (including an empty list), only the specified routes will be included
export const warpRouteWhitelist: Array<string> | null = null;
export const warpRouteWhitelist: Array<string> | null = [];
// Example:
// [
// // 'ETH/ethereum-viction'
Expand Down
Loading

0 comments on commit 59c7f33

Please sign in to comment.