commit 3d34fd9294ea5178002fe29e540c95a928223449
parent 45bfd8cbae731094f1d570035726f0aaac2ed8dd
Author: ThomasV <thomasv@electrum.org>
Date: Tue, 1 Aug 2017 12:03:14 +0200
Merge pull request #2658 from linuxion/patch-3
Add Blockchair.com block explorer
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/lib/util.py b/lib/util.py
@@ -366,6 +366,8 @@ mainnet_block_explorers = {
{'tx': 'tx', 'addr': 'address'}),
'BlockCypher.com': ('https://live.blockcypher.com/btc',
{'tx': 'tx', 'addr': 'address'}),
+ 'Blockchair.com': ('https://blockchair.com/bitcoin',
+ {'tx': 'transaction', 'addr': 'address'}),
'system default': ('blockchain:',
{'tx': 'tx', 'addr': 'address'}),
}