Skip to content

Commit

Permalink
feat(suite-native): blacklist Arbitrum one
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasklim committed Dec 20, 2024
1 parent 0865836 commit 917bc6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion suite-native/config/src/supportedNetworks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const orderedAccountTypes: AccountType[] = [
'ledger',
];

const discoveryBlacklist: NetworkSymbol[] = ['sol', 'dsol', 'op', 'base'];
const discoveryBlacklist: NetworkSymbol[] = ['sol', 'dsol', 'op', 'base', 'arb'];

// All supported coins for device discovery
export const networkSymbolsWhitelistMap: Record<'mainnet' | 'testnet', readonly NetworkSymbol[]> = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export const useAddCoinAccount = () => {
availableTypes.set(symbol, [
NORMAL_ACCOUNT_TYPE,
// For Cardano and EVMs allow only normal account type
...(['ada', 'eth', 'pol', 'bnb', 'sol', 'op', 'base'].includes(symbol)
...(['ada', 'eth', 'pol', 'bnb', 'sol', 'op', 'base', 'arb'].includes(symbol)
? []
: types),
]);
Expand Down

0 comments on commit 917bc6f

Please sign in to comment.