Skip to content

Commit

Permalink
fix(tokens): Correct Polygon Amoy WETH address (#52)
Browse files Browse the repository at this point in the history
The Polygon docs list 0x41Dc3...1102 as the MathcWeth address, but the
Sepolia -> Amoy bridge delivers WETH at address 0x52eF3...f72E.
  • Loading branch information
pxrl authored Jun 26, 2024
1 parent 3cece48 commit d8bb3f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
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.1",
"version": "3.1.2",
"description": "Export commonly re-used values for Across repositories",
"repository": "https://github.com/across-protocol/constants.git",
"author": "[email protected]",
Expand Down
3 changes: 1 addition & 2 deletions src/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ export const TOKEN_SYMBOLS_MAP = {
[CHAIN_IDs.OPTIMISM]: "0x4200000000000000000000000000000000000006",
[CHAIN_IDs.OPTIMISM_SEPOLIA]: "0x4200000000000000000000000000000000000006",
[CHAIN_IDs.POLYGON]: "0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619",
[CHAIN_IDs.POLYGON_AMOY]: "0x41Dc3C8eB8368bd9139Cec50434a0C294c8c1102",
[CHAIN_IDs.SEPOLIA]: "0xfFf9976782d46CC05630D1f6eBAb18b2324d6B14",
[CHAIN_IDs.ZK_SYNC]: "0x5AEa5775959fBC2557Cc8789bC1bf90A239D9a91",
[CHAIN_IDs.ZK_SYNC_SEPOLIA]: "0x2D6Db36B3117802E996f13073A08A685D3FeF7eD"
Expand Down Expand Up @@ -252,7 +251,7 @@ export const TOKEN_SYMBOLS_MAP = {
[CHAIN_IDs.OPTIMISM]: "0x4200000000000000000000000000000000000006",
[CHAIN_IDs.OPTIMISM_SEPOLIA]: "0x4200000000000000000000000000000000000006",
[CHAIN_IDs.POLYGON]: "0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619",
[CHAIN_IDs.POLYGON_AMOY]: "0x41Dc3C8eB8368bd9139Cec50434a0C294c8c1102",
[CHAIN_IDs.POLYGON_AMOY]: "0x52eF3d68BaB452a294342DC3e5f464d7f610f72E",
[CHAIN_IDs.SEPOLIA]: "0xfFf9976782d46CC05630D1f6eBAb18b2324d6B14",
[CHAIN_IDs.ZK_SYNC]: "0x5AEa5775959fBC2557Cc8789bC1bf90A239D9a91",
[CHAIN_IDs.ZK_SYNC_SEPOLIA]: "0x2D6Db36B3117802E996f13073A08A685D3FeF7eD"
Expand Down

0 comments on commit d8bb3f5

Please sign in to comment.