Explorer IconExplorer

Memory Pool Memory Pool Refreshing

4,149 transactions (2.05 vMB)
  • 1 sats/vbyte = (36 blocks)
  • 2 sats/vbyte = (5 blocks)
  • 3 sats/vbyte = (4 blocks)
  • 5 sats/vbyte = (2 blocks)
Show Random Selection Loading Transactions
Max Size: 9/200 MB

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,246 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 1,980 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,245 (901,844 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
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
7,392 7,392 000000008df9aba1fa38aa5f0e6de72505e3eedc41e64eb3f3bbeebbdb298122 0.00 MB 1 0
7,391 7,391 0000000054be77b2e8577df495a6ae01bff8b28ceacf7703296dd59816f10805 0.00 MB 1 0
7,390 7,390 00000000f7e56c76e349eb2276632451173d0ec0d5afc697612d42abdfde225f 0.00 MB 1 0
7,389 7,389 00000000030313ffddbcc77c0be213cdd03fd66e57de54dc90877aa5512cf46b 0.00 MB 1 0
7,388 7,388 00000000f7cae754b61022f00739d16d76387b62677e050e4cf533027e51421c 0.00 MB 1 0
7,387 7,387 00000000524557572e1f396e9c54c44bf7183c7c84d9286407ce823a994e8406 0.00 MB 1 0
7,386 7,386 000000003a3cf35ae842a1ec066d2ee285c22a32f48c442ec58e1e31d312bdd7 0.00 MB 1 0
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
Previous 10 blocks ↓
Total Size: 771.99 GB

Node Information

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