From f4d229741fc9e3eabdce7f65a4a7bb992789a25c Mon Sep 17 00:00:00 2001 From: Manoj Kumar Date: Mon, 4 May 2026 13:11:12 +0530 Subject: [PATCH] fix(statics): update xtzevm testnet chain ID to shadownet (127823) The Etherlink testnet migrated from the deprecated ghostnet-based testnet (chain ID 128123) to the new shadownet testnet (chain ID 127823). The explorer URLs already pointed to shadownet; only the chain ID was wrong. Fixes: CECHO-864 Co-Authored-By: Claude Sonnet 4.6 TICKET: CECHO-864 --- modules/statics/src/networks.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/statics/src/networks.ts b/modules/statics/src/networks.ts index f0461a9ea5..df720eece1 100644 --- a/modules/statics/src/networks.ts +++ b/modules/statics/src/networks.ts @@ -743,8 +743,8 @@ class XtzEvmTestnet extends Testnet implements EthereumNetwork { family = CoinFamily.XTZEVM; explorerUrl = 'https://shadownet.explorer.etherlink.com/tx/'; accountExplorerUrl = 'https://shadownet.explorer.etherlink.com/address/'; - chainId = 128123; - nativeCoinOperationHashPrefix = '128123'; + chainId = 127823; + nativeCoinOperationHashPrefix = '127823'; } class Pyrmont extends Testnet implements AccountNetwork {