Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

13,605 transactions (4.13 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,694 000000000000000000022cb30000000000000000000000000000000000000000 ago 1.00 vMB 4,110 7
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,693 (896,526 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
13,167 13,167 00000000d46dfd75a072254b50a928760717fff28c664214c2f0e5ce7ab7cc03 0.00 MB 1 0
13,166 13,166 00000000951df4923d876c9329199bd8f2b28da4a8c55ada16ba57b918add3a5 0.00 MB 1 0
13,165 13,165 00000000f0a48981399a78d80e9dda94bb3df20a25fef08a019f0e7a339e09cd 0.00 MB 1 0
13,164 13,164 00000000c74f0037262908e996f1d43f1c4ee14209c0b5dedcfac18b359fb814 0.00 MB 1 0
13,163 13,163 00000000071e30a9fe7ada1d900d859a3bd7c4353e2dd69c51ba48352f144682 0.00 MB 1 0
13,162 13,162 00000000f15a030338862319499592e649e274f5c0388a3dd0cd41019e422aff 0.00 MB 1 0
13,161 13,161 0000000060cf28fbda7d5d23bbfb6a071bad4c611612deb62fae3641638a4f94 0.00 MB 1 0
13,160 13,160 000000008a78e4017b59fcb2f1cd9a46e498f682f37567cd13f8c935e0f55c62 0.00 MB 1 0
13,159 13,159 00000000a4319cbb6772dbb618f16d29721a96aea59c466daee4c1eac1275a08 0.00 MB 1 0
13,158 13,158 000000000ae472620751f9ab3f4fea5308ba8612f74d46ffd56d667cb3b562b6 0.00 MB 1 0
13,157 13,157 00000000d369e40d2d14ed65990b5530dda55e347c205aacaa5f2b87dd3fe7c6 0.00 MB 1 0
13,156 13,156 0000000075c9e6f22b6b484d40bcb858b8c7d62b29d0cfbbcd6d210d9b658081 0.00 MB 1 0
13,155 13,155 00000000fa11e457ffbd60d81beaeec8d9f3fc7e86e0b7fb062fddd0384ba4cc 0.00 MB 1 0
13,154 13,154 00000000c088e8e4a554da78508d012e2985e8fdc8f515367e5e390282c658a6 0.00 MB 1 0
13,153 13,153 00000000de1305f37a253636b801ee475fa23e1cfb56c82a43b98d38434e7c69 0.00 MB 1 0
13,152 13,152 00000000b65819b7530b683c194b1d3073c42c1199363c1c8e3d8a90a5361d16 0.00 MB 1 0
13,151 13,151 00000000e712ea03b1f899342282518da9f08bdc9592fa1580c540a9ef2a56a1 0.00 MB 1 0
13,150 13,150 00000000eb31d6f6a75b65cf8c308a53e978148728702edba9fddf4f08612c08 0.00 MB 1 0
13,149 13,149 00000000408a705ca4e80a6d44a44cbf96f2d5b8cea3146335ff1ca6859751dd 0.00 MB 1 0
13,148 13,148 000000002e6ebc7bc049d8c54cf93dcfc395605ca8a507b365a5f76e80335902 0.00 MB 1 0
13,147 13,147 00000000f7bee7fbb4a592640f5f01370b91937b6fe3de138b5627bf6db5ed1c 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 772.84 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,153.40 GB sent, 112.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.