mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-01 09:45:18 +00:00
update bitcoin explorer options (#5285)
removed blocktrail.com, blockr.io, biteasy.com ( this explorers no longer works) added btc.bitaps.com (mainnet explorer) tbtc.bitaps.com (testnet explorer + coin faucet)
This commit is contained in:
parent
c31fa798c2
commit
3d8bcded79
1 changed files with 4 additions and 8 deletions
|
@ -661,20 +661,16 @@ def time_difference(distance_in_time, include_seconds):
|
||||||
mainnet_block_explorers = {
|
mainnet_block_explorers = {
|
||||||
'Bitupper Explorer': ('https://bitupper.com/en/explorer/bitcoin/',
|
'Bitupper Explorer': ('https://bitupper.com/en/explorer/bitcoin/',
|
||||||
{'tx': 'transactions/', 'addr': 'addresses/'}),
|
{'tx': 'transactions/', 'addr': 'addresses/'}),
|
||||||
'Biteasy.com': ('https://www.biteasy.com/blockchain/',
|
|
||||||
{'tx': 'transactions/', 'addr': 'addresses/'}),
|
|
||||||
'Bitflyer.jp': ('https://chainflyer.bitflyer.jp/',
|
'Bitflyer.jp': ('https://chainflyer.bitflyer.jp/',
|
||||||
{'tx': 'Transaction/', 'addr': 'Address/'}),
|
{'tx': 'Transaction/', 'addr': 'Address/'}),
|
||||||
'Blockchain.info': ('https://blockchain.info/',
|
'Blockchain.info': ('https://blockchain.info/',
|
||||||
{'tx': 'tx/', 'addr': 'address/'}),
|
{'tx': 'tx/', 'addr': 'address/'}),
|
||||||
'blockchainbdgpzk.onion': ('https://blockchainbdgpzk.onion/',
|
'blockchainbdgpzk.onion': ('https://blockchainbdgpzk.onion/',
|
||||||
{'tx': 'tx/', 'addr': 'address/'}),
|
{'tx': 'tx/', 'addr': 'address/'}),
|
||||||
'Blockr.io': ('https://btc.blockr.io/',
|
|
||||||
{'tx': 'tx/info/', 'addr': 'address/info/'}),
|
|
||||||
'Blockstream.info': ('https://blockstream.info/',
|
'Blockstream.info': ('https://blockstream.info/',
|
||||||
{'tx': 'tx/', 'addr': 'address/'}),
|
{'tx': 'tx/', 'addr': 'address/'}),
|
||||||
'Blocktrail.com': ('https://www.blocktrail.com/BTC/',
|
'Bitaps.com': ('https://btc.bitaps.com/',
|
||||||
{'tx': 'tx/', 'addr': 'address/'}),
|
{'tx': '', 'addr': ''}),
|
||||||
'BTC.com': ('https://chain.btc.com/',
|
'BTC.com': ('https://chain.btc.com/',
|
||||||
{'tx': 'tx/', 'addr': 'address/'}),
|
{'tx': 'tx/', 'addr': 'address/'}),
|
||||||
'Chain.so': ('https://www.chain.so/',
|
'Chain.so': ('https://www.chain.so/',
|
||||||
|
@ -698,8 +694,8 @@ mainnet_block_explorers = {
|
||||||
}
|
}
|
||||||
|
|
||||||
testnet_block_explorers = {
|
testnet_block_explorers = {
|
||||||
'Blocktrail.com': ('https://www.blocktrail.com/tBTC/',
|
'Bitaps.com': ('https://tbtc.bitaps.com/',
|
||||||
{'tx': 'tx/', 'addr': 'address/'}),
|
{'tx': '', 'addr': ''}),
|
||||||
'BlockCypher.com': ('https://live.blockcypher.com/btc-testnet/',
|
'BlockCypher.com': ('https://live.blockcypher.com/btc-testnet/',
|
||||||
{'tx': 'tx/', 'addr': 'address/'}),
|
{'tx': 'tx/', 'addr': 'address/'}),
|
||||||
'Blockchain.info': ('https://testnet.blockchain.info/',
|
'Blockchain.info': ('https://testnet.blockchain.info/',
|
||||||
|
|
Loading…
Add table
Reference in a new issue