diff --git a/packages/arb-token-bridge-ui/src/hooks/useTransactionHistory.ts b/packages/arb-token-bridge-ui/src/hooks/useTransactionHistory.ts index b514db30d7..6c3de5d185 100644 --- a/packages/arb-token-bridge-ui/src/hooks/useTransactionHistory.ts +++ b/packages/arb-token-bridge-ui/src/hooks/useTransactionHistory.ts @@ -334,6 +334,16 @@ const useTransactionHistoryWithoutStatuses = (address: Address | undefined) => { isConnectedToParentChain }) try { + if ( + isTeleport({ + sourceChainId: chainPair.parentChainId, + destinationChainId: chainPair.childChainId + }) + ) { + // Teleport fetcher will go here. + return [] + } + return await fetcherFn({ sender: includeSentTxs ? address : undefined, receiver: includeReceivedTxs ? address : undefined,