Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

green back color #325

Open
wants to merge 13 commits into
base: main
Choose a base branch
from
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1 +1 @@
NEXT_PUBLIC_WALLET_CONNECT_ID=12345678901234567890123456789012
NEXT_PUBLIC_WALLET_CONNECT_ID=1ef7253c4218f459d52a93b41a3f436e
1 change: 1 addition & 0 deletions .env.local
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NEXT_PUBLIC_WALLET_CONNECT_ID=1ef7253c4218f459d52a93b41a3f436e
51 changes: 45 additions & 6 deletions src/consts/warpRoutes.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,45 @@
# A list of Warp Route token configs
# These configs will be merged with the warp routes in the configured registry
# The input here is typically the output of the Hyperlane CLI warp deploy command
---
tokens: []
options: {}
# yaml-language-server: $schema=../schema.json
tokens:
# ======== USDT ========
- chainName: arbitrum
addressOrDenom: '0x290CF3699Ebf1b2a81C81cd7c1B1d10338365f53'
collateralAddressOrDenom: '0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9'
connections:
- token: ethereum|optimism|0x4ac04361DA41117548559EE89693dd3a6115D793
decimals: 6
logoURI: /deployments/warp_routes/USDT/logo.svg
name: 'Tether USD '
standard: EvmHypCollateral
symbol: USDT
- chainName: optimism
addressOrDenom: '0x4ac04361DA41117548559EE89693dd3a6115D793'
collateralAddressOrDenom: '0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9'
connections:
- token: ethereum|arbitrum|0x290CF3699Ebf1b2a81C81cd7c1B1d10338365f53
decimals: 6
logoURI: /deployments/warp_routes/USDT/logo.svg
name: 'TetherUSD '
standard: EvmHypSynthetic
symbol: USDT
# ======== USDC ========
- chainName: arbitrum
addressOrDenom: '0x260a928141209B550414917ba871436DFd39460a'
collateralAddressOrDenom: '0xff970a61a04b1ca14834a43f5de4533ebddb5cc8'
connections:
- token: ethereum|linea|0x97a17AaDabFac0C2A3B94966143cE499088a517B
decimals: 6
logoURI: /deployments/warp_routes/USDS/logo.svg
name: 'USD Coin (Arb1)'
standard: EvmHypCollateral
symbol: USDC
- chainName: linea
addressOrDenom: '0x97a17AaDabFac0C2A3B94966143cE499088a517B'
collateralAddressOrDenom: '0xff970a61a04b1ca14834a43f5de4533ebddb5cc8'
connections:
- token: ethereum|arbitrum|0x260a928141209B550414917ba871436DFd39460a
decimals: 6
logoURI: /deployments/warp_routes/USDC/logo.svg
name: 'USD Coin (Arb1)'
standard: EvmHypSynthetic
symbol: USDC

2 changes: 1 addition & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module.exports = {
200: '#A7C2EC',
300: '#82A8E4',
400: '#5385D2',
500: '#2764c1',
500: '#28a745',
600: '#1D4685',
700: '#162A4A',
800: '#11213B',
Expand Down