Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

2,996 transactions (0.87 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,592 000000000000000000022cb30000000000000000000000000000000000000000 0.86 vMB 2,976 1
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,591 (824,155 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
85,436 85,436 00000000002daee3fc20a88b60bcf7e1e5cf66b55d9a5e387fb099feb4e0e6de 0.00 MB 1 0
85,435 85,435 00000000000a8c8c2c4bc7698721560857ccda29de12a205924600471851dcb3 0.00 MB 1 0
85,434 85,434 000000000008a36d33d1f395669008a120f5e29230e921200acd95654e334917 0.00 MB 4 0
85,433 85,433 000000000010f3741eaba20ea1ab509dcd6d7e14a4ef5dce7c534520cfa6071c 0.00 MB 1 0
85,432 85,432 0000000000227cd1fa20f11f1baa10091bad7ccd27899a146a5a08727ecf7d87 0.00 MB 7 0
85,431 85,431 00000000000b509c613fb6c8ffbbbb2c1d25083fb500d00c7184177759b98b65 0.00 MB 1 0
85,430 85,430 00000000000b06786b33a2d18efa742ee439d7bb74aa8b87e927790694bdb37b 0.00 MB 1 0
85,429 85,429 0000000000245739c13e7cefcc1284befdc17e6ec21827ad4b92fbc5d0941170 0.00 MB 1 0
85,428 85,428 000000000003b7dc7273ed4be9528b8534dbb2858297a50438122c7e76689ac4 0.00 MB 2 0
85,427 85,427 000000000004e6c9d5c5e367df526e3008e25f322fa9f46869214dda1bef9285 0.00 MB 2 0
85,426 85,426 00000000001def6e7dc34bc8965d0dcd498dd8e2257ad9a85f3f45b45e84b757 0.00 MB 2 0
85,425 85,425 0000000000232a29aa4fce9cfad60f07729e6c9bb984f9aaa9be9cc0320377fd 0.00 MB 1 0
85,424 85,424 000000000027e4290809e0c7cde3483b600dd9e85fc0f235be05fe0093adf726 0.00 MB 1 0
85,423 85,423 000000000012a963659fd223728643292a9a5b1d19f314739b20a73b03de43df 0.00 MB 1 0
85,422 85,422 0000000000252f38f47530fcc8b45a263e6ee7c407e0173868ade138b17bdbe4 0.00 MB 3 0
85,421 85,421 000000000010ce04ce132121dc0c4489a0d14c5f54cf33c76a337ab6360de83f 0.00 MB 1 0
85,420 85,420 0000000000270d011567be36f1d090a4eaa70b066524842d44aa3e079ecc343c 0.00 MB 1 0
85,419 85,419 00000000002029f142639abed96c7a5fcab4db802b9dfb90073ba65fd4c3b399 0.00 MB 1 0
85,418 85,418 0000000000149fb4b9d19fecdc548ac66ce3b0f30eda8c4dd46e488bb084bd49 0.00 MB 5 0
85,417 85,417 00000000002b7acc3b4301b6345b2cc29dfbc238e4afc78a89c20a0272eb5324 0.00 MB 3 0
85,416 85,416 00000000000bab48ef353f8321324d3233bfacbef5b118be84f3ad6e81663311 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 772.65 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,095.84 GB sent, 111.56 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.