Skip to content

Commit

Permalink
fix: blast weth address (Uniswap#588)
Browse files Browse the repository at this point in the history
- **What kind of change does this PR introduce?** (Bug fix, feature, docs update, ...)
Bug fix

- **What is the current behavior?** (You can also link to an open issue here)
I saw routing-api pipeline failed with blast tests. Digging into it, it's because blast weth address is wrong to compute v3 gas model.

- **What is the new behavior (if this is a feature change)?**
Fix blast weth address.

- **Other information**:
This only impacts the route going through v3. For v2 route, since we don't compute the WETH/USDC gas model, the quote can still work.
  • Loading branch information
jsy1218 authored May 23, 2024
1 parent 096997d commit d2b0f72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ export const WRAPPED_NATIVE_CURRENCY: { [chainId in ChainId]: Token } = {
),
[ChainId.BLAST]: new Token(
ChainId.BLAST,
'0x4200000000000000000000000000000000000006',
'0x4300000000000000000000000000000000000004',
18,
'WETH',
'Wrapped Ether'
Expand Down

0 comments on commit d2b0f72

Please sign in to comment.