Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

6,617 transactions (3.37 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,181 000000000000000000022cb30000000000000000000000000000000000000000 ago 1.00 vMB 3,397 4
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,180 (869,567 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
40,613 40,613 0000000052823cc0c7a90dac23fb8a5e1b4d48c1c9689dcdfdae752e30957ed6 0.00 MB 1 0
40,612 40,612 000000003309fdc2d65939c7efc1263a480c830e60ad86f90c0b9e78e5d9e38b 0.00 MB 1 0
40,611 40,611 0000000020f753210dd6d0768c2dc6da4ef532f98c9bc1860f4cfd96c1d25d41 0.00 MB 1 0
40,610 40,610 00000000285869f437098b1e201ae2c3344e36da0cec159311317667e4ff4fcd 0.00 MB 2 0
40,609 40,609 000000004285a1f54e81e6e0e33df3f1f136768e2d72178177b00de2d007b11f 0.00 MB 1 0
40,608 40,608 0000000026b7f1f3789246c29b7ad6537e32370215175bcb94706e34fee6168e 0.00 MB 1 0
40,607 40,607 000000002b4bc53fdafc43db60d8b0e16f5b5d8f5567c32622c3318d66c03c74 0.00 MB 1 0
40,606 40,606 0000000036fd9d8816c1c391b69c90243905e2975eb405a8c07cd4e93256853d 0.00 MB 2 0
40,605 40,605 000000005cfe52ddd254124d00ec33a1cf864b51f2157198ff7e606f4ba8a367 0.00 MB 1 0
40,604 40,604 0000000017a6fe53e6c43cb897f940d564fbf250fc3a5995fb274c7be8ccbbbb 0.00 MB 1 0
40,603 40,603 0000000005c8bb21803d1fb2742c5f913840e2a11b934eca2a8b3ae45ec638fa 0.00 MB 1 0
40,602 40,602 00000000518511647894e37b3cc0d5a620b6c3a831351cfe9f4118afaf97999e 0.00 MB 1 0
40,601 40,601 000000002127c3ad6ec93653effb43fd7780ba621f250deceb69bc995cd17505 0.00 MB 1 0
40,600 40,600 000000000da0642d9adc15cc4805ef98a3bdfe69ce83a922aeca418bf4efaf02 0.00 MB 1 0
40,599 40,599 000000002451319f82a8c18c814b8363234a70f87286d399e41551466f0fe78b 0.00 MB 1 0
40,598 40,598 00000000312ba3b01b1a888e337a18742adffdb67d17ab3d4496512e5f3e3a9e 0.00 MB 1 0
40,597 40,597 00000000355ff59f156307a6c22d312c56f8c52a32ab7ab0d6e38d2f165f68ba 0.00 MB 1 0
40,596 40,596 0000000013f0d3fd1a2dc1fc3e1fbd197293ce72d9971077f95aacf5c16890aa 0.00 MB 1 0
40,595 40,595 000000005e107dad76eee7e851cdb553bd23418473064121e4176fcce26e3187 0.00 MB 1 0
40,594 40,594 000000004a4b4a1fa5d846468fdcbb012ad0e1f92cdff54c4492eaef03a4f01e 0.00 MB 1 0
40,593 40,593 000000003d73a9fade7b4b024da73f11a786d1d41d0cf5ee91c378ec4078b9b6 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.73 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,194.92 GB sent, 117.22 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.