Skip to content

Commit

Permalink
Disable ETH (Ethereum) > Scroll transfers (frankenstein ETH) (#2063)
Browse files Browse the repository at this point in the history
  • Loading branch information
kev1n-peters committed May 8, 2024
1 parent ed19ab8 commit 285b1a7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions wormhole-connect/src/routes/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,13 @@ export const isIlliquidDestToken = (
) {
return true;
}
if (
['ETH', 'WETH'].includes(symbol) &&
nativeChain === 'ethereum' &&
destChain === 'scroll'
) {
return true;
}
return false;
};

Expand Down

0 comments on commit 285b1a7

Please sign in to comment.