Explorer IconExplorer

Memory Pool Memory Pool Refreshing

7,958 transactions (4.24 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,277 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 2,002 3
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,276 (901,891 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
7,385 7,385 0000000022ecd1312d96138b3c1c721a6a88fe2b3c68edd76006cdde65d44872 0.00 MB 1 0
7,384 7,384 00000000912b29d6a5005ee6106d9ee0328539b172edb7d4d1390316c6541a66 0.00 MB 1 0
7,383 7,383 00000000f3e1af7b75e770702c79b4b97d387514ada60e40098dcb07d325dc39 0.00 MB 1 0
7,382 7,382 000000000365926090128ede2367cb581efdb5130b957891e8c572fc210c839c 0.00 MB 1 0
7,381 7,381 00000000c5e19f534f6c55b14fdb4dec0467e686e50ea6a45342c6754971d689 0.00 MB 1 0
7,380 7,380 00000000cab80ebffb2ae3eda249cab4b0499ff8612266dc0cba8fed59806d57 0.00 MB 1 0
7,379 7,379 00000000717e8a421e4d27d4b19902d87d8d23c5169ad9ab964a0c6355d3653c 0.00 MB 1 0
7,378 7,378 0000000025c5cf207c974ab573038440316d8d69a756180742d695d27c8e2a8b 0.00 MB 1 0
7,377 7,377 000000000340996d07978c91cb215f6127e76121ed880f6cbac74b82bb858dc6 0.00 MB 1 0
7,376 7,376 0000000075ed8532f3b13ebb69ee7a2d9b3a22999e398b889af485d1b41fad85 0.00 MB 1 0
7,375 7,375 00000000d2e92d19faa5930749bfa2bca22ebe7c9bf9677b915db3e3f11f9bdc 0.00 MB 1 0
7,374 7,374 000000006850617955d4768569384e0a5dd88dc1c15ba559b0b231cba6bd63e8 0.00 MB 1 0
7,373 7,373 000000006af17237f0814f3270b5aec62fb0960e1f8a556f7506be9eb808f5d8 0.00 MB 1 0
7,372 7,372 000000004c68f200220143c5e69150d6f94f5e64e8b37d5087d672eaa18bf44f 0.00 MB 1 0
7,371 7,371 000000005eb9eb90598b4c8a7813e0d08ca7ebd6c7bb0c2131cebfa73d0461d5 0.00 MB 1 0
7,370 7,370 000000000562da619caf26409ae3dab49f39c1856e960f0cef7028768cbd6711 0.00 MB 1 0
7,369 7,369 0000000066c016c875f0e56c552f406f69de471c76f85781228457826582f03a 0.00 MB 1 0
7,368 7,368 00000000dc83b7cb494a538f1524c387fb4bba7946af422bd383dffc62c7229a 0.00 MB 1 0
7,367 7,367 00000000044ccb6ba36aafd0b7cb9efddd361a8773f69fe17c2f9b377c836571 0.00 MB 1 0
7,366 7,366 000000008d960b45211d81f009f329534e81df80066556c614f0088226f0782e 0.00 MB 1 0
7,365 7,365 000000006b4bd9d8addd0f0f5cd2d1b543850e20f01fc8fb24e8085bbce23bc9 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 772.05 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,046.31 GB sent, 108.31 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.