From 34cc7510daeb36ffd625686c16cad79f786fdc4e Mon Sep 17 00:00:00 2001 From: Jon Tzeng Date: Thu, 9 Oct 2025 14:16:08 -0700 Subject: [PATCH] (QTUM) Fix explorer URLs --- CHANGELOG.md | 2 ++ src/common/utxobased/info/qtum.ts | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a007be29..beef7b6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +- fixed: (QTUM) Explorer URLs + ## 3.8.5 (2025-09-09) - added: Add optional `memoIndex` to otherParams to force output index of OP_RETURN diff --git a/src/common/utxobased/info/qtum.ts b/src/common/utxobased/info/qtum.ts index b1cbe32f..d6f2252c 100644 --- a/src/common/utxobased/info/qtum.ts +++ b/src/common/utxobased/info/qtum.ts @@ -18,9 +18,9 @@ const currencyInfo: EdgeCurrencyInfo = { walletType: 'wallet:qtum', // Explorers: - addressExplorer: 'https://explorer.qtum.org/address/%s', - blockExplorer: 'https://explorer.qtum.org/block/%s', - transactionExplorer: 'https://explorer.qtum.org/tx/%s', + addressExplorer: 'https://qtum.info/address/%s', + blockExplorer: 'https://qtum.info/block/%s', + transactionExplorer: 'https://qtum.info/tx/%s', denominations: [{ name: 'QTUM', multiplier: '100000000', symbol: 'Q' }],