Skip to content

Commit

Permalink
Adds ETH to RFQ (#2351)
Browse files Browse the repository at this point in the history
  • Loading branch information
abtestingalpha authored Mar 22, 2024
1 parent 748a433 commit ddabd69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/synapse-interface/utils/hooks/useStipEligibility.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,10 +236,10 @@ export const isRfqEligible = (

return (
(bridgeQuote.bridgeModuleName === BridgeModules.SYNAPSE_RFQ &&
token.swapableType === 'USD' &&
(token.swapableType === 'USD' || token.routeSymbol === 'ETH') &&
toChainId === ARBITRUM.id) ||
(bridgeQuote.bridgeModuleName === BridgeModules.SYNAPSE_RFQ &&
token.swapableType === 'USD' &&
(token.swapableType === 'USD' || token.routeSymbol === 'ETH') &&
fromChainId === ARBITRUM.id &&
toChainId === ETH.id)
)
Expand Down

0 comments on commit ddabd69

Please sign in to comment.