Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

1,571 transactions (0.48 vMB)

Priority:

  • 1 sats/vbyte = (8 blocks)
  • 2 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,148 000000000000000000022cb30000000000000000000000000000000000000000 0.48 vMB 1,557 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,147 (887,760 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
22,387 22,387 00000000e43e8bdcdfc69224ba202aa028879115a2a8b2e7e000649b32781e74 0.00 MB 1 0
22,386 22,386 00000000da28e35d9bdda37b92355a0e6e89df1b1c8b96935a4fdd8aa4026bb1 0.00 MB 1 0
22,385 22,385 00000000b557f26918b973bfabf2b1a6f5edeca4557e4019ce628f81176cfb80 0.00 MB 1 0
22,384 22,384 00000000148f4fba95ff1254a9bf5a9823a37d3d0c4272c8fe0672433da7086b 0.00 MB 1 0
22,383 22,383 00000000756f0ed855d3330919d9e9b4ad6e74b18ae93cc00766ee8d28548589 0.00 MB 1 0
22,382 22,382 000000008c656b03928280ddec09a607c77aaf100e5da7f06a9e9b28b7aca80c 0.00 MB 1 0
22,381 22,381 00000000229e3a69aa23e6b3c3c60a580d540561e3f68a6596dc838fd806b766 0.00 MB 1 0
22,380 22,380 0000000075b3b6547c1d555f5bb89d9151603611076ca8cca5f55e821224b680 0.00 MB 1 0
22,379 22,379 00000000657700cf827f6ab008095317c5669145d26f33d22ef02cd086d24f2d 0.00 MB 1 0
22,378 22,378 00000000f98a2ddac8f00077c7e35a35ac61cc915420a761efbcd82d2f5b5b33 0.00 MB 1 0
22,377 22,377 00000000cf7d7e8b604f9c0db2706d74f6a5b36a41c88f19d7da9e2bf34366c0 0.00 MB 1 0
22,376 22,376 0000000017504c419756ed479acdc1c0616d2d83b0ca9f78d32b23970a6e5519 0.00 MB 1 0
22,375 22,375 00000000bc0a70c9aa6c2f19b74eb8e819751c6d20143f4173e33357ba42ceeb 0.00 MB 1 0
22,374 22,374 00000000b993775e6d9bbe978127d82aacef5dd036cee9f51e6ae2362b893852 0.00 MB 1 0
22,373 22,373 0000000075dad7148a758f9d1ffeb319665831e0b59a8c8798268c4705706f5c 0.00 MB 1 0
22,372 22,372 000000002486187b56430e9e970577bcba5cf20cc832c504a7897ced1c4e2772 0.00 MB 1 0
22,371 22,371 00000000bf0c15b17d6d1a8e93d938465698be02423cc526b293f912d7fdda75 0.00 MB 1 0
22,370 22,370 000000007110a25797ebc110484f573354e36f43e25df413b1cf01771529f5f5 0.00 MB 1 0
22,369 22,369 000000008856c5f2ad38c84d40360e69bfdfab3b572ae9f1e41255bd69b936cf 0.00 MB 1 0
22,368 22,368 000000004f39ca96fc6cf1b0f74574f7afb617cbcc45e926b6e6e32b931077b7 0.00 MB 1 0
22,367 22,367 00000000c4eec647b44b3ce68b7cee1c3afa563e8e1aa53e06fb9c8440130c2d 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.66 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,193.30 GB sent, 116.81 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.