Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Unreleased

- changed: BTC and LTC explorer links now point to mempool.space and litecoinspace.org instead of Blockchair
- changed: `broadcastTx` now sends to every cached Blockbook socket and every Edge Blockbook HTTP server at once, then to the NOWNodes HTTP servers two seconds later or as soon as that first wave has failed, resolving on the first success and rejecting only when all attempts fail or time out (30 seconds per attempt, matching the socket layer). Previously the HTTP fallback ran only when no socket reported itself connected, so one unresponsive socket could fail the whole broadcast without any HTTP attempt.
- fixed: Stop sending the NOWNodes API key to Edge's own Blockbook HTTP servers. They are now configured as plain `blockbook` servers, which are also used when no NOWNodes key is configured.

Expand Down
4 changes: 2 additions & 2 deletions src/common/utxobased/info/bitcoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ const currencyInfo: EdgeCurrencyInfo = {

// Explorers:
blockExplorer: 'https://blockchair.com/bitcoin/block/%s',
addressExplorer: 'https://blockchair.com/bitcoin/address/%s',
transactionExplorer: 'https://blockchair.com/bitcoin/transaction/%s',
addressExplorer: 'https://mempool.space/address/%s',
transactionExplorer: 'https://mempool.space/tx/%s',

denominations: [
{ name: 'BTC', multiplier: '100000000', symbol: '₿' },
Expand Down
4 changes: 2 additions & 2 deletions src/common/utxobased/info/litecoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ export const currencyInfo: EdgeCurrencyInfo = {

// Explorers:
blockExplorer: 'https://blockchair.com/litecoin/block/%s',
addressExplorer: 'https://blockchair.com/litecoin/address/%s',
transactionExplorer: 'https://blockchair.com/litecoin/transaction/%s',
addressExplorer: 'https://litecoinspace.org/address/%s',
transactionExplorer: 'https://litecoinspace.org/tx/%s',

denominations: [
{ name: 'LTC', multiplier: '100000000', symbol: 'Ł' },
Expand Down
Loading