Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

20,735 transactions (4.90 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,068 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 2,547 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,067 (882,700 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
27,367 27,367 00000000c36b382e5d7b6315028117531e8640953078287e76b030baf0c32299 0.00 MB 1 0
27,366 27,366 000000003d07b5b73107360c5daf81bb0c608affe32de845e89204e98c2f9f94 0.00 MB 1 0
27,365 27,365 00000000fbd8dbb03243e8990d67fae2183a9a6fb2c926a135fa09fc39d28a28 0.00 MB 1 0
27,364 27,364 0000000015b67fdfca29fd2528c02ded738d5dc4f4af8320110eade211049211 0.00 MB 1 0
27,363 27,363 00000000b2d9fd1b8789258ae689ec3b38d9a8616c434f3333d2ac97728f3a7c 0.00 MB 1 0
27,362 27,362 0000000049e0846161a41c5314ad7bf2c0bf0ea6e82911d6a6bac9649af09de4 0.00 MB 1 0
27,361 27,361 00000000c6dc55a97968e15cc255e70755959d7ab76ae37e19849146d8ab7739 0.00 MB 1 0
27,360 27,360 000000005a212b17f9721b685a999333b2980888a69238e6b8fdc0dcd61441ea 0.00 MB 1 0
27,359 27,359 00000000f68e1c7baf81cc7a607007b57fb7c5328288148df8f96d3d80bdc781 0.00 MB 1 0
27,358 27,358 00000000606e49f205675f073020636721aaf0a8b04f3150e887c09f888ce415 0.00 MB 1 0
27,357 27,357 00000000ba1dd3925bcc4837c6b30d541aa6d00d0e6f595edd09faa2798896b1 0.00 MB 1 0
27,356 27,356 00000000849d748df868412cf67172c01e3c931fc63202f491bf349f5b4f77b6 0.00 MB 1 0
27,355 27,355 0000000066e47453439ff051f686a3c8f9f5f34b44ccbe6e28bea51592985f7b 0.00 MB 1 0
27,354 27,354 0000000018a16233b5312161396fca0b32f0b312145a96c93103fd7eb6a40953 0.00 MB 1 0
27,353 27,353 00000000a52530299d692838041b966d58149a0beb27c688266b8bc9eb2adcb0 0.00 MB 1 0
27,352 27,352 0000000053533cab0620760c175fc0e5265440b3fae7395a445c5d0ef4487ccb 0.00 MB 1 0
27,351 27,351 00000000de67a98f7d40564e405e5afe217b70316de881e5779b105867cd4582 0.00 MB 1 0
27,350 27,350 000000000cc5670ff8bbfe34119580157cc6ae7a2329bf1f9f39403a97526c6d 0.00 MB 1 0
27,349 27,349 0000000092d6846d016e32d9676e546367a9d34e80f3e7708100b5b6ce553e8a 0.00 MB 1 0
27,348 27,348 00000000dc215c02f6b577d346f875c40314444f8c7c447b487aef89270d22e5 0.00 MB 1 0
27,347 27,347 0000000067774efca07eea7d8cad169aa9ec682ca69232f393c2c9d7658367f1 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.52 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,186.63 GB sent, 116.08 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.