Loading Tool

Explorer IconExplorer

Memory Pool

37,521 transactions (9.59 vMB)
  • 1 sats/vbyte = 30 blocks ()
  • 3 sats/vbyte = 18 blocks ()
  • 12 sats/vbyte = 9 blocks ()
  • 13 sats/vbyte = 7 blocks ()
  • 14 sats/vbyte = 3 blocks ()
  • 15 sats/vbyte = 2 blocks ()
Show Random Selection Loading Transactions
Max Size: 68.84/200 MB

Candidate Block

Height Target Txs Fees Size Avg Feerate AFR
912,752 000000000000000000022b910000000000000000000000000000000000000000 2,582 0.02937628 BTC 1.00 vMB 2.22
Show Transactions Loading Transactions

Blockchain

Blockchain Refreshing
Tip: 912,751 (696,972 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
215,779 215,779 000000000000005ebf9c541d9736af20c047206de6707de89376717c08ec0f38 0.23 MB 216 94
215,778 215,778 000000000000042370998ed7010ee98f8a9f3e8d95ae9bea864c87e698e0c84e 0.17 MB 346 149
215,777 215,777 00000000000004d1246fc82db574de41b3c0ed332ce82d896d291b9e9494c726 0.49 MB 444 103
215,776 215,776 0000000000000457ce8541f6d01cabe44f7461231848d166755528127f1a8a6a 0.20 MB 320 122
215,775 215,775 00000000000003b19ca78aaf0af5b07f01ed6bc17411a2f9b76233592ab1c98e 0.20 MB 631 270
215,774 215,774 00000000000004c882689447cf68378b96491dd848490164a3476b1ff7fac0e3 0.46 MB 723 111
215,773 215,773 0000000000000377464efad50bdcae3c1d8974af185af869263bf876c9372304 0.27 MB 236 112
215,772 215,772 000000000000013b45536c5122c5828abf07c968ff36a3a5d0325d5b2e0cf791 0.20 MB 617 234
215,771 215,771 000000000000007f8fff5c659a968e215f02c293c0dfed843f3248032301642c 0.27 MB 379 134
215,770 215,770 00000000000002964da5a8d9f2d21f28ebbbdf25e59ccfc808781b775bdb1bbd 0.07 MB 156 141
215,769 215,769 000000000000024839143f128e237bfb0b2dff3fdb323d31282b04918f34fff2 0.09 MB 194 155
215,768 215,768 000000000000044f425a6cfdb1497f6b34fca0602e68530baa150c3ed6fd78b9 0.11 MB 264 152
215,767 215,767 000000000000027f00b665ccef7fef790f37a0067dee41f524ec0fa67eedd6cd 0.00 MB 9 0
215,766 215,766 00000000000001667704c36545324315c84664b93f6ed2d6b7e07092dcaf0c8a 0.25 MB 196 79
215,765 215,765 000000000000026074642bfcd22445c2b99b3c1d2b98c9006564577734c11a9c 0.24 MB 447 149
215,764 215,764 00000000000003e40f25074c5da32b943ddca8ef5e3b164b6b54d1f0d7df0a41 0.25 MB 718 202
215,763 215,763 00000000000000a5fc8bbfff3b69ab5ac584bec57a8fdcdfed485710b0305e73 0.27 MB 305 148
215,762 215,762 00000000000002a9b6d799b2f1d8c74af4203fcf7a550ba83545d5f7dcc68e39 0.05 MB 133 91
215,761 215,761 00000000000000cd34277c798fa34c996d9b7899faebc7fb24dc0a6bfdc96e4a 0.24 MB 233 105
215,760 215,760 000000000000005a23f724a88a5ced15f94e67a6dc552d88100ad060f7d7de5e 0.23 MB 412 119
215,759 215,759 00000000000004ad04b6f9d4fcce4f2a16f1f4e89d1b8f6486ee413e93a1d894 0.14 MB 294 151
Previous 10 blocks ↓
Total Size: 778.40 GB

Node Details:

  • IP: 162.120.69.182
  • Port: 8333
  • Version: 290000
  • Subversion: /Satoshi:29.0.0/
  • Connections:
    • Incoming: 82
    • Outgoing: 10
  • Data Transfer:
    • Sent: 139.71 GB
    • Received: 1.47 GB
  • Uptime:

Notes

  • 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.