From 003d7be28a7592ef1b892ee37ffb961398f47f71 Mon Sep 17 00:00:00 2001 From: Manas Ladha Date: Wed, 8 Apr 2026 09:44:08 +0000 Subject: [PATCH] fix(statics): update BABY explorer links to Mintscan Replace deprecated Nodes.Guru explorer URLs for Babylon (BABY) with Mintscan URLs, as the Babylon team has deprecated Nodes.Guru. Ticket: CSHLD-561 --- 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 d6a8150a14..c419fdc5d0 100644 --- a/modules/statics/src/networks.ts +++ b/modules/statics/src/networks.ts @@ -1124,13 +1124,13 @@ class RuneTestNet extends Testnet implements AccountNetwork { class Baby extends Mainnet implements AccountNetwork { name = 'Babylon'; family = CoinFamily.BABY; - explorerUrl = 'https://babylon.explorers.guru/transaction/'; + explorerUrl = 'https://www.mintscan.io/babylon/tx/'; } class BabyTestnet extends Testnet implements AccountNetwork { name = 'Testnet Babylon'; family = CoinFamily.BABY; - explorerUrl = 'https://testnet.babylon.explorers.guru/transaction/'; + explorerUrl = 'https://www.mintscan.io/babylon-testnet/tx/'; } class Mantra extends Mainnet implements CosmosNetwork {