Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

505 transactions (0.16 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,127 000000000000000000022cb30000000000000000000000000000000000000000 0.16 vMB 498 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,126 (887,753 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
22,373 22,373 0000000075dad7148a758f9d1ffeb319665831e0b59a8c8798268c4705706f5c 0.00 MB 1 0
22,372 22,372 000000002486187b56430e9e970577bcba5cf20cc832c504a7897ced1c4e2772 0.00 MB 1 0
22,371 22,371 00000000bf0c15b17d6d1a8e93d938465698be02423cc526b293f912d7fdda75 0.00 MB 1 0
22,370 22,370 000000007110a25797ebc110484f573354e36f43e25df413b1cf01771529f5f5 0.00 MB 1 0
22,369 22,369 000000008856c5f2ad38c84d40360e69bfdfab3b572ae9f1e41255bd69b936cf 0.00 MB 1 0
22,368 22,368 000000004f39ca96fc6cf1b0f74574f7afb617cbcc45e926b6e6e32b931077b7 0.00 MB 1 0
22,367 22,367 00000000c4eec647b44b3ce68b7cee1c3afa563e8e1aa53e06fb9c8440130c2d 0.00 MB 1 0
22,366 22,366 0000000082a8e43f0abe29046f357bcc3b8cc2c2c62b0aa971785cc647ec4dc9 0.00 MB 1 0
22,365 22,365 00000000eb983bb9bd97ba8f934d03743dd1f2b2ccdf79d22317ac0eed383f1b 0.00 MB 1 0
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
Previous 10 blocks ↓
Total Size: 773.62 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,191.26 GB sent, 116.60 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.