Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

161 transactions (0.05 vMB)

Priority:

  • 1 sats/vbyte = (6 blocks)
  • 2 sats/vbyte = (3 blocks)
  • 3 sats/vbyte = (2 blocks)
Show Random Selection Loading Transactions
Max Size: 0/200 MB

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,608 000000000000000000022cb30000000000000000000000000000000000000000 0.05 vMB 158 3
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,607 (836,834 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
72,773 72,773 0000000000086203c7b8aa4d33c18ad39ab32db76f5c607f390038a879c08378 0.00 MB 2 0
72,772 72,772 0000000000967b8acb8ed304669f8d8ab11cd307d67d31e241b641b479ae9fbc 0.00 MB 2 0
72,771 72,771 0000000000adfc7f4bd1efe8a5067814b46ef23a9ba06cc2b755e99baf4e997c 0.00 MB 1 0
72,770 72,770 000000000090d5c0d3bf5c8ae15a9da1dc80a22989e32c56da2c3a4f68fb039d 0.00 MB 3 0
72,769 72,769 0000000000811b6ef771aaf7419f707532d932e3e98c764ad3615d3b2f889e55 0.00 MB 1 0
72,768 72,768 00000000005b3813fb227044318a0d25b0a34304739c201f0145dd46f8b51074 0.00 MB 1 0
72,767 72,767 00000000001168135cf7882d814e314744a0fa68494011655556e2a90f8ec117 0.00 MB 1 0
72,766 72,766 0000000000818d40bd49fed8b8139e8fb9efa299cd316efc7e457c4e78ef30df 0.00 MB 2 0
72,765 72,765 00000000005b492d2a322cf8b8fbbfa20ada196e74c6b49da151f592a083a19f 0.00 MB 1 0
72,764 72,764 00000000000e0c841c0def92e7e347db494062436a8f6a7a4db8ae931ca8f3b8 0.00 MB 1 0
72,763 72,763 0000000000690b5c18d02d9460018022cd3d1c5cca032ea89582aa2b6dc066d3 0.00 MB 1 0
72,762 72,762 00000000002897617f039441896fee7b4d223eb3b9ea39004dd2ca69f9b8a16f 0.00 MB 1 0
72,761 72,761 0000000000b9573c739f7f1eb71a76986c62e9a5801d77db59a7800d43e56dc1 0.00 MB 1 0
72,760 72,760 00000000001ab505cd61459d84348c0ee40c8ef092a78847ef14ae2b2bbf3d11 0.00 MB 1 0
72,759 72,759 00000000009577571a3fbf4ca0d7ce68ae99417497ab0a46c549907ea59e30ca 0.00 MB 3 0
72,758 72,758 000000000051e9ce77ffac180e6881a8013c3a061e1277ecb44e7450605103e3 0.00 MB 1 0
72,757 72,757 000000000026b9ea0eac6e61ebc4a5b6e7835343740b2aa93011d22aabbe9da4 0.00 MB 1 0
72,756 72,756 0000000000317579cc0a3cdf7b82e72de6a878f118a080abd4a4e9940f361305 0.00 MB 2 0
72,755 72,755 000000000024030c7abf6e227cb4d6ad8c247a316018562ce01db76e037e1df0 0.00 MB 1 0
72,754 72,754 000000000064b8027cdf31c36729d77b5f4678f88813ed1e68612be226b5dfeb 0.00 MB 1 0
72,753 72,753 000000000029ae2aae0262cb57e8f9c00db3c1b02e5bdf8aa64ef7deb37a2ac5 0.02 MB 7 12,283
Previous 10 blocks ↓
Total Size: 772.68 GB

Node Information

  • IP: 162.120.69.182
  • Port: 8333
  • Version: 280000
  • Subversion: /Satoshi:28.0.0/
  • Uptime:
  • Connections: 10 outgoing, 114 incoming
  • Data Transfer: 2,100.43 GB sent, 111.70 GB received

Notes

  • This page updates every 5 seconds.
  • Use the search bar at the top of the website to search for transactions and blocks.
  • Memory pool size (vMB) is the total size of the raw transaction data (not including metadata).
  • Block size (MB) does not include block header, tx count, or coinbase transaction.
  • Feerates are in sats/vbyte.
  • AFR = Average Feerate

About

This is a basic blockchain explorer for exploring Bitcoin data.

The main features of this explorer are:

  • Basic. The data is laid out to try and represent the structure of raw transactions and blocks.
  • Fast. I've made the pages load as fast as I can. If you can't be pretty, you might as well be fast.

So it's pretty basic, but I think you can learn a lot about how Bitcoin works by browsing the raw data and seeing how it all connects together.

Data

The data on this explorer comes from the following sources:

  1. Bitcoin Core. This is used to get raw transaction and block data. This is retrieved via simple bitcoin-cli commands.
  2. SSDB. I'm using a custom database to store the address balances and spent locations of each output. Bitcoin Core does not store this information, so I'm using a custom script and database to store this extra information.

Privacy

This blockchain explorer does not track anything.

I do not collect IP addresses or keep track of requests. Nor do I use any third-party analytics or tracking software.

However, this blockchain explorer is not open-source, so you have to trust me on this one.

Bitcoin Core Explorer

If you want to explore blockchain data without having to trust anyone with your privacy, the simplest way to do this is to run your own Bitcoin Core node and run bitcoin-cli commands.

The two most useful commands are:

  • bitcoin-cli getrawtransaction <txid>
  • bitcoin-cli getblock <hash>
  • You will need to add txindex=1 to your bitcoin.conf configuration file to be able to query for all transactions.
  • Use bitcoin-cli help to a complete list of commands.
  • Use bitcoin-cli help <command name> to see detailed information about a command and all the available options.

Alternatively, you can also run your own self-hosted explorer such as mempool or btc-rpc-explorer.