Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

16,515 transactions (5.56 vMB)

Priority:

  • 1 sats/vbyte = (4 blocks)
  • 6 sats/vbyte = (3 blocks)
  • 7 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
909,697 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 3,708 6
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,696 (844,295 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
65,401 65,401 0000000009f7cbf88ecef909f53992f3d8b56143b9cb7c94efedaf2f2a13244d 0.00 MB 1 0
65,400 65,400 0000000002c1747abcd12293082c60434db184e4363a98015a0b9b8bff5fb94f 0.00 MB 1 0
65,399 65,399 00000000080fd409ec7300a688c638b0f12c7cf036ddb5d633043c9795d3980a 0.00 MB 2 0
65,398 65,398 000000000892cc3c13c4e31e0a4d4341d707dd17fd1d5e9f5c65239582519acc 0.00 MB 2 0
65,397 65,397 0000000003dc15bf4132840b00c91bb1f07bb766a230d71cdebb663f5a6758be 0.00 MB 2 0
65,396 65,396 0000000001b11b5db41b2248c88c0e6ede2c6fde8dd42bbe235941ad14add321 0.00 MB 1 0
65,395 65,395 00000000063a5c31f68b65d224d85bcfae559e918650639b2d59e6917e156dc0 0.00 MB 1 0
65,394 65,394 0000000005cb048342db8f8906554576d5ccf7b6952969c5a2a0de9e197290d0 0.00 MB 1 0
65,393 65,393 000000000848be214c911b21369dbce7ef6dd896e6a1525b01205f781f58b1df 0.00 MB 9 0
65,392 65,392 00000000078ac8e509a6007bbc3a1c35668678fd980e3089f7e4b6a166973f50 0.00 MB 1 0
65,391 65,391 000000000800aab0e9e16a0247860a55705d4d364a66e63bedb5a7ceed12e75c 0.00 MB 1 0
65,390 65,390 000000000ad41f4527002fed038d6f3ba10d204c220604be787e95e32526ee1d 0.00 MB 1 0
65,389 65,389 00000000026503c6c9d2b9862f3ba3039a2ac3bf9e87947ce1e5b7e2b058f0cf 0.00 MB 3 0
65,388 65,388 00000000015946e45ba134ce9b93762fe56bb7f92f8267948993432fe57c4230 0.00 MB 1 0
65,387 65,387 00000000067e7d5e3c55b840de43feaad0e1bd04355833b48efc3fb85f873771 0.00 MB 1 0
65,386 65,386 0000000001b911f868a37bc6fd0ee9a21c4915123903c934338d4227fb0a4bde 0.00 MB 1 0
65,385 65,385 0000000008bcac6d4f0b2fc43fa180e608fb637ae05eb49eaea2d8740384efcb 0.00 MB 1 0
65,384 65,384 0000000003685f4023fa3b29c0dc581913604e1c003460344515c064dea5fbbb 0.00 MB 1 0
65,383 65,383 00000000037231715501a31699458787c1230fc58f89c3c4df5cd394d97f888f 0.00 MB 1 0
65,382 65,382 0000000007a2e0ae7a98bd6c66cc6b376a64c311d947bd6e042c9ff2751ed5ff 0.00 MB 1 0
65,381 65,381 0000000008fa35ed5dca62c31f59383be8ed0426fd2f18c6278c6a68c58a29c3 0.00 MB 3 0
Previous 10 blocks ↓
Total Size: 772.84 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,155.24 GB sent, 112.62 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.