From 90ff29894f5783ce6536d3b6a3ccc8bd041a804c Mon Sep 17 00:00:00 2001 From: Gabriel Montes Date: Mon, 29 Apr 2024 14:33:43 -0400 Subject: [PATCH] FIx the explorer URL --- packages/chain-list/src/chains.json | 4 ++-- site/components/ExplorerLink.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/chain-list/src/chains.json b/packages/chain-list/src/chains.json index 040850f..9e103d2 100644 --- a/packages/chain-list/src/chains.json +++ b/packages/chain-list/src/chains.json @@ -4,7 +4,7 @@ "eip1559": true, "explorer": { "name": "Hemi explorer", - "url": "https://explorer.hemi.network" + "url": "https://explorer.hemi.xyz" }, "decimals": 18, "gasOverestimation": 1.5, @@ -24,7 +24,7 @@ "eip1559": true, "explorer": { "name": "Hemi Sepolia explorer", - "url": "https://testnet.explorer.hemi.network" + "url": "https://testnet.explorer.hemi.xyz" }, "decimals": 18, "gasOverestimation": 1.5, diff --git a/site/components/ExplorerLink.js b/site/components/ExplorerLink.js index c19992e..45fe109 100644 --- a/site/components/ExplorerLink.js +++ b/site/components/ExplorerLink.js @@ -2,8 +2,8 @@ const formatShort = text => `${text.substr(0, 6)}...${text.slice(-4)}` const explorerUrls = { 1: 'https://etherscan.io', - 43111: 'https://explorer.hemi.network', - 743111: 'https://testnet.explorer.hemi.network' + 43111: 'https://explorer.hemi.xyz', + 743111: 'https://testnet.explorer.hemi.xyz' } /**