From 29c123d80632225e4348fc864cc8ed26803d3b1b Mon Sep 17 00:00:00 2001 From: dragonsea0927 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 0959c2cd..4e96fdf2 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