Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

13,487 transactions (4.10 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,694 000000000000000000022cb30000000000000000000000000000000000000000 ago 1.00 vMB 4,153 7
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,693 (837,767 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
71,926 71,926 0000000000fe450d0fc2bc27d7b158c30b3cdaf855b6e8f51cd001ed76b44425 0.00 MB 1 0
71,925 71,925 000000000000922b404f6e52c7a927466a3d469ab2d17a8fd48c19f6f8b22dae 0.00 MB 1 0
71,924 71,924 0000000000a8a908f63985cfac1101a6b398d1ab06df3e8680f25d7800459708 0.00 MB 1 0
71,923 71,923 0000000000e0fac39facf3010b5143b00ecbec88f5e6fd439b43dec1bcdac454 0.00 MB 2 0
71,922 71,922 0000000000c6fe63b6a985fea78a8701a46e69cc77ebb624efea50e09257c1fa 0.00 MB 1 0
71,921 71,921 00000000008c8fbedb9e8169aadd26a8e53bd4d0e8ddf42b56b6a3b29d2a0ea4 0.00 MB 1 0
71,920 71,920 0000000000b4f6c812124e52e3f207b799e1a67183cbcc2f6c12191145a165b2 0.00 MB 1 0
71,919 71,919 0000000000dbdafa0268c460da3c3f946a8504dfd813766fd464bace939257e3 0.00 MB 1 0
71,918 71,918 0000000000149778f45579c77bea5a297b169620e09c9aab171c188a862520d6 0.00 MB 3 0
71,917 71,917 0000000000dc5dc5a18d4142c8024a5aea019365e33c0cddc8b47faae7275ac6 0.00 MB 1 0
71,916 71,916 000000000092720dbc7667b1ec83ccceaaf88d54c6250d8943b34dba3dbe2c66 0.00 MB 1 0
71,915 71,915 000000000055fee350ecbee0297e7a4777d9d9f42b5a5f4a98dad6ea5835a3a4 0.00 MB 1 0
71,914 71,914 0000000000ee78350e2bfcdc7e2f7c241dff14f5042e47ca05d8d483b534fd54 0.00 MB 1 0
71,913 71,913 0000000000a2a800ed34163bf543ed8fc7a716696fd39e99a68e859ea1152d52 0.00 MB 1 0
71,912 71,912 0000000000a334652bf3aae7917d1b33a75c565c518cc6918134f0dd21a7ac3e 0.00 MB 1 0
71,911 71,911 0000000000e3e02e767d43857290a3b09adc82102877e1a36b909a7c201641be 0.00 MB 1 0
71,910 71,910 000000000013fb0a8b1a3a342c9f5eb8d25756c1295ae11d8458f7b693153ddb 0.00 MB 1 0
71,909 71,909 000000000044ca1bdecdb532e1d143c305e9403a2e35adfa13db4bb29f8208b2 0.00 MB 2 0
71,908 71,908 00000000000b547b70a5b4e5b9ca7993c74d9261886d733aa7ab5b9ec22ea8f4 0.00 MB 1 0
71,907 71,907 000000000087030f0feacbd875f4c1c55ca1319415b99aa328e5610ba06f516d 0.00 MB 4 0
71,906 71,906 0000000000860606516deea8b96371d93740d96a300288fbe615385130f9a0bc 0.00 MB 3 0
Previous 10 blocks ↓
Total Size: 772.84 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,153.40 GB sent, 112.56 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.