Memory Pool Memory Pool Refreshing

22,202 transactions (5.55 vMB)
  • 1 sats/vbyte = (36 blocks)
  • 2 sats/vbyte = (8 blocks)
  • 3 sats/vbyte = (4 blocks)
  • 4 sats/vbyte = (2 blocks)
Show Random Selection Loading Transactions
Max Size: 34/200 MB

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,197 00000000000000000002349e0000000000000000000000000000000000000000 1.00 vMB 4,170 4
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,196 (901,783 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
7,413 7,413 00000000b7fc62d6c21633ede9a7c12b31527973bec7b05ef3a7347f115ad8c6 0.00 MB 1 0
7,412 7,412 000000007ffb4d401f726962314e5163331eb09abfd7b2acbbd9cf2e63477769 0.00 MB 1 0
7,411 7,411 0000000039558e5b2dbc2357daeb5589fa90f4809654631ae776b2e0c0537f3b 0.00 MB 1 0
7,410 7,410 00000000f98177cda4c7ca8b0bcb3f7b7b65ab17ae0a47f726b318a589bcb01d 0.00 MB 1 0
7,409 7,409 00000000f11aada81f5fb61607a51974b524f009d8efaa7e5897f0909201daa8 0.00 MB 1 0
7,408 7,408 00000000ce6813da013d842373094bab6d605c902cbc120739c9b017ce5d02c4 0.00 MB 1 0
7,407 7,407 00000000f987d459a18c8c1b46fc1ab96d85a1e9f94e8273a2fc93cf0060e1e5 0.00 MB 1 0
7,406 7,406 00000000ccc4a77183aba7a1908236a8e93890fb2e69e74d67344262b18583eb 0.00 MB 1 0
7,405 7,405 00000000405b854cab1a2522e3c78e0af016ac98cf5f223f1ee85f56f9ece3e0 0.00 MB 1 0
7,404 7,404 000000000a57f553200b9e3f48d7ad22ca71ff844dac64415964876d0c790c14 0.00 MB 1 0
7,403 7,403 000000008d21062d92193f0ba21e2ee4adc5d959eb335c0ae8970c1bcb014b38 0.00 MB 1 0
7,402 7,402 0000000090f5509d7cb00ed38b1ea0e48aa311ca72b7e1225216d336b25e9248 0.00 MB 1 0
7,401 7,401 00000000faede889e3a01b997f793321c0b482da1b4a019386f730427d7370b6 0.00 MB 1 0
7,400 7,400 000000007f2bdcc71d60336ec1636e0d034d73362b86bd75256b4bdbddbeae78 0.00 MB 1 0
7,399 7,399 00000000ee3e5d6b3003677190edb6b43459eddfab9211072b22f26968b1c3db 0.00 MB 1 0
7,398 7,398 00000000b2dbe08506622dfe67e00afcd15f202d8a27f8971f45adcdfd03d22e 0.00 MB 1 0
7,397 7,397 0000000039989e90ab5f258f9f64b385a9ee5d7d4aaea1bff29b10b9867489bb 0.00 MB 1 0
7,396 7,396 00000000bbed24cd71f0648b28b23d9c8f435fefbfc52653425bee41797c05f4 0.00 MB 1 0
7,395 7,395 000000009eb616300c00990dfe813ab0f307e9a482d7d3fbc1c59463b2555a09 0.00 MB 1 0
7,394 7,394 00000000cbf4c042e284afff2148447817937c71e378bd3aa2e13778ed4bc6de 0.00 MB 1 0
7,393 7,393 00000000757a306d33e554ced26a05c31c7c9e845dda17c4d316160e29a86fa3 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 771.90 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: 1,999.65 GB sent, 107.34 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.