Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

7,378 transactions (2.87 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,878 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 2,460 3
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,877 (824,594 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
85,283 85,283 0000000000191f64a2493f429206a12aa1e38a4ee1f9cdb012fbfe388bda9070 0.01 MB 3 0
85,282 85,282 000000000004c07fc9777709f3817578b9380e8aad9ee2f491bd9aed73526ab5 0.00 MB 1 0
85,281 85,281 00000000001baadff0b650d88e9dcdaa124370750faeea3f37a1be98184950e9 0.00 MB 1 0
85,280 85,280 00000000002d45f40bc98a94267840d061262bbecf311af73867e97a887332fb 0.00 MB 2 0
85,279 85,279 000000000007f9f993890b9fd51f281f130f392c47cee88afea12ba781d099d0 0.00 MB 4 0
85,278 85,278 00000000001b4579e907609dc7e9d5a774f4323d819087bc409364d5ea9da9db 0.00 MB 5 0
85,277 85,277 0000000000194fb9af4bc2d76124db4cce13913df77b46f31bb58a858812b4fb 0.00 MB 1 0
85,276 85,276 0000000000139d1ed90a91db7c6c60aa4680af21e9d48759954b8ddd33f23448 0.00 MB 2 0
85,275 85,275 000000000006d849630f7b133ba0a84b8ec3bb11b99507f62f4581fa5baab8ea 0.00 MB 3 0
85,274 85,274 000000000007b8ea02ca3f7037f9fb341042a29c7803761a39c6c006d56ef310 0.00 MB 1 0
85,273 85,273 0000000000112056f74f5d035ea09bf6837142a3247958e142adf63afacaaca7 0.00 MB 1 0
85,272 85,272 0000000000020d68764f5ec5d0509dc57667cf0a914d8bb553b8accfdf734cd6 0.00 MB 2 0
85,271 85,271 000000000004eab46bfa4611a4fc2412dd88483f3d0eba36f09448925013ed55 0.00 MB 3 0
85,270 85,270 000000000018a579a7d594b1bef70a8654e1a727d7b1906b02978fa028b0c937 0.00 MB 2 0
85,269 85,269 00000000002e61a2b0ea49421a6e86feeeb694149552e6957d5cdccb4547c4cd 0.00 MB 2 0
85,268 85,268 00000000000f47b4857d7ecc80908fc8d0455f59e81bcafa6e779668bd8a3cce 0.00 MB 2 0
85,267 85,267 00000000001219d9b530c0f2c0a498b892169bc6cdeed618082a800dc3e417d4 0.00 MB 1 0
85,266 85,266 000000000005ac1dce086ae8ad869a18ad2879dcdfe7996ad7aeae091e332e8d 0.00 MB 1 0
85,265 85,265 00000000001abc3b0cbe3886fa75df7e30a304dffeef89bcd19b589f3c8bcec4 0.00 MB 1 0
85,264 85,264 00000000001cc3db3da32a1dc0454fc3a980380ba0faa3d83229e14bf4f3ae52 0.00 MB 1 0
85,263 85,263 000000000020235f740e26d9bf4a47dd1a3beacb6f75d8ea9862d2308266e38a 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.17 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,170.67 GB sent, 114.24 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.