Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

2,711 transactions (1.30 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,944 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 1,631 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,943 (844,563 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
65,380 65,380 0000000003bb3be7557e8c801f9374e2c78b31cd690bb4ab065cba902aee818f 0.00 MB 2 0
65,379 65,379 0000000002d259e0db829cd7c8ee18bf3aaf7654a086e7a3ae65e937c8d6e689 0.00 MB 1 0
65,378 65,378 0000000001246ccb8db803aa7ba19838dabc94866009bf6166baac3960f4b444 0.00 MB 1 0
65,377 65,377 00000000020500dfbcadff1186e4e89212a70200a0341226006b7ca67a155d3e 0.00 MB 1 0
65,376 65,376 000000000082eb5e1d4bd1325c8b9b506917b3c927cfc3ec650334e5a75e3144 0.00 MB 1 0
65,375 65,375 0000000005c6d8ad8cc80dabb4fbbda5f65c702a9136e2f6dd33024d7ba14976 0.00 MB 1 0
65,374 65,374 000000000492c1f09871861bfa82ccb8db58e3e6339ba74b416edd17bea116af 0.00 MB 1 0
65,373 65,373 0000000003cd3754b8bfb53bb9a8ca73d4976278ca53aabe99ee233c863d5ead 0.00 MB 1 0
65,372 65,372 0000000006b7b15f7809d5efbd7ec1487dce644514589753d32d81d34c3af959 0.00 MB 1 0
65,371 65,371 0000000009786bfd2c905646366097efbb5d7ba5d2cbc1ad6a0d5047108d2e0f 0.00 MB 1 0
65,370 65,370 0000000006a1554285130717a3642fc167ed3a6dea5d1683af20a91eb18d602f 0.00 MB 1 0
65,369 65,369 0000000006ad7dc0a71ed0a4f97c21c776694a4521480373eaa1638d539fbfd9 0.00 MB 1 0
65,368 65,368 0000000008e6cf04571e455ee2ff947e4651fee7ddc8e41f7125c8a2ffc742cd 0.00 MB 1 0
65,367 65,367 0000000006ba14abe422898ccf346fe2eeea8e678c1150651d6b8814eef41d04 0.00 MB 1 0
65,366 65,366 0000000000daf47f23209d646b9824c1be3fbbd1abb8fa613fff01e7264f6297 0.00 MB 1 0
65,365 65,365 00000000070c8e359f281b5d3d4b08fd5f1fc7043e41e4d6dbeb7759a47f72b7 0.00 MB 1 0
65,364 65,364 0000000005aa70b18d54003bdbe7b6660d9f2fff735f5496fdaeb5ee8f54fca9 0.00 MB 1 0
65,363 65,363 000000000179b104097fe20552c5a337e24c8d681f83bec212e99ec3bc348ed4 0.00 MB 1 0
65,362 65,362 000000000019499661c161b9b75022a4f4e8d8e936528ebd82398563f189421c 0.00 MB 1 0
65,361 65,361 0000000008dc157e561ec04306485f5871c8b085942b5a6bbb775169d0786670 0.00 MB 1 0
65,360 65,360 000000000740212690c1c4c411746e5070fc1df2d8772598b1db76fdfda4a0f0 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.30 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,175.50 GB sent, 114.86 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.