diff --git a/wormhole-connect/src/routes/utils.ts b/wormhole-connect/src/routes/utils.ts index ffaebe042..8da44cce3 100644 --- a/wormhole-connect/src/routes/utils.ts +++ b/wormhole-connect/src/routes/utils.ts @@ -111,7 +111,8 @@ export const isIlliquidDestToken = ( if ( ['ETH', 'WETH'].includes(symbol) && nativeChain === 'ethereum' && - destChain === 'scroll' + // These are L2 chains that have a native bridge + (destChain === 'scroll' || destChain === 'blast') ) { return true; }