From 0e370a1408b2f640b5b9168d2bb4959ae2e52030 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Jos=C3=A9=20Ram=C3=ADrez?= Date: Fri, 22 May 2026 06:58:01 -0300 Subject: [PATCH] hotfix: disable cross-chain withdraws and sends pending issue investigation Cross-chain flows (Rhino SDA) are being disabled while an issue is under investigation. Withdraw and claim/request-payment token selectors are restricted to USDC on Arbitrum; same-chain operations are unaffected. Revert both flags once the investigation closes. --- src/config/underMaintenance.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config/underMaintenance.config.ts b/src/config/underMaintenance.config.ts index 34f8643ec..125116194 100644 --- a/src/config/underMaintenance.config.ts +++ b/src/config/underMaintenance.config.ts @@ -55,8 +55,8 @@ const underMaintenanceConfig: MaintenanceConfig = { enableFullMaintenance: false, // set to true to redirect all pages to /maintenance enableMaintenanceBanner: false, // set to true to show maintenance banner on all pages disabledPaymentProviders: [], // set to ['MANTECA'] to disable Manteca QR payments - disableXchainWithdraw: false, // set to true to disable cross-chain withdrawals (only allows USDC on Arbitrum) - disableXchainSend: false, // set to true to disable cross-chain sends (claim, request payments - only allows USDC on Arbitrum) + disableXchainWithdraw: true, // set to true to disable cross-chain withdrawals (only allows USDC on Arbitrum) + disableXchainSend: true, // set to true to disable cross-chain sends (claim, request payments - only allows USDC on Arbitrum) disableCardPioneers: true, // set to false to enable the Card Pioneers waitlist feature }