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' }],