Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

825 transactions (0.19 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,150 000000000000000000022cb30000000000000000000000000000000000000000 0.19 vMB 804 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,149 (880,183 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
29,966 29,966 00000000ab77b9c8071a7cfe31abfeae056d3024772f29558c2bb0e0077ccac6 0.00 MB 1 0
29,965 29,965 00000000b8efa300b139be966aebbedd4d6e97099a0aa02a47a1b331ae3cea86 0.00 MB 1 0
29,964 29,964 000000009b198cb922273557c93aa2d27b4b6a6f28b31e3996725f0c6db35197 0.00 MB 1 0
29,963 29,963 00000000424ce561cf3f6342e304ba8d56b8c9945d7c928c53bc7e65db78c519 0.00 MB 1 0
29,962 29,962 000000004f87e874218fe99bbd2676005568cf52b0764a03fd0ffac3f92dbbb9 0.00 MB 1 0
29,961 29,961 00000000f9811d813f5b3d7e1a932961eeac70bcc660aa63f98213578f9c12c7 0.00 MB 1 0
29,960 29,960 00000000830b509890c1faf75f3ef82e82923badfa90804379f71c0ab51132f8 0.00 MB 1 0
29,959 29,959 000000004f11c42136e194f68502f4df4d9773f85f39777ab44864b620411b5b 0.00 MB 1 0
29,958 29,958 000000003e36bb7d04ef2dfe9dca97267528304ab77a723fe9a0bb7d6c2093ab 0.00 MB 1 0
29,957 29,957 00000000c0b39652f3ae7022b12fdcc659b9fa76057e0111a5767886c5d040f9 0.00 MB 1 0
29,956 29,956 000000005e14b046a9560c0c9b7b94daf7ee8384e808e2697860a18a4846ffcd 0.00 MB 1 0
29,955 29,955 0000000067439f68b119a8366bc8f661dbc1ca0c45f8698a42b1e7e39be26561 0.00 MB 1 0
29,954 29,954 000000000382a1d2b7de7716d5f2622f24d72f0bfe1b5d142253b6c2b9b43d1e 0.00 MB 1 0
29,953 29,953 00000000c25a23e63286eda5fdabc8e60be90d6c2060a1c19ad8b3e0e8ff848b 0.00 MB 1 0
29,952 29,952 00000000592d66dd1b8f85f7a1b962b056bba9bac53011e0c0a53534023d6fbf 0.00 MB 1 0
29,951 29,951 0000000065a632d000902a5b4cbda115e1a9db69516218fd8355d816d8dbb93c 0.00 MB 1 0
29,950 29,950 000000009c5f1f4e073d01e51cfb83b4eeda916fd8e8152502f4fc2dee020e39 0.00 MB 1 0
29,949 29,949 0000000076447ef396e9ed437b1364debad25a1e56d20b7951cc5293d948460a 0.00 MB 1 0
29,948 29,948 00000000bbb3815a0f34bf74b616214e89276be8113c4ea0108de0bc79d0c5a9 0.00 MB 1 0
29,947 29,947 000000009587da810a62312faedab1307d036c0e9c41406d4c16764e4e2dcd42 0.00 MB 1 0
29,946 29,946 0000000006aff19bb9e83dbb3002a438752495c05924bf6d9b03cc52541b43b1 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.67 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,193.35 GB sent, 116.82 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.