diff --git a/suite-common/graph/src/balanceHistoryUtils.ts b/suite-common/graph/src/balanceHistoryUtils.ts index bac183c195d..d03205bf9a4 100644 --- a/suite-common/graph/src/balanceHistoryUtils.ts +++ b/suite-common/graph/src/balanceHistoryUtils.ts @@ -327,6 +327,9 @@ export const getAccountHistoryMovementFromTransactions = ({ case 'eth': case 'pol': case 'bsc': + case 'arb': + case 'op': + case 'base': return getAccountHistoryMovementItemETH({ transactions, from, to }); default: diff --git a/suite-common/graph/src/constants.ts b/suite-common/graph/src/constants.ts index 957c0a513ec..78e54de5f28 100644 --- a/suite-common/graph/src/constants.ts +++ b/suite-common/graph/src/constants.ts @@ -9,6 +9,9 @@ export const LOCAL_BALANCE_HISTORY_COINS = [ 'pol', 'bsc', 'xrp', + 'arb', + 'base', + 'op', ] satisfies Array; export type LocalBalanceHistoryCoin = (typeof LOCAL_BALANCE_HISTORY_COINS)[number];