From 8451d2520feba8ccb5f09de49615b197cb69fc2e Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Wed, 15 Oct 2025 06:29:43 +0000 Subject: [PATCH] Fix Entropy contract explorer links for multiple networks - Fix HyperEVM mainnet explorer (was pointing to wanchain, now points to hyperevmscan.io) - Fix HyperEVM testnet explorer URL (removed extra slash, now points to app.hyperliquid-testnet.xyz/explorer) - Fix Sei EVM testnet explorer (was pointing to mainnet, now points to testnet.seiscan.io) - Add missing explorer links for Giwa testnet (sepolia-explorer.giwa.io) - Add missing explorer links for Sanko testnet (sanko-arb-sepolia.explorer.caldera.xyz) - Add missing explorer links for Sonic testnet (testnet.sonicscan.org) - Add missing explorer links for Tabi testnet (testnetv2.tabiscan.com) Co-Authored-By: aditya@dourolabs.xyz --- components/EntropyDeploymentsConfig.ts | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/components/EntropyDeploymentsConfig.ts b/components/EntropyDeploymentsConfig.ts index c7a0d793..f66f111e 100644 --- a/components/EntropyDeploymentsConfig.ts +++ b/components/EntropyDeploymentsConfig.ts @@ -16,10 +16,26 @@ export const EntropyDeploymentsConfig: Record = { "998": { rpc: "https://rpc.hyperliquid-testnet.xyz/evm", nativeCurrency: "HYPE", - explorer: "https://testnet.purrsec.com/", + explorer: "https://app.hyperliquid-testnet.xyz/explorer", }, "999": { rpc: "https://rpc.hypurrscan.io", nativeCurrency: "HYPE", + explorer: "https://hyperevmscan.io", + }, + "1328": { + explorer: "https://testnet.seiscan.io", + }, + "1992": { + explorer: "https://sanko-arb-sepolia.explorer.caldera.xyz", + }, + "9788": { + explorer: "https://testnetv2.tabiscan.com", + }, + "14601": { + explorer: "https://testnet.sonicscan.org", + }, + "91342": { + explorer: "https://sepolia-explorer.giwa.io", }, };