Skip to content

Commit

Permalink
feat(aleph-zero): add token definitions (#78)
Browse files Browse the repository at this point in the history
Adds token definitions for AlephZero. The ETH/WETH addresses are handled
like MATIC for non-native ETH gas token

---------

Signed-off-by: james-a-morris <[email protected]>
  • Loading branch information
james-a-morris authored Oct 29, 2024
1 parent 2d9fd99 commit 63f7546
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@across-protocol/constants",
"version": "3.1.17",
"version": "3.1.18",
"description": "Export commonly re-used values for Across repositories",
"repository": "https://github.com/across-protocol/constants.git",
"author": "[email protected]",
Expand Down
3 changes: 3 additions & 0 deletions src/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ export const TOKEN_SYMBOLS_MAP = {
symbol: "ETH",
decimals: 18,
addresses: {
[CHAIN_IDs.ALEPH_ZERO]: "0xB3f0eE446723f4258862D949B4c9688e7e7d35d3",
[CHAIN_IDs.ARBITRUM]: "0x82aF49447D8a07e3bd95BD0d56f35241523fBab1",
[CHAIN_IDs.ARBITRUM_SEPOLIA]: "0x980B62Da83eFf3D4576C647993b0c1D7faf17c73",
[CHAIN_IDs.BASE]: "0x4200000000000000000000000000000000000006",
Expand Down Expand Up @@ -275,6 +276,7 @@ export const TOKEN_SYMBOLS_MAP = {
symbol: "USDT",
decimals: 6,
addresses: {
[CHAIN_IDs.ALEPH_ZERO]: "0xD648529D4803d3467bA8850577BEd4e4b8Ae583C ",
[CHAIN_IDs.ARBITRUM]: "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9",
[CHAIN_IDs.BOBA]: "0x5DE1677344D3Cb0D7D465c10b72A8f60699C062d",
[CHAIN_IDs.LINEA]: "0xA219439258ca9da29E9Cc4cE5596924745e12B93",
Expand Down Expand Up @@ -323,6 +325,7 @@ export const TOKEN_SYMBOLS_MAP = {
symbol: "WETH",
decimals: 18,
addresses: {
[CHAIN_IDs.ALEPH_ZERO]: "0xB3f0eE446723f4258862D949B4c9688e7e7d35d3",
[CHAIN_IDs.ARBITRUM]: "0x82aF49447D8a07e3bd95BD0d56f35241523fBab1",
[CHAIN_IDs.ARBITRUM_SEPOLIA]: "0x980B62Da83eFf3D4576C647993b0c1D7faf17c73",
[CHAIN_IDs.BASE]: "0x4200000000000000000000000000000000000006",
Expand Down

0 comments on commit 63f7546

Please sign in to comment.