Skip to content

Commit

Permalink
Add Bitcoin Unlimited block explorer
Browse files Browse the repository at this point in the history
  • Loading branch information
jonas-lundqvist committed Oct 14, 2020
1 parent 645394f commit 46f89f7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/web.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@
'Blockchain.com': ('https://www.blockchain.com/bch',
Address.FMT_CASHADDR,
{'tx': 'tx', 'addr': 'address', 'block': 'block'}),
'Bitcoin Unlimited': ('https://explorer.bitcoinunlimited.info',
Address.FMT_CASHADDR,
{'tx': 'tx', 'addr': 'address', 'block': 'block-height'}),
}

DEFAULT_EXPLORER_TESTNET = 'Bitcoin.com'
Expand All @@ -78,6 +81,9 @@
'Blockchain.com': ('https://www.blockchain.com/bch-testnet',
Address.FMT_CASHADDR,
{'tx': 'tx', 'addr': 'address', 'block': 'block'}),
'Bitcoin Unlimited': ('https://texplorer.bitcoinunlimited.info',
Address.FMT_CASHADDR,
{'tx': 'tx', 'addr': 'address', 'block': 'block-height'}),
}

def BE_info():
Expand Down

0 comments on commit 46f89f7

Please sign in to comment.