From 6d5b28a9c5228e49ab173c7e034196ae12293b84 Mon Sep 17 00:00:00 2001 From: neoCogent Date: Wed, 7 Nov 2018 11:18:00 +1000 Subject: [PATCH] add blockstream.info as explorer option (#4829) --- electrum/util.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/electrum/util.py b/electrum/util.py index 22a5aac5b..54ed08d6a 100644 --- a/electrum/util.py +++ b/electrum/util.py @@ -625,6 +625,8 @@ mainnet_block_explorers = { {'tx': 'tx/', 'addr': 'address/'}), 'Blockr.io': ('https://btc.blockr.io/', {'tx': 'tx/info/', 'addr': 'address/info/'}), + 'Blockstream.info': ('https://blockstream.info/', + {'tx': 'tx/', 'addr': 'address/'}), 'Blocktrail.com': ('https://www.blocktrail.com/BTC/', {'tx': 'tx/', 'addr': 'address/'}), 'BTC.com': ('https://chain.btc.com/', @@ -656,6 +658,8 @@ testnet_block_explorers = { {'tx': 'tx/', 'addr': 'address/'}), 'Blockchain.info': ('https://testnet.blockchain.info/', {'tx': 'tx/', 'addr': 'address/'}), + 'Blockstream.info': ('https://blockstream.info/testnet/', + {'tx': 'tx/', 'addr': 'address/'}), 'BTC.com': ('https://tchain.btc.com/', {'tx': '', 'addr': ''}), 'smartbit.com.au': ('https://testnet.smartbit.com.au/',