Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

5,460 transactions (1.63 vMB)

Priority:

  • 1 sats/vbyte = (18 blocks)
  • 2 sats/vbyte = (4 blocks)
  • 3 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,104 000000000000000000022cb30000000000000000000000000000000000000000 ago 1.00 vMB 3,504 4
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,103 (887,739 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
22,364 22,364 0000000092b7827a88ba01ef9e603b6607e0e4f3edb78335c8bfb18d304dd281 0.00 MB 1 0
22,363 22,363 000000000911768a9ca95994bceefbc7e44abb0056f0191a011d23c490a9d622 0.00 MB 1 0
22,362 22,362 0000000050688aea75dc43ae587b56c30e4d161b360a00c5520fe8114aa81c17 0.00 MB 1 0
22,361 22,361 000000009ca27e594fd6dc55ed36b5b5adfa5157aee7334834f0b654b5ef8a94 0.00 MB 1 0
22,360 22,360 00000000495e99ada38d8d122c329b7a5cf1eab1cee474868fc56fd0b819c7dd 0.00 MB 1 0
22,359 22,359 00000000ca5a6eb7f89814d34db833b6603cbdbdb56181b1a25004c0cdfef371 0.00 MB 1 0
22,358 22,358 00000000c46dae8c5b6202881d5c5ac33dd6d5d3f1835ed58c9b2d0803d3c01e 0.00 MB 1 0
22,357 22,357 00000000fa1ea5d66b60f3148877957fcd0cebdfd26dbd179b3f1a768af58ec3 0.00 MB 1 0
22,356 22,356 00000000ad0da8ba0c1903e1941f321be8364d8c60b9279bb38b843dec4d2196 0.00 MB 1 0
22,355 22,355 00000000f1798f9e5d7881d0acef58934bfe2c8c32304b65dad3ab6cd06713e8 0.00 MB 1 0
22,354 22,354 00000000f85a06dc8b56a97404596a4935b884e85109874f3b429f7b47e1bafa 0.00 MB 1 0
22,353 22,353 000000007cfcb6c6e465ca47135b122ba0526878c375807fc19ed3b8cbafca44 0.00 MB 1 0
22,352 22,352 000000009535523341b96fcd68acfaa66f37abd694c880cfd8bf089e00839d81 0.00 MB 1 0
22,351 22,351 00000000b339970f9e53a4e147cbd4c6259c438546309bf0a7df05015af60b44 0.00 MB 1 0
22,350 22,350 000000006bb5f31f067c6f90da0dd3104ccc05a54aaab802bb2e976b30a4b63e 0.00 MB 1 0
22,349 22,349 0000000017000eff199fcad4ee03ff1f434e7ac9c4734c307ddaef9db5c9001a 0.00 MB 1 0
22,348 22,348 0000000086f486f7909181f5ddfa4c5df1794fa741d5dfee066dc6686258693e 0.00 MB 1 0
22,347 22,347 00000000281e02d5c645e65ed7511e30881dbfe39c2c4d52f1b5f19195d79455 0.00 MB 1 0
22,346 22,346 000000001bd9dd0e2dbbfa86b03d4b33497a2c0ed8b260641d9e5c91a104a4cf 0.00 MB 1 0
22,345 22,345 00000000941cd852b6714b62618f337ade7dc0a318ba69240fb3f785e0a9cd8c 0.00 MB 1 0
22,344 22,344 00000000bd940bb0c453c791009c5686f8a5ec7944a2ee859ea1d47642dcfc29 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.58 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: 2,188.89 GB sent, 116.41 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.