Loading Tool

Explorer IconExplorer

Memory Pool

57,252 transactions (13.00 vMB)
  • 1 sats/vbyte = 18 blocks ()
  • 2 sats/vbyte = 11 blocks ()
  • 7 sats/vbyte = 7 blocks ()
  • 8 sats/vbyte = 4 blocks ()
  • 9 sats/vbyte = 2 blocks ()
Show Random Selection Loading Transactions
Max Size: 94.19/200 MB

Candidate Block

Height Target Txs Fees Size Avg Feerate AFR
912,708 000000000000000000022b910000000000000000000000000000000000000000 3,929 0.09207268 BTC 1.00 vMB 8.30
Show Transactions Loading Transactions

Blockchain

Blockchain Refreshing
Tip: 912,707 (684,592 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
228,115 228,115 00000000000001b2d943eafca438b0801795e481e64a8beb6afaf597932dbdf0 0.11 MB 248 1,965
228,114 228,114 000000000000012bdf82077a87b25fc6618d644e77f841cfe1dc7a543ee5b5ab 0.15 MB 282 149
228,113 228,113 00000000000001263de355715b70eb5dbaca010e87c7eec5a097a9405cc55ed1 0.16 MB 192 21
228,112 228,112 0000000000000040623a241d9fca18d3b47e83950d2ab8286e77db4977493a9e 0.21 MB 386 158
228,111 228,111 000000000000012b60e40aadb506888ab283de72a03a18ec625e26ad94d40933 0.10 MB 256 229
228,110 228,110 00000000000001309a16ead57cb3a82bcfa082862179c7f9ebddd48263938022 0.09 MB 256 183
228,109 228,109 00000000000001aac4bf865e387ba1c1464b46de76f873906c1636aee1ce48c0 0.15 MB 369 217
228,108 228,108 00000000000001772badc3ecb0cf451b6fc2038d2a43bc925094e3121e36ddbd 0.06 MB 128 150
228,107 228,107 000000000000008a28e547f4b66341b3b5a55c656b66ff197ed7cc5abbfeb7f7 0.23 MB 273 123
228,106 228,106 000000000000027a08013adbf11d58ae57ff3afd76b9b7ae705a5aef77c14b65 0.07 MB 96 227
228,105 228,105 00000000000001698fac449d96f7c109b0ec11e38899051f0499d50a98d45ea2 0.10 MB 86 38
228,104 228,104 00000000000000b8a0b73eeec1cd9652c14c00bd7e39b257c3e2c064ccfa7c6b 0.15 MB 242 107
228,103 228,103 000000000000008caf1233eb49ce97b6030e17ea6e79098804c253a56c1d1315 0.15 MB 317 154
228,102 228,102 00000000000000b741e8979588d6e984ad1e6411603aa19edb90376fab0af0b5 0.00 MB 1 0
228,101 228,101 000000000000001f5d31a74c56a5c1dfabe3a7ddc36eca233f5a347f666e2903 0.15 MB 223 714
228,100 228,100 000000000000027a503a6cf36ab841612e7834c19868ef73227cd5d58c05a761 0.20 MB 378 136
228,099 228,099 00000000000001b54cd45bd856f04c7689824934ffcbd8f42f0660ccbb1e2753 0.25 MB 734 213
228,098 228,098 000000000000027e23707e8438def386322fdcfd0598a224e0af1b45a1e40294 0.04 MB 115 73
228,097 228,097 000000000000025d6f0cd4bdda30fdad631182a167fe31495e626f717aa150ef 0.13 MB 311 189
228,096 228,096 000000000000013078730c95df218fcd54f414efdd5970c722335d273efb2acf 0.23 MB 537 168
228,095 228,095 0000000000000211ae7ba634d899b7d2d7639b0e953aeaac712296352963cd48 0.11 MB 263 159
Previous 10 blocks ↓
Total Size: 778.31 GB

Node Details:

  • IP: 162.120.69.182
  • Port: 8333
  • Version: 290000
  • Subversion: /Satoshi:29.0.0/
  • Connections:
    • Incoming: 81
    • Outgoing: 10
  • Data Transfer:
    • Sent: 117.40 GB
    • Received: 1.12 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.