Loading Tool

Explorer IconExplorer

Memory Pool

1,371 transactions (0.53 vMB)
  • 1 sats/vbyte = 2 blocks ()
Show Random Selection Loading Transactions
Max Size: 3.02/200 MB

Candidate Block

Height Target Txs Fees Size Avg Feerate AFR
912,439 000000000000000000022b910000000000000000000000000000000000000000 1,361 0.01235369 BTC 0.53 vMB 2.01
Show Transactions Loading Transactions

Blockchain

Blockchain Refreshing
Tip: 912,438 (753,039 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
159,399 159,399 00000000000000ca432e339de465e93eae8fafaa9557e1a6a9d900e369b1833b 0.00 MB 6 17
159,398 159,398 0000000000000be47b04fcea5bfe719b7883c0c81d871594ccf10551b39c44bc 0.02 MB 60 125
159,397 159,397 000000000000072a48c8ee95c07245d8562b389563e92c5814a191fd295ab9df 0.00 MB 2 0
159,396 159,396 0000000000000125612286d26bf67246b968877aeb2d3c8769dcf1b5273bca33 0.00 MB 5 0
159,395 159,395 00000000000000b4162a595db504bc61c468ea3bbaf056a265b25cd621ffb78e 0.01 MB 14 19
159,394 159,394 0000000000000c0301995a95953ff019f436d00f169d1882a12b08195d73cbce 0.03 MB 14 46
159,393 159,393 00000000000000cc6eb2b2167289777cf6747dffeb2cbd3d894632c8d2e70fea 0.01 MB 57 14
159,392 159,392 00000000000005033cfeb393aa09e40e0f25049346755ea8ed399d061f840a59 0.01 MB 25 88
159,391 159,391 000000000000077298c801885f9be572d81ffdadc030cf625e86f70939dbebec 0.02 MB 32 474
159,390 159,390 00000000000009849ec3109bbc2668caedaec11969888be7cddcbb1e07c8f76c 0.01 MB 46 162
159,389 159,389 00000000000000bf8a8ffe7694cb7d846862fa2bba95e5753414eccced501425 0.00 MB 8 49
159,388 159,388 000000000000062096142a9e13eb0f3cbeb9d43ef66e9925ff235fc5df7ab872 0.00 MB 12 44
159,387 159,387 0000000000000dae42374ef551397963a24aa50da8f172d6404d37833b2cab79 0.00 MB 9 312
159,386 159,386 000000000000061222d65bce9a83897dc71284754a3ec3e862931a53af28bcbf 0.00 MB 13 38
159,385 159,385 00000000000000426d05cbd6178275fa766bfed6b389fdf7d7d322107f083951 0.01 MB 19 123
159,384 159,384 000000000000025087d6a2c6c68c0112e8a36da87b3a236274d8ada1a080aae1 0.02 MB 68 32
159,383 159,383 000000000000039bba3777c7d5545d3df184ba590e113cedfda8edfc0d62c4aa 0.01 MB 15 13
159,382 159,382 00000000000009873d20335b6083a8324a0853e8e1210089127b092e23ba763f 0.00 MB 3 193
159,381 159,381 0000000000000d353bc00400ca1761091135323cedf68602819f7b3729e2fbae 0.04 MB 110 72
159,380 159,380 0000000000000d69f6adfd17bb7f5524c151a952e7f9b4db4545a8be95b6e1bb 0.01 MB 11 49
159,379 159,379 00000000000000a2b7cb3cdeeac3445e061ae6cdb02e3829466ccf2aa4dd542c 0.02 MB 52 18
Previous 10 blocks ↓
Total Size: 777.86 GB

Node Details:

  • IP: 162.120.69.182
  • Port: 8333
  • Version: 280000
  • Subversion: /Satoshi:28.0.0/
  • Connections:
    • Incoming: 114
    • Outgoing: 10
  • Data Transfer:
    • Sent: 2,553.44 GB
    • Received: 137.58 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.