Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

1,155 transactions (0.54 vMB)

Priority:

  • 1 sats/vbyte = (7 blocks)
  • 2 sats/vbyte = (4 blocks)
  • 3 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
909,601 000000000000000000022cb30000000000000000000000000000000000000000 0.54 vMB 1,139 3
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,600 (897,646 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
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
11,938 11,938 0000000071a589f5333ac05d809c1a1bed8e98a0c52abe8f413908ef162b906b 0.00 MB 1 0
11,937 11,937 00000000049070f9ccaa209e14969cb924ff4d905671e20a305dcacb4a919f22 0.00 MB 1 0
11,936 11,936 0000000058816a08f76de9453d6cd0e8bb99bbe05ce2b94637c41e518471ed54 0.00 MB 1 0
11,935 11,935 00000000482dfbf48f37876c31f2b9ddecebede72c780b8dbd786720a5d89c2f 0.00 MB 1 0
11,934 11,934 00000000f497e5bdf11d4bd7503ea6ecb954f9915a1cd6bf686e2f736a6e4a8f 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 772.67 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,098.90 GB sent, 111.64 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.