Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

1,785 transactions (0.56 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,610 000000000000000000022cb30000000000000000000000000000000000000000 0.55 vMB 1,778 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,609 (843,208 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
66,401 66,401 00000000060a9ceeaea83e7db168db52c816987ef071179105b66286d6159ec1 0.00 MB 2 0
66,400 66,400 0000000002438e2200bf993e46de0b8671c9de425988bb5ddaccc195e344e471 0.00 MB 1 0
66,399 66,399 000000000ace38a66a26430d3bb20958f9807ac638f395f7af3a30767496f2ba 0.00 MB 1 0
66,398 66,398 000000000831530be16e8c47fd9358587359cc7d5789aeb6661a03d5f38c7fbb 0.00 MB 2 0
66,397 66,397 000000000445e95c414a1ab6765468ac6c20bceacd63ce0a88649ba361e8e586 0.00 MB 1 0
66,396 66,396 000000000069cf4e4088d7727192b1c7087765d395a5cac1cfb5e3abfa707a5b 0.00 MB 1 0
66,395 66,395 000000000124761fb927e32bc587c4403b0c94b35e27775f96e8456e6cb11870 0.00 MB 2 0
66,394 66,394 00000000033395225a41b88e3ade6c9cd6232c308faa283eb706d03bec147e8b 0.00 MB 1 0
66,393 66,393 00000000000401fe2969afa189709d2b024188271b999879f0d339ceb49b46f6 0.00 MB 4 0
66,392 66,392 0000000001f669ee8862fba6c1ec2080b79d2acc3530ad15b08fc35dabb08f4a 0.00 MB 2 0
66,391 66,391 00000000002c9c00ac3fdb55a990dd7b9970374126524334a3c0922cc68f2ed7 0.00 MB 1 0
66,390 66,390 0000000009f5e1d6d39f931271bbed41be5e9bb3a9dc16a9a2cb045b8b18f5a3 0.00 MB 1 0
66,389 66,389 0000000006575557988dddac5a05cb6419113a07aa1dde9df9bb7c349503b746 0.00 MB 1 0
66,388 66,388 0000000000ddd3336092a85202a5ff6cdfff9002b78b4042c690ba3ddf3b023e 0.00 MB 1 0
66,387 66,387 0000000008327b759d98294762595fcb96fb00fed78d4674a679b821862842c8 0.00 MB 4 0
66,386 66,386 000000000a985e46e425ad9676b9f90d0ea1a0cfcd87fbe8c1d8418a2ff40a42 0.00 MB 1 0
66,385 66,385 0000000003877f8ad8aac1540b1efa71b2258edb5e1c0f982caaf06e2559c599 0.00 MB 2 0
66,384 66,384 00000000035398d712c1b2c018659d2915273ad2715f885ce130d0b9d9effbdd 0.00 MB 2 0
66,383 66,383 0000000003e2b7a6708f84687df651084d1190c3eea0c64fe5b15f00f2d524b4 0.00 MB 1 0
66,382 66,382 0000000002f99c9e53da8c8547d402b6f917caac5b19e3aa8e63e3f92a3d5b03 0.00 MB 1 0
66,381 66,381 0000000005c537cd80a66d55aaeca1df0ad0dc6ab2439c274fdb01cef0774752 0.00 MB 7 0
Previous 10 blocks ↓
Total Size: 772.69 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,101.20 GB sent, 111.72 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.