From 4b86dfc392ed46be7cdcce640884eea094a5de76 Mon Sep 17 00:00:00 2001 From: Mukesh Mahadev Prajapati Date: Fri, 14 Aug 2026 21:18:20 +0530 Subject: [PATCH] fix(statics): replace dead algorand testnet explorer url with pera The Algorand testnet explorer URL (explorer.bitquery.io) returns HTTP 403 - Bitquery deprecated its public explorer pages in favor of a GraphQL API product, so talgo transaction links in the BitGo UI/API were broken. Replace with the Pera Explorer (AlgoExplorer's official successor): https://testnet.explorer.perawallet.app/tx/ Mainnet (allo.info) still returns 200 and is left unchanged. Update the matching amsTokenConfig test fixture for talgo:JPT-162085446, since the 'create a valid token map from AmsTokenConfig' unit test asserts JSON.stringify equality between the AMS-config network and the static coin-map network. Ticket: CSHLD-1491 Co-Authored-By: Claude --- modules/statics/src/networks.ts | 2 +- modules/statics/test/unit/resources/amsTokenConfig.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/statics/src/networks.ts b/modules/statics/src/networks.ts index 17b8134971..ed474c93a3 100644 --- a/modules/statics/src/networks.ts +++ b/modules/statics/src/networks.ts @@ -224,7 +224,7 @@ class Algorand extends Mainnet implements AccountNetwork { class AlgorandTestnet extends Testnet implements AccountNetwork { name = 'AlgorandTestnet'; family = CoinFamily.ALGO; - explorerUrl = 'https://explorer.bitquery.io/algorand_testnet/tx/'; + explorerUrl = 'https://testnet.explorer.perawallet.app/tx/'; } class Ada extends Mainnet implements AdaNetwork { diff --git a/modules/statics/test/unit/resources/amsTokenConfig.ts b/modules/statics/test/unit/resources/amsTokenConfig.ts index a1d5121d57..03a763b097 100644 --- a/modules/statics/test/unit/resources/amsTokenConfig.ts +++ b/modules/statics/test/unit/resources/amsTokenConfig.ts @@ -153,7 +153,7 @@ export const amsTokenConfig = { type: 'testnet', name: 'AlgorandTestnet', family: 'algo', - explorerUrl: 'https://explorer.bitquery.io/algorand_testnet/tx/', + explorerUrl: 'https://testnet.explorer.perawallet.app/tx/', }, primaryKeyCurve: 'ed25519', },