From 99efd183379fdc7e748dbe04414a2fd944b153cf Mon Sep 17 00:00:00 2001 From: Gaurav Pal Date: Mon, 20 Apr 2026 10:11:07 +0000 Subject: [PATCH] fix(statics): correct IPTestnet tx explorer URL to aeneid storyscan The explorerUrl for IPTestnet was pointing to aeneid.explorer.story.foundation which returns a page-not-found error. Updated to aeneid.storyscan.io/tx/ to match the account explorer domain already in use for that network. Ticket: CECHO-770 --- modules/statics/src/networks.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/statics/src/networks.ts b/modules/statics/src/networks.ts index 0a7b90ed66..7d1daad52e 100644 --- a/modules/statics/src/networks.ts +++ b/modules/statics/src/networks.ts @@ -1568,7 +1568,7 @@ class IP extends Mainnet implements EthereumNetwork { class IPTestnet extends Testnet implements EthereumNetwork { name = 'StoryTestnet'; family = CoinFamily.IP; - explorerUrl = 'https://aeneid.explorer.story.foundation/tx/'; + explorerUrl = 'https://aeneid.storyscan.io/tx/'; accountExplorerUrl = 'https://aeneid.storyscan.io/address/'; chainId = 1315; nativeCoinOperationHashPrefix = '1315';