Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: disable Polkadot Asset Hub due to potential issue of losing fund #1017

Merged
merged 3 commits into from
Mar 1, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion apps/web/src/domains/bridge/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const bridgeState = selector({
.filter((x): x is NonNullable<typeof x> => 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' },
Expand All @@ -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
Expand Down
Loading