Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

4,001 transactions (1.66 vMB)

Priority:

  • 1 sats/vbyte = (8 blocks)
  • 2 sats/vbyte = (3 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,204 000000000000000000022cb30000000000000000000000000000000000000000 ago 1.00 vMB 2,708 3
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,203 (888,325 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
21,878 21,878 00000000215e41c3f168d6cac38016123694739dd8e4bae83a95dceaad42f361 0.00 MB 1 0
21,877 21,877 0000000018d2f5dff0044cbb616945d66a896df517332884b55b98da0d35ae0f 0.00 MB 1 0
21,876 21,876 000000004027f8faf386b2275308058d5a84dd2224cc59c17d1fbef047a57f72 0.00 MB 1 0
21,875 21,875 00000000b12a18337535a062cda60c2fff1bfb0ba30c571002fec02768824955 0.00 MB 1 0
21,874 21,874 00000000ef5c918e1313950f02d53c4657b9bee9c2be4d5702d8dfb7e9830e41 0.00 MB 1 0
21,873 21,873 0000000050c2f6e99880bfea4d76c70ac0941645e0fb888e4fbf0f29d4d2bfc3 0.00 MB 1 0
21,872 21,872 000000007fa9e01208b8856453cd6bb8b0abd60f6fcd9ce0255cbb7d97b1e49c 0.00 MB 1 0
21,871 21,871 00000000bc14b90e6adff5968c3d83484d4c0a5766a4f5b5092d78a98fa93edb 0.00 MB 1 0
21,870 21,870 000000000d546e5f35ebaa9a2f2917b51139f0f373faa9c8a3fe2c0903fb06b0 0.00 MB 1 0
21,869 21,869 0000000060a4cd411d50d7f3028254385bffb893867e03c228953f370fab57c8 0.00 MB 1 0
21,868 21,868 00000000d758d566dcab540f66992de52e63d2a91bf1705f5a62ed9befc195b4 0.00 MB 1 0
21,867 21,867 000000003f58c07210d8467af34520bacb48b81bea79bd9febae137354a6dd87 0.00 MB 1 0
21,866 21,866 000000007047986a4d9c5d3d7848e5b7437d4e1c67de9f8736e6f4dabad47a4a 0.00 MB 1 0
21,865 21,865 00000000bcfdffdfd60c23a1885845e85655b83c197d7a0a0bd775ba18ea67c5 0.00 MB 1 0
21,864 21,864 000000001077a4221f37c5295702563c3a23832728f2d3b8b2162026c7a40c93 0.00 MB 1 0
21,863 21,863 0000000020dd7801f269ed102acb5ba7f9c8323bf869c3cb1db44eaaa6596380 0.00 MB 1 0
21,862 21,862 00000000e4b6dc30b8945e3c4e032e0166c37bd5dac93831fd682ac4d03bf033 0.00 MB 1 0
21,861 21,861 00000000a2c7610d463c59ced466fe0c031c674437d70496bff4b4692a2fcc5b 0.00 MB 1 0
21,860 21,860 00000000ade5e0e7333e207be11ac2bf7e3f2810f1ef0bede9e58416dab55962 0.00 MB 1 0
21,859 21,859 00000000bf2ca460353a5faed76f07096c2eab801bfb4cea5df6da9ef14eea17 0.00 MB 1 0
21,858 21,858 00000000ef459ee530c86a81f3eb8f8d67181bb366b626c88d6c3cac5d0075b7 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.77 GB

Node Information

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