From aafdd56987f703b55931c678b2c3a2af08dd8230 Mon Sep 17 00:00:00 2001 From: ron Date: Fri, 15 May 2026 05:57:03 +0000 Subject: [PATCH] Fix delivery time estimation Co-authored-by: Copilot --- components/transfer/TransferForm.tsx | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/components/transfer/TransferForm.tsx b/components/transfer/TransferForm.tsx index 6f48f88d..8c644fc8 100644 --- a/components/transfer/TransferForm.tsx +++ b/components/transfer/TransferForm.tsx @@ -1022,9 +1022,10 @@ export const TransferForm: FC = ({ )} /> - {/* Accelerated Option: Only show for polkadot->ethereum with supportsV2 */} + {/* Accelerated Option: Only show for polkadot->ethereum/ethereum_l2 with supportsV2 */} {source.kind === "polkadot" && - destination.kind === "ethereum" && + (destination.kind === "ethereum" || + destination.kind === "ethereum_l2") && getTransferLocation(assetRegistry, source).parachain?.features ?.supportsV2 && ( = ({
Estimated delivery time
- {source.kind === "ethereum" || source.kind === "ethereum_l2" - ? "~20 minutes" - : "~35 minutes"} + {source.kind === "polkadot" && + (destination.kind === "ethereum" || + destination.kind === "ethereum_l2") && + watchAccelerated + ? "~5 minutes" + : source.kind === "ethereum" || source.kind === "ethereum_l2" + ? "~20 minutes" + : "~5 to 240 minutes"}