Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

1,787 transactions (1.94 vMB)

Priority:

  • 1 sats/vbyte = (7 blocks)
  • 2 sats/vbyte = (2 blocks)
Show Random Selection Loading Transactions
Max Size: 10/200 MB

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,827 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 1,021 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,826 (895,572 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
15,254 15,254 000000005a31c1b068e1901014466d13e7bb42e06dd6739b6f46d990b0a8ce73 0.00 MB 1 0
15,253 15,253 00000000f40148b04eb7ae2e6f9a7d0971a74a2153bac79661c1c3ca39d6b994 0.00 MB 1 0
15,252 15,252 000000003603acae77100eb5bb2339d634d4bdf7d79e704ff6883eacb164f592 0.00 MB 1 0
15,251 15,251 00000000d93f97198e088e7a76873e40f3c84ba65411bccac558ccf93617a3ae 0.00 MB 1 0
15,250 15,250 00000000d8c4945d66b0466a314879ceceee12fa7a8a0dae0ec48019854e3e49 0.00 MB 1 0
15,249 15,249 00000000a755c91be828e3dc5bf005258c51d541dec387f863170985c724cec4 0.00 MB 1 0
15,248 15,248 0000000022cebe81e5d9d3ee9d8fd54ef5027b5ec0eaaf2f8974efdc997f0f65 0.00 MB 1 0
15,247 15,247 00000000f5800c53d862af13288c50f8559ef5dd53e16d07fa03ba72947670d6 0.00 MB 1 0
15,246 15,246 00000000a2dc05bfbbfa2c47efb89e6f9c9cdd7003beafd8c91e86305ee2abae 0.00 MB 1 0
15,245 15,245 000000001bc419a8b0e3ce5644fb7c19b9f8df482a14effbfce0cac41e27e553 0.00 MB 1 0
15,244 15,244 00000000aeaac819091d3a8cbdebeb5104e8e916baeda122a97de4d24afd20e6 0.00 MB 1 0
15,243 15,243 0000000022444e1d3711fac005aca01ebe30929a4def72a2d74fba708a4b5278 0.00 MB 1 0
15,242 15,242 00000000fcad37d60284f306f16f8b08aea93efb5f75b53fb897a2f0ec644dbc 0.00 MB 1 0
15,241 15,241 00000000787bb5153d76225b438596b3fc01cf8a27beec9c9fb48c20b911edfc 0.00 MB 1 0
15,240 15,240 00000000f04152d889074dba178a9e48c24c4cd878b7c255b9ab24b9884b61eb 0.00 MB 1 0
15,239 15,239 00000000d8330bc3d3afcedd8f3210e40fdba42341a868d4e5df97cec40f55ef 0.00 MB 1 0
15,238 15,238 00000000616a9581c3562255dbff13ae0096e76df20e22178ef8d3a70387cb69 0.00 MB 1 0
15,237 15,237 00000000d991ecf66646bf8e17a9e20666aea7620b4c20a7bf9a85f832e2ea83 0.00 MB 1 0
15,236 15,236 0000000037c3860cfecd6e3662810fc9c1b6e87c54170ad305000bcb28c4adb3 0.00 MB 1 0
15,235 15,235 000000009f30a5cd49407e542325f8a89b92d3488df9b5e14dae149c6f688821 0.00 MB 1 0
15,234 15,234 00000000f7d5754fbadacfb7e4c2578a75fd30c03c5242212222adf035558799 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 774.92 GB

Node Information

  • IP: 162.120.69.182
  • Port: 8333
  • Version: 280000
  • Subversion: /Satoshi:28.0.0/
  • Uptime:
  • Connections: 11 outgoing, 114 incoming
  • Data Transfer: 2,323.73 GB sent, 123.31 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.