Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

3,902 transactions (1.33 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,646 000000000000000000022cb30000000000000000000000000000000000000000 ago 1.00 vMB 3,036 4
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,645 (824,768 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
85,877 85,877 000000000003af237a38ef398cb5b9c37f398aaf804df18c6a3b0a1585749036 0.00 MB 1 0
85,876 85,876 00000000001ee7ffc84dea26c955cba29ead9aaba93f76e7ee7456ba406be583 0.00 MB 2 0
85,875 85,875 0000000000007af8f6a8ec229a95d9bc76414cc8a958e09646b6af68e5e301c3 0.00 MB 1 0
85,874 85,874 00000000001ab09e0b3c82fc1497ae543c4ef2727a6ff64bef8ff4729330e60c 0.00 MB 2 0
85,873 85,873 00000000002ea309e37cb814872dfbfaec43622f1f6d639fcb50e9e0b51bfa2f 0.00 MB 2 0
85,872 85,872 00000000002f8d7298bb21ac5e97f1463fd54a351d4abac76395bdf6cec1f3cf 0.00 MB 2 0
85,871 85,871 0000000000106494c14834525f13aeeaf2fd21b0d5f1a1509bc082016c76fcbe 0.00 MB 1 0
85,870 85,870 00000000002dbd3b11eade5b2047761e0a399dfc58361d922d087542d48dfd9d 0.00 MB 6 0
85,869 85,869 000000000028363f2e9a865dd2ef8b2e4de8caec924cbe651adafcf1f16a4719 0.00 MB 2 0
85,868 85,868 00000000000ae4f21399aa24d67cf979934eaa31fccea0beea4d9aa45b9603ac 0.00 MB 1 0
85,867 85,867 000000000028a15a9bdac024d37cd984015829c53ea5e22a34c888172ba09f76 0.00 MB 1 0
85,866 85,866 000000000018cbd3c580606dba3cf7a82216b65b145074689cce48b9b6b6f78a 0.00 MB 1 0
85,865 85,865 00000000001dd1b9b83672f61e2f23705dd082994a4dc75c479c61f0af98ed41 0.00 MB 1 0
85,864 85,864 00000000002c715fa173b83057eb3ca0013a28620ab0550b2580bb9e042861fd 0.00 MB 1 0
85,863 85,863 00000000001a39ffdb1c3ce2c748b2469777048f8ea9274a0c2a0d296aa76360 0.00 MB 1 0
85,862 85,862 00000000002cd0144b7844252e32e2615ddf62f76a7224ffb7d0c2ac21dc93b7 0.00 MB 1 0
85,861 85,861 00000000000bd4ec43be994521577b8c7c0ab52b33b2bdac5202a54e1aaa50b7 0.00 MB 1 0
85,860 85,860 00000000001e0e724f643fd6cfe2d706f8b584c796c697b78304c9467f68eaa6 0.00 MB 1 0
85,859 85,859 00000000002030d8f6e31a3b6721215793bfb7aa10062f864256c3864e28a00f 0.00 MB 1 0
85,858 85,858 0000000000101f47ab2143cd87bb59eaefb4fc96fb7200eb10cc4242a4e37d54 0.00 MB 2 0
85,857 85,857 000000000001776c187371a8c7fc70f3dd88917e95446fc8152bb589370b5842 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 774.57 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,279.63 GB sent, 121.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.