Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

1,737 transactions (0.98 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,599 000000000000000000022cb30000000000000000000000000000000000000000 0.98 vMB 1,723 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,598 (837,192 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
72,406 72,406 0000000000c496078f3fbda3e11476282488cf8437899cd8e412bbafc86a395b 0.00 MB 2 0
72,405 72,405 00000000007080c73285a4bb2724d3cfe1fd10beea1a4ba29923cf90895fa153 0.00 MB 1 0
72,404 72,404 0000000000d24427b5f4b209e4e371eead19b486cd0abae0444ff4dc069a4837 0.00 MB 4 0
72,403 72,403 00000000007c0ac06b35391603d33c1e9b6df00f9d9936984c95a0d2bb4b4a6b 0.00 MB 2 0
72,402 72,402 00000000001fb9c4da5b4fa28c2bd50b0f824fb7f6ea6477390c1722505dd54c 0.00 MB 2 0
72,401 72,401 0000000000594125ab5b3ce3c076e78f898b0fda8e347c0b9e63861d42fcbceb 0.00 MB 1 0
72,400 72,400 0000000000bd5c54db2328e619494138521a6fa17ba655e45587cbab4636acd4 0.00 MB 1 0
72,399 72,399 0000000000d6e45909a5ea253b026536200e7a1406da997bd0aa2b7adb790110 0.00 MB 3 0
72,398 72,398 00000000006f42b6af01c85821e21de51aef7a31bf28622f6c9bf51edfb88923 0.00 MB 1 0
72,397 72,397 00000000003385061387c0874caa1f0244210cf5a48d6b5302c7b2e37890fd5d 0.00 MB 1 0
72,396 72,396 0000000000542257e7256f9c73a85fd79083fe160bbee15fdec2f9373491ce2a 0.00 MB 1 0
72,395 72,395 0000000000b24df6c7442decb5b572afa711803a1081f6e506d4a4c28b0766d6 0.00 MB 1 0
72,394 72,394 00000000004f363a8faa1a99826c53d4668e5334266b841a56012c1dbf45dde3 0.00 MB 1 0
72,393 72,393 0000000001089c1f63fccd3e008ba7e8b3d10f064fb72cb39c8af0019366afe0 0.00 MB 7 0
72,392 72,392 00000000007ebd10245ee00cd51febde4ca54927b96ffe7ee91ec443dd0cc3e2 0.00 MB 2 0
72,391 72,391 00000000006b98d915f896c8abf765f7f0e2510c9b51443eb79eaf8c80052be7 0.00 MB 1 0
72,390 72,390 0000000000b8285b46f0de7881afea4af9f309e94f5f4168fbaf4ea3964055a6 0.00 MB 1 0
72,389 72,389 0000000000945ced7a66c1a12e6bb42a63b9fd3b804449f64eec16a6a2a338e7 0.00 MB 1 0
72,388 72,388 00000000000c39828c4a2fdb956f2819b23f0d60e8101498adc6b688533067bd 0.00 MB 2 0
72,387 72,387 0000000000fdcfd68eb84cd21d415781ad2062e2a9851f0abc0fde1f5d07472d 0.00 MB 2 0
72,386 72,386 00000000000b23d5f0bd1b3b3ebd1ef83d2906d65eeb41a72541b7365867a193 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 772.66 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,098.63 GB sent, 111.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.