Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

217 transactions (0.04 vMB)

Priority:

  • 1 sats/vbyte = (9 blocks)
  • 2 sats/vbyte = (4 blocks)
  • 3 sats/vbyte = (3 blocks)
  • 4 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,648 000000000000000000022cb30000000000000000000000000000000000000000 0.03 vMB 153 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,647 (839,093 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
71,554 71,554 0000000000b5fce8fb019170b9436936924ac3c258d843f00cefcf179628dde0 0.00 MB 1 0
71,553 71,553 0000000000daeddeae1e32e186949436d147ddbae6c3537c2b2c4ae50ed2a002 0.00 MB 1 0
71,552 71,552 0000000000ce61c98b46ad7292df173188ef1c901f10d3ad039f6486c55440f0 0.00 MB 6 0
71,551 71,551 0000000000e26adb06e94e6ed972d88112ee132d3337858988c5bf74358d771a 0.00 MB 1 0
71,550 71,550 00000000007d1d21a7d51d85f1c13ef0b4efd8ea12776bdf25ee66dcb9115ebc 0.00 MB 3 1,934
71,549 71,549 0000000000d6a1e7d4ea5eca1ef85f9e549d2f9ded2cdc0e22198ff8db404701 0.00 MB 1 0
71,548 71,548 000000000023f85ea2c621b2c8c05ed6a1a4a7552b03d23e6df9a4b81639eca6 0.00 MB 1 0
71,547 71,547 000000000034acda4bdd6713777f7df915c73ff7d6120a82f91663f96b6c2846 0.00 MB 1 0
71,546 71,546 0000000000600c7f68bfe578c0aaca74bc1e3bdbccfb07a146cb4dd95370a61b 0.00 MB 1 0
71,545 71,545 0000000000fdefed4c897a9443fa97a1cab08d49c53d0085efb4eef030afb3d6 0.00 MB 1 0
71,544 71,544 000000000074d19f26b526ad524d12135510a1f1132dfdfb36e48140930156fd 0.00 MB 2 0
71,543 71,543 0000000000aaa0dda66f9398d03f6b9d9998dfb2495ddd2cb5e9f72ceab8b47d 0.00 MB 1 0
71,542 71,542 0000000000fbe1b725ac7e75f3ff9b09d788d006f0fa14666bbaef6feea7e5fd 0.00 MB 1 0
71,541 71,541 00000000000f516d5ad69bd5424fe0f4ba0160ba31568783ce857a64644cbcca 0.00 MB 1 0
71,540 71,540 0000000000f8d5ca971f467dc5a34063b21abd031d63a7676d085b10b97c5563 0.00 MB 1 0
71,539 71,539 00000000008e2d3c43dd59f0a3e846a097846461d02deb4b1ccce769466f9696 0.00 MB 1 0
71,538 71,538 00000000007cce3f4168ebee6037b8e9e97659dd1a6ebd5b8c633dd160dbcaf6 0.00 MB 2 3,891
71,537 71,537 0000000000bacc9f57c45dd92c16bd89a51da7a4925b3337b694d0a32675a855 0.00 MB 1 0
71,536 71,536 00000000006a89e966798a28a9e776e6d929b77be71a39df3656d7fa89e14f34 0.00 MB 1 0
71,535 71,535 0000000000621fe95fbce1198328e0fde1bd259a379ff85ad19c28d65021ea19 0.00 MB 1 0
71,534 71,534 0000000000f355a739dcb9d112b249ab74812a02009fb6ae399c17027a1800eb 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 774.57 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,279.66 GB sent, 121.45 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.