From 07ec3f32d3f7821a262004e002b9d2771f6ccdcd Mon Sep 17 00:00:00 2001 From: Mathieu Welche Date: Tue, 30 Jun 2026 20:08:22 -0700 Subject: [PATCH] fix: include plasma in SUPPORTED_CHAINS Plasma was present in the SupportedChainId union, NATIVE_SYMBOL_BY_CHAIN_ID, and isChainIdSupported, but missing from SUPPORTED_CHAINS. That list is used to resolve the chain name when a transaction has reverted, so a reverted Plasma transaction logged an "undefined" chain name. Add plasma to the list to make the chain's declaration consistent across all four references. --- src/constants.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/constants.ts b/src/constants.ts index ca4bd6d..9b2445d 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -124,6 +124,7 @@ export const SUPPORTED_CHAINS = [ linea, scroll, mantle, + plasma, mainnet, polygon, arbitrum,