Skip to content

Commit

Permalink
Adds ETH to RFQ
Browse files Browse the repository at this point in the history
  • Loading branch information
abtestingalpha committed Mar 22, 2024
1 parent 748a433 commit 4c87ebf
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 4c87ebf

Please sign in to comment.