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

Add wstETH and UNI tokens on Arbitrum #833

Merged
merged 1 commit into from
Feb 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions shared/src/assets/svg/tokens/usdbc.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions shared/src/data/TokenData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,24 @@ const ARB_ARBITRUM = new Token(
ArbLogo
);

const UNI_ARBITRUM = new Token(
arbitrum.id,
'0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0',
18,
'UNI',
'Uniswap',
UniLogo
);

const WSTETH_ARBITRUM = new Token(
arbitrum.id,
'0x5979d7b546e38e414f7e9822514be443a4800529',
18,
'wstETH',
'Wrapped liquid staked Ether 2.0',
WstEthLogo
);

const WETH_BASE = new Token(
base.id,
'0x4200000000000000000000000000000000000006',
Expand Down Expand Up @@ -446,6 +464,8 @@ const TOKEN_DATA: { [chainId: number]: { [address: Address]: Token } } = {
[USDT_ARBITRUM.address]: USDT_ARBITRUM,
[WBTC_ARBITRUM.address]: WBTC_ARBITRUM,
[WETH_ARBITRUM.address]: WETH_ARBITRUM,
[UNI_ARBITRUM.address]: UNI_ARBITRUM,
[WSTETH_ARBITRUM.address]: WSTETH_ARBITRUM,
},
[base.id]: {
[WETH_BASE.address]: WETH_BASE,
Expand Down
Loading