Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

3,705 transactions (1.89 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,220 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 2,011 3
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,219 (838,739 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
71,480 71,480 00000000002ed10b25cc68f18a81fc3d123e5e5a3e7021a630964af2b089dbbf 0.00 MB 1 0
71,479 71,479 0000000000d7b089aae9c8b7e8d40118a7b3b8609154f8b7cf4ce53b353d4d0f 0.00 MB 1 0
71,478 71,478 0000000000ca569ff23ad002986e8a1a07aa8ba113040819b583aebe982dff1e 0.00 MB 1 0
71,477 71,477 00000000000bef09f14eec74ff3edc5bbf68e368cfbc872a5cbb75c7065a1eba 0.00 MB 1 0
71,476 71,476 0000000000f5a2ae582cef692a2f691a3f8ab94d13941d52d007d81a212f1a97 0.00 MB 1 0
71,475 71,475 0000000000d1c898a5541b6d59e6ff9251dd82c7b006a23fce9d4e301ad0f5b8 0.00 MB 1 0
71,474 71,474 00000000004fff09f036bee2296ea3c7079e1e2ba09422e2370c33a4a25d30fe 0.00 MB 1 0
71,473 71,473 0000000000fdb0e05182ae796c1a9c1a0e99856b86d6810b3548f77b1a03edec 0.00 MB 1 0
71,472 71,472 0000000000f5590ecf60a5b296a1f542d9bab98a6a5bf73d404fc8625b5416e3 0.00 MB 1 0
71,471 71,471 00000000007d21276066f6af186086d5f801e1f5d44c19c4cc72d663432b7d05 0.00 MB 1 0
71,470 71,470 0000000000841890d12238a6f16bc8d2df16f673a7f5a63a75f6f0141154f299 0.00 MB 1 0
71,469 71,469 00000000001eca3289e90edf8fd02e75fdfef1346f6fc4e343a8565af63ccec6 0.00 MB 1 0
71,468 71,468 0000000000da18c45aeb8ff89f8cf13805846cfb581208dba5646e72da732f0d 0.00 MB 4 0
71,467 71,467 0000000000dcb26d4ec181fd8400d183567e3f1d1c4433f0069d0a7e3cfac99c 0.00 MB 2 0
71,466 71,466 0000000000e44a002f01de9cb36c4c3a6f2dd567d481eb704c19056c630d586a 0.00 MB 2 0
71,465 71,465 0000000000e614410228e8c64e16a1984efaa203bd9783897f88ba52a7480b48 0.00 MB 2 0
71,464 71,464 0000000000265209426dbe399cbdcf059a95f2015477d32ebd39827a3e8bfdd7 0.00 MB 1 0
71,463 71,463 000000000006242793a0248dc8b92dd03e1ad1b902651b49335b38149566cf44 0.00 MB 1 0
71,462 71,462 000000000075f6284797d63753afeb00529dc1b95314d2e539c158ee4ba5eca2 0.00 MB 1 0
71,461 71,461 000000000096313371fcd3416cf75765141fd7a9df924693f2fcc6ae61da3bae 0.00 MB 1 0
71,460 71,460 0000000000fcdb326565eee9b4087ebdeeb220c38fa419b9d9f83ca388841ee3 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.80 GB

Node Information

  • IP: 162.120.69.182
  • Port: 8333
  • Version: 280000
  • Subversion: /Satoshi:28.0.0/
  • Uptime:
  • Connections: 10 outgoing, 113 incoming
  • Data Transfer: 2,200.16 GB sent, 117.63 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.