Explorer IconExplorer

Memory Pool Memory Pool Refreshing

9,731 transactions (4.17 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,563 000000000000000000022cb30000000000000000000000000000000000000000 ago 1.00 vMB 3,768 4
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,562 (897,603 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
11,959 11,959 0000000089f6bbf68f0d6b595f9691cb335953d315a54f057c9e9326a34dc550 0.00 MB 1 0
11,958 11,958 0000000033d363494d0c045b0aca7b793212397f688bfb337ddbc8a14b171fcf 0.00 MB 1 0
11,957 11,957 0000000044c695e899e1529a44bf6e56ba256385e83f7d82e488e5c7600a9190 0.00 MB 1 0
11,956 11,956 0000000098f58e0a69a2fda875bc35f8f7ab1f2670aa76384c22fe1dc1b7f443 0.00 MB 1 0
11,955 11,955 00000000346e05ca3b39c33e173ed3399debd10c2867a92ef3529cbfd9f57cf8 0.00 MB 1 0
11,954 11,954 000000002012c02f65a73b8cc608c9b3bbacacaac7fc005d16c0be3025407a68 0.00 MB 1 0
11,953 11,953 0000000049f27c2d80ff6e1f90edf8faeffb00b7c789d1b560ad4de9f6787ecc 0.00 MB 1 0
11,952 11,952 000000001a7444cf5d8640c5919bb306bd789121d5018a1b849e5b41cb6317cf 0.00 MB 1 0
11,951 11,951 0000000087f668e4ca8b62526afed109ecd289da0d56330d87adb16f71d7767c 0.00 MB 1 0
11,950 11,950 0000000003ad27d4ff96a031c479040fe9382d9ba9e8494c75ecf11659fe90e7 0.00 MB 1 0
11,949 11,949 00000000d7ec50f0519c5cefdeb5cb68823895dc40e385a69459386dbfaf5efb 0.00 MB 1 0
11,948 11,948 0000000057646941a1322bbe3efdc4c825b2c3ab3ca1f96fb3c24764f2a1b2c5 0.00 MB 1 0
11,947 11,947 000000002766eb5cb8d854898e8d09d7c65615ffa68157e0d513841cd88599af 0.00 MB 1 0
11,946 11,946 0000000066d41eb7c4a070ac6acc71aba3103b3353b8f80d7fffbf107a0e457a 0.00 MB 1 0
11,945 11,945 00000000b06e1edbc1aa59b4e7046d41190ab35435ad19040570c1b5a5a4cb7b 0.00 MB 1 0
11,944 11,944 00000000d0454e1fe385205b222ac070e3fbd2e1a1bad9373bf837119075eea8 0.00 MB 1 0
11,943 11,943 0000000038b57255d2d54802cc1912ef2031698778701f91e5a862987b8e6204 0.00 MB 1 0
11,942 11,942 000000000eb8485cc0c362ae2b1ea49f69e31b4b629b76ec0b751be0821ebbc0 0.00 MB 1 0
11,941 11,941 00000000ad6d11bd9f5df173e6e23f193a5ff9ae6793330dc7ea0ce0920ecc92 0.00 MB 1 0
11,940 11,940 000000005dd399a7a9822d62eaf9e1ee77dc0b0b1d695dd6abbc49a5d7728e16 0.00 MB 1 0
11,939 11,939 000000002ac87dd8e304356db87702ac1dcaf4150e382d600c4dc5ef6b1fcc54 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 772.59 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,089.81 GB sent, 111.26 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.