Skip to content

Commit

Permalink
hotfix: disabled sending XCM transactions on Astar network
Browse files Browse the repository at this point in the history
  • Loading branch information
sirius651 committed Jun 26, 2023
1 parent 813d6fa commit c28363c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/hooks/xcm/useTransferRouter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ export type TransferMode = 'local' | 'xcm';
export const astarNetworks = ['astar', 'shiden', 'shibuya'];
export const astarNativeTokens = ['sdn', 'astr', 'sby'];
// e.g.: endpointKey.SHIDEN;
const disabledXcmChain = undefined;
const disabledXcmChain: endpointKey | undefined = endpointKey.ASTAR;
// e.g.: [Chain.INTERLAY, Chain.KINTSUGI]
const disabledXcmParachains: string[] = [Chain.INTERLAY, Chain.KINTSUGI];

export interface NetworkFromTo {
Expand Down

0 comments on commit c28363c

Please sign in to comment.