From 8e8d5946a7b02626d88f4f912480d75995317eb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ti=E1=BA=BFn=20Nguy=E1=BB=85n=20Kh=E1=BA=AFc?= Date: Fri, 1 Mar 2024 15:14:54 +1300 Subject: [PATCH] chore: disable Polkadot Asset Hub due to potential issue of losing fund https://github.com/paritytech/polkadot-sdk/issues/3050#issuecomment-1971375971 --- apps/web/src/domains/bridge/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/web/src/domains/bridge/index.ts b/apps/web/src/domains/bridge/index.ts index 0959c2cd5..4e96fdf28 100644 --- a/apps/web/src/domains/bridge/index.ts +++ b/apps/web/src/domains/bridge/index.ts @@ -14,7 +14,7 @@ export const bridgeState = selector({ .filter((x): x is NonNullable => x !== undefined) .map(x => x.adapter), disabledRouters: [ - // temportatily disable Kusama routes + // Temporarily disable Kusama routes // due to: https://github.com/paritytech/polkadot-sdk/issues/3050 { from: 'altair' }, { from: 'kusama' }, @@ -39,6 +39,8 @@ export const bridgeState = selector({ { from: 'robonomics' }, { from: 'tinkernet' }, { from: 'statemine' }, + // Disable Asset Hub due to similarly reported issue + { from: 'statemint' }, ], }) await bridge.isReady