Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

14,435 transactions (4.50 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,865 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 3,598 6
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,864 (854,260 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
55,604 55,604 0000000008e358ebda060617b50f3df4d858eb672ac4dbe8df79c1f3e88efe69 0.00 MB 1 0
55,603 55,603 0000000009eb4ac264d843dc4f24fc2a40ca07f4e788d3a5bcd9a56fe2408147 0.00 MB 1 0
55,602 55,602 000000000ce90f199fbf9f2de5dc763e4d51a43faf724e0c98d7cf253bf39723 0.00 MB 1 0
55,601 55,601 0000000007c50950aa28ebb30aff51242a0dac4639641adf9aafda75524ca7ee 0.00 MB 1 0
55,600 55,600 000000000c9963ab5431ad9f8cea6e6a16bc1676bf1d5f788285efc592503a29 0.00 MB 1 0
55,599 55,599 0000000006490bd275ea1eda1698db85c35fd911f5ed320f5ed5888251602146 0.00 MB 3 0
55,598 55,598 000000000ba19c811d203a7300e7985dd5424fe1c9b30089d1a44339b44bacf0 0.00 MB 1 0
55,597 55,597 0000000004e0c8feb50d86be17d8a3f19ddff0096243a01e9aa416d40433840a 0.00 MB 2 0
55,596 55,596 000000000dc4313eab3063e1450aebb4b476a854a08cbe8e85a1c2ac1376a1af 0.00 MB 1 0
55,595 55,595 0000000006a4b5651ba26049b34fedaa9c1d54c03c89f6260560cb04230d6595 0.00 MB 1 0
55,594 55,594 0000000009bb4fdd853f4a79e67151253075b6801b01c307cd81491ae3898d14 0.00 MB 1 0
55,593 55,593 000000000000b545d467b95ad844b8c718f9b76e9426e4efab7e097ca09a83da 0.00 MB 1 0
55,592 55,592 0000000011679ad5ca2ca1c2ca488697eb0102b29e1191dbfb3d96a468d3e19c 0.00 MB 1 0
55,591 55,591 000000000419346329fb15e00779982235c17a136cb7f5484caeb87df510cf29 0.00 MB 1 0
55,590 55,590 00000000134729d47fe33263646b62af491de565b119c2988170c758c521e821 0.00 MB 2 0
55,589 55,589 0000000002533a6e765f6e8960cbfd1c88b015308d51572c419af3c02d29fa4d 0.00 MB 1 0
55,588 55,588 000000000aabb1d4391c1f79e762a3396c026b979cff2c2e61137898c1b4e69c 0.00 MB 1 0
55,587 55,587 0000000012aa7b5e1b2f222e6c80db12beb3953bd3e7c1b81ae2c2c11907e7f3 0.00 MB 1 0
55,586 55,586 00000000082c61a278401aabb27c4a4655d7aa36ca28ca907a9762f3227a3595 0.00 MB 1 0
55,585 55,585 00000000129b73db9b65d77f0db620b3b718053286006d40f9f70b8cf25c3657 0.00 MB 1 0
55,584 55,584 00000000003f0f1c44be76a82aead8d53b3f97bc90b9bfab58b759f51321e1de 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.14 GB

Node Information

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