Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

4,875 transactions (1.48 vMB)

Priority:

  • 1 sats/vbyte = (18 blocks)
  • 2 sats/vbyte = (4 blocks)
  • 3 sats/vbyte = (2 blocks)
Show Random Selection Loading Transactions
Max Size: 9/200 MB

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,104 000000000000000000022cb30000000000000000000000000000000000000000 ago 1.00 vMB 3,263 4
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,103 (876,706 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
33,397 33,397 00000000b5ed39957b69f4e6e29c81060967fe90053c76ae716e5bb5f11629a2 0.00 MB 1 0
33,396 33,396 000000009dfd62f98fc9ff0dd4ef7f5d671877c4ffe85f05a9f8861d98bbb09a 0.00 MB 1 0
33,395 33,395 00000000c2dc35ac3e1017c02bf1f58da0016e47acbf3d9d605ed72d65da7d6e 0.00 MB 1 0
33,394 33,394 000000001293803a54a7d077334b8b82b6d6cfbe32de140e419dde499c8b67cc 0.00 MB 1 0
33,393 33,393 000000006d11526c587ce9375db0772f6c1978fd266a9c7594415931641cb2cb 0.00 MB 1 0
33,392 33,392 000000008946b5dfecacdd6e54aefb450ba53d7264b6081d44c402070c49b834 0.00 MB 1 0
33,391 33,391 000000000f8a7861dca42041ca536ab2fe4710661ac8fc20ec9b877de5989698 0.00 MB 1 0
33,390 33,390 00000000a193ef6067b4e600bf036dd9c04d15ec1f4c9e5d5844f86b9262a0ee 0.00 MB 1 0
33,389 33,389 000000003ab87037294bc3f62f3b0f1a89a47befe498f534abaa18a10b8011fe 0.00 MB 1 0
33,388 33,388 000000009b8f6cb8b0dd287d03e34c9b816a64d610966b64b3bb4069e7f6686b 0.00 MB 1 0
33,387 33,387 000000005f29d5e44d771aaccd489f3dd00c0d34b2077cad04771356c5f9e5e6 0.00 MB 1 0
33,386 33,386 000000007e03fa550f583fbbd0871ad219a7c1d34882cb96818d497824763ff0 0.00 MB 1 0
33,385 33,385 00000000d85cbeb7820c649639903f91ec44877731870dd59329f849ac93d9a7 0.00 MB 1 0
33,384 33,384 0000000021845708ca4d541a7b9a8f1e062c83a56a869f179b56c15473e5e9c9 0.00 MB 1 0
33,383 33,383 0000000075586998f359084e385960f75fb37964bbd12cf7ed02581f09ca6409 0.00 MB 1 0
33,382 33,382 00000000b8991e5534a2c61b8a0ab4c76f7f76b12934ab37a6e89dd6a01bd5e9 0.00 MB 1 0
33,381 33,381 00000000be81d11e78232a7acfa07e66092499632f25eeda4d1b56ffbecba012 0.00 MB 1 0
33,380 33,380 00000000a9c4f77a4198e11ee5ba6d15dd156148fe6778d1c158d5e1bea4c0ab 0.00 MB 1 0
33,379 33,379 00000000c6c88ec8fef50bc9cacba100ad14bb8478de39c07fd45f9d2c831046 0.00 MB 1 0
33,378 33,378 0000000032bd93825b858441ef010dea63795e7d68a4ed8e7b1c839d200178a8 0.00 MB 1 0
33,377 33,377 0000000052b4b67bc0718a40ee437c0d48cbe94f4b28a55977b039340fdd353e 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.58 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,188.68 GB sent, 116.41 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.