diff --git a/ui/ducks/bridge/actions.ts b/ui/ducks/bridge/actions.ts index 4d3a4c64494e..738dc676f928 100644 --- a/ui/ducks/bridge/actions.ts +++ b/ui/ducks/bridge/actions.ts @@ -263,9 +263,6 @@ export const submitBridgeTransaction = ( txParams.chainId, 10, ).toPrefixedHexString() as `0x${string}`; - if (!hexChainId) { - throw new Error('Invalid chain ID'); - } const maxGasLimit = getMaxGasLimit(txParams.gasLimit ?? 0); @@ -423,22 +420,7 @@ export const submitBridgeTransaction = ( decimals, symbol, icon: image, - chainId, } = quoteResponse.quote.srcAsset; - - const srcHexChainId = new Numeric( - quoteResponse.quote.srcChainId, - 10, - ).toPrefixedHexString() as `0x${string}`; - const tokenHexChainId = new Numeric( - chainId, - 10, - ).toPrefixedHexString() as `0x${string}`; - - if (tokenHexChainId !== srcHexChainId) { - throw new Error('Token chain ID does not match source chain ID'); - } - dispatch( addToken({ address,