From be150660ca792cf8610687c08e25f25f10fc169c Mon Sep 17 00:00:00 2001 From: linuxion Date: Mon, 31 Jul 2017 03:24:02 +0300 Subject: [PATCH] Add Blockchair.com block explorer --- lib/util.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/util.py b/lib/util.py index cfc8436c8..0bbaf2962 100644 --- 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'}), }