Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

239 transactions (0.08 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,092 000000000000000000022cb30000000000000000000000000000000000000000 0.08 vMB 239 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,091 (884,380 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
25,711 25,711 0000000003ce99840498a8e51ff521ee23d67205d4c4d117cd88902ed78f0827 0.00 MB 1 0
25,710 25,710 0000000066c8e65fcf3447b1482fded3c56a38f1e1cded17dda497929ead892f 0.00 MB 1 0
25,709 25,709 00000000a9df7235b1ef8d16bb6d8acc7b5033353360c9f1f7f209d4c030efd2 0.00 MB 1 0
25,708 25,708 000000004fd7e88df986a59578636a36572f8e77b495c28d2a7a2f4429e81fd1 0.00 MB 1 0
25,707 25,707 000000007dfa1343181719873171a2622c5590377174662e6960f8c2e5770671 0.00 MB 1 0
25,706 25,706 00000000585b2d89099615e30244c650413ff35187bcd1da1ee0e7ab4d450007 0.00 MB 1 0
25,705 25,705 00000000fcf62fa0c3e1b639ef01bbf8cafd86ab9fdc084c4f9dd995fccd6979 0.00 MB 1 0
25,704 25,704 00000000a6a0a7634389c31a3eb43cd1cb86d4c902db91ede8cbac04c88ed9bb 0.00 MB 1 0
25,703 25,703 00000000ab72e5523c00ebd7fcbb6240f76245a0a70667e89b2eb550647a9d9c 0.00 MB 1 0
25,702 25,702 00000000d4f3dccf8c2262f23f839ea0ea8a5fff30937d7c5c54bda40304c238 0.00 MB 1 0
25,701 25,701 0000000027599ce55a892d15ffc56eda9eb55f9a4ed2c1c16075e13febeaf623 0.00 MB 1 0
25,700 25,700 000000003ee2fa1f7955c68e728090e5177135478fd727bfadd05d88d0f6c264 0.00 MB 1 0
25,699 25,699 00000000ad41f60058e053a75bdbbd04ede46f7ca1d9e80c8b38779f99c76d28 0.00 MB 1 0
25,698 25,698 0000000022949222e36c22e5d253a082c3cd5658045ecb36482feda8662b8825 0.00 MB 1 0
25,697 25,697 00000000ef5d91369cfdbd8688353db39b43c2766b8cc62d5e71a7ec9effa992 0.00 MB 1 0
25,696 25,696 00000000b774dbf9b583b479ba34f4290528f79677bd2dd5f3f83208b804a4e6 0.00 MB 1 0
25,695 25,695 00000000a3abb8ea67f9195497d47c406367afc5a025755e36f427a08bd2cd3a 0.00 MB 1 0
25,694 25,694 00000000f189a245a625546df6b5c39ab4b193d9d73deb12fa4b91e28271a43c 0.00 MB 1 0
25,693 25,693 00000000ac84e8376c56a06dd6e7c12b885bf91c0cb1d96560a15d75b1a2e759 0.00 MB 1 0
25,692 25,692 000000001dec53fe7d3848a27748eefd7e84bf88162096121be758e79b602856 0.00 MB 1 0
25,691 25,691 00000000d6fb6f1f62d4e7f6ae3d46aa9c7afe29a1a43024e98588136355f346 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.56 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,187.93 GB sent, 116.27 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.