Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

1,679 transactions (0.58 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,654 000000000000000000022cb30000000000000000000000000000000000000000 0.56 vMB 1,656 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,653 (885,960 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
24,693 24,693 00000000615c0dec404a35f3703a23f367903e2f9ff99670d9fff81819144418 0.00 MB 1 0
24,692 24,692 00000000180110ff8ecf5dcd682b3efbc0fe401a252d0c1a7cf70dac51eb92d4 0.00 MB 1 0
24,691 24,691 000000003cb7ab46ceba8068ebabab1d79800d86cfdda91737e48a7a1a68f74b 0.00 MB 1 0
24,690 24,690 00000000795a7e34bb80df60eaaac772c37fe079ff01ae4460a29990191baebd 0.00 MB 1 0
24,689 24,689 00000000cd293ecda5ca757170ebb24953f3d7e983d469541f7f7b88bd1d101f 0.00 MB 1 0
24,688 24,688 00000000a1d4b8384a246f5994c50afa2ada572247fe18c7fa9060d2a8fecd39 0.00 MB 1 0
24,687 24,687 0000000088fec0b3365566b54bba83c4194a6ba22837bb6aa15167885ba2738f 0.00 MB 1 0
24,686 24,686 000000000053e76a6997b34929141d55a5cea39c5eb564c83ef7a56f3e05f98b 0.00 MB 1 0
24,685 24,685 000000003568754b28b00281de49a8e8f6a79c682ab22c780e81b67127007169 0.00 MB 1 0
24,684 24,684 000000001d4ed18cc0964ed43859eafe0ff4ce0976806a32d9dd24ea8c503b02 0.00 MB 1 0
24,683 24,683 000000002b64b2d80bac963acf0579f2f172c1c89dfc39ea7366a818a403f389 0.00 MB 1 0
24,682 24,682 000000003ebac86727fae3392c69454ed4aacaede402111b00f0327defd44544 0.00 MB 1 0
24,681 24,681 000000009b4ff06242e774b5671912236da5346730c64d6924379ae1edf44ae8 0.00 MB 1 0
24,680 24,680 00000000635aac9a463c1d1049e3b1460cfbf1cc30697e8872d7388c9ff4fdc4 0.00 MB 1 0
24,679 24,679 000000000e0518a1c9f282ae27bf6c9f59f7a7a9166016ce4fefea6c19eb5ea3 0.00 MB 1 0
24,678 24,678 000000004e1164991a9180b84d91a603bb0f8a0f37f990c57dadb7f709a9fbc2 0.00 MB 1 0
24,677 24,677 00000000c7e6c7e7c40a7bdcc787349f1140f28634b92398edad1d871f510deb 0.00 MB 1 0
24,676 24,676 00000000e2c82acb5402f387089b7849ee081f9ba961d917c614abf63380f701 0.00 MB 1 0
24,675 24,675 000000000ab7c43138e1bf90b3298e326148c308a54f8ce7b9df6ca2842e3665 0.00 MB 1 0
24,674 24,674 00000000e0afd6195727713459ea1a2044ff46b7bf30aac8e6ebc41283e6ead2 0.00 MB 1 0
24,673 24,673 00000000c8240fe2cb98dd0d6b1c4e0cb3041bb5644d1cbc057f5d6d67558420 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 774.58 GB

Node Information

  • IP: 162.120.69.182
  • Port: 8333
  • Version: 280000
  • Subversion: /Satoshi:28.0.0/
  • Uptime:
  • Connections: 10 outgoing, 114 incoming
  • Data Transfer: 2,279.97 GB sent, 121.51 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.