Loading Tool

Explorer IconExplorer

Memory Pool

77,050 transactions (19.34 vMB)
  • 1 sats/vbyte = 30 blocks ()
  • 7 sats/vbyte = 18 blocks ()
  • 10 sats/vbyte = 12 blocks ()
  • 12 sats/vbyte = 7 blocks ()
  • 14 sats/vbyte = 4 blocks ()
  • 15 sats/vbyte = 2 blocks ()
Show Random Selection Loading Transactions
Max Size: 137.15/200 MB

Candidate Block

Height Target Txs Fees Size Avg Feerate AFR
912,726 000000000000000000022b910000000000000000000000000000000000000000 4,371 0.15898556 BTC 1.00 vMB 15.10
Show Transactions Loading Transactions

Blockchain

Blockchain Refreshing
Tip: 912,725 (722,493 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
190,232 190,232 00000000000008ab3223385f268ed5c612fbe0720572af68d4cf87154c5bcbd0 0.04 MB 107 108
190,231 190,231 0000000000000825ad6cd95ec3a020b1c413a6163bf039bc782055a4f4a10c05 0.01 MB 32 0
190,230 190,230 00000000000006b2ad485c6d8ba209caa115a91a5d7f287a34236b9552a10373 0.00 MB 9 40
190,229 190,229 000000000000056b189cc45454ab3ca2f3f96a494f9790399e970f4be32a1cee 0.06 MB 95 161
190,228 190,228 000000000000082a7a0f4bf24384155af7f7d27b59f538b078bb65a3c0f9ca87 0.07 MB 200 133
190,227 190,227 000000000000072e00ac906210f222c02246d053d7f8cecd39d365796f228a4e 0.02 MB 84 38
190,226 190,226 000000000000011e2ea199cd4930636caa7047ca55b946601e1fd3b8336d1d4c 0.13 MB 344 120
190,225 190,225 00000000000001a4b5d0394aed12d4f2c84944815fe7d3308be28fd1ec1809de 0.06 MB 174 166
190,224 190,224 0000000000000089dec09f1cccc29d8d7564b2324228e57c57774222566b7ce5 0.05 MB 128 110
190,223 190,223 000000000000014d8fbedcbeb28a143dbb8e2d7baada5679c4f897ba63369418 0.02 MB 69 127
190,222 190,222 000000000000082248cd1d6211e13dbfa852d27ae5e61b11ec3c42f4c342ff48 0.05 MB 120 107
190,221 190,221 000000000000068976b5abccad280c56fddcf8796e177d93e09bb86c71fae302 0.09 MB 230 140
190,220 190,220 00000000000008e12cf790cac474bbc2c6a0576dc4ffc02d329279be5467377c 0.05 MB 119 106
190,219 190,219 0000000000000079c800d8365a5b7c9f5a54546a1d05fa5ed9adc6085c7fb4bd 0.09 MB 196 123
190,218 190,218 000000000000009fb4a707e6122d6cf89550cafa6cac41f99c8cda7aaf3a0203 0.05 MB 128 394
190,217 190,217 00000000000002d478af5cc9c2fc3d733fd4be2335f2a6378e0ed643ed65e2ec 0.06 MB 102 102
190,216 190,216 00000000000002bce63140f9eb17a99c5b532b5c064508ffd21c730f1d196423 0.02 MB 53 98
190,215 190,215 000000000000012fae83865b8efedd826c5ff99e99c58555bc7adcc7674b9468 0.18 MB 569 160
190,214 190,214 00000000000006b90984bafbd447cf3f43d0ed14afe83b3763346a343bd07630 0.05 MB 139 155
190,213 190,213 00000000000002a76a0d0739185d73e6f18cfbcdb44dc9e1ac9c8327458a3d4a 0.05 MB 128 117
190,212 190,212 00000000000004b555094b6550571510f44c9a15da111fad6fa30328c094a3e7 0.09 MB 202 119
Previous 10 blocks ↓
Total Size: 778.35 GB

Node Details:

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