URI: 
       tAdd two more block explorers - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit e7ea3e5d01257db218c7b97bac36ff5ea5d246e4
   DIR parent 17948fb781be9e8a7292e3f822681cb529889592
  HTML Author: Neil Booth <kyuupichan@gmail.com>
       Date:   Wed, 15 Jul 2015 20:55:48 +0900
       
       Add two more block explorers
       
       chain.so and biteasy.com
       
       Diffstat:
         M lib/util.py                         |       8 ++++++--
       
       1 file changed, 6 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/lib/util.py b/lib/util.py
       t@@ -202,14 +202,18 @@ def time_difference(distance_in_time, include_seconds):
                return "over %d years" % (round(distance_in_minutes / 525600))
        
        block_explorer_info = {
       +    'Biteasy.com': ('https://www.biteasy.com/blockchain',
       +                        {'tx': 'transactions', 'addr': 'addresses'}),
            'Blockchain.info': ('https://blockchain.info',
                                {'tx': 'tx', 'addr': 'address'}),
            'Blockr.io': ('https://btc.blockr.io',
                                {'tx': 'tx/info', 'addr': 'address/info'}),
       -    'Insight.is': ('https://insight.bitpay.com',
       -                        {'tx': 'tx', 'addr': 'address'}),
            'Blocktrail.com': ('https://www.blocktrail.com/BTC',
                                {'tx': 'tx', 'addr': 'address'}),
       +    'Chain.so': ('https://www.chain.so',
       +                        {'tx': 'tx/BTC', 'addr': 'address/BTC'}),
       +    'Insight.is': ('https://insight.bitpay.com',
       +                        {'tx': 'tx', 'addr': 'address'}),
            'TradeBlock.com': ('https://tradeblock.com/blockchain',
                                {'tx': 'tx', 'addr': 'address'}),
        }