Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

4,862 transactions (1.72 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,906 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 2,950 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,905 (856,128 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
53,777 53,777 000000000736c84ef4d0b1602b01c89076c968edad6db6d2e8a50b167267c9a4 0.00 MB 1 0
53,776 53,776 00000000161e85e0766d07e2d045c95129bd805aeb79ca9ca99cfdf885dad2df 0.00 MB 1 0
53,775 53,775 000000000b8d7d3ad07312e7775b38004d540c11d51f015d1f09a3a9274d0d99 0.00 MB 1 0
53,774 53,774 0000000006b3cad8c08d24ed68f02d6109f3b10ad1cabb8366c5a7e3259b4be0 0.00 MB 5 0
53,773 53,773 0000000015dd6548173fcaa5407764360fc6f90cd4cebb2572bb0c58d91dbefd 0.00 MB 1 0
53,772 53,772 0000000005d01a229a5de2bb5f031334d2628d855838ed1f1af2b095f1bd5018 0.00 MB 1 0
53,771 53,771 000000000cbab16eba85a389d6b9c6c8c3b52019e38e6f50093419c1ff54bc3d 0.00 MB 2 0
53,770 53,770 000000000fc794683e6b60c58baa77c29fdcea4f530d0bcf54c1490336eed825 0.00 MB 1 0
53,769 53,769 0000000011758551871bc231266c4c6eac1f1910e1abc8e52f69fec85d86327e 0.00 MB 1 0
53,768 53,768 00000000158c6e07894775fcf8dbcac14ed90d6a72a104c4bde805d803e80699 0.00 MB 1 0
53,767 53,767 000000000158f566b719374f09e5ab2a651dec31424da18f66653ebfacfb1821 0.00 MB 1 0
53,766 53,766 000000000b681b0abc0f6cb71b99414efb3b301c6098dcc96030f0b56db4e9a5 0.00 MB 1 0
53,765 53,765 000000000adedccdce4589874194cf8525b95b1ddbb0687bc09cab0cefeb261d 0.00 MB 4 0
53,764 53,764 00000000126e54e699be97393f1ffe37b00f3138842a7bd57f8c97eb67d9d40a 0.00 MB 1 0
53,763 53,763 0000000000fe53c1cd0cf771976d6698d64dd980682f5d91ca7d0dcda5749dee 0.00 MB 1 0
53,762 53,762 00000000143c73cf1bfa9d8283ecb2f3acd781547dc25374004a841c8b28f387 0.00 MB 1 0
53,761 53,761 0000000002384c066654bc98aead620f9a3f72f82ccf6f2c3e4f9442b0a73663 0.00 MB 1 0
53,760 53,760 000000001191aa5d8cf5a337774942187935f0cf878cc25d5af097156e71e4f0 0.00 MB 2 0
53,759 53,759 000000000af8b2a53b42c6dbc33285a56c56398ae809671094bf8b714b0ea61e 0.00 MB 1 0
53,758 53,758 000000000cdc4cbee40e6c7c7b6ad80e9c69dfd1f96e06f8aaeff640bbd0e114 0.00 MB 1 0
53,757 53,757 000000000ba94a25d04373f9ff352516177a7c9c4f9cd9c304cb6b0a93169ca0 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.23 GB

Node Information

  • IP: 162.120.69.182
  • Port: 8333
  • Version: 280000
  • Subversion: /Satoshi:28.0.0/
  • Uptime:
  • Connections: 11 outgoing, 113 incoming
  • Data Transfer: 2,172.50 GB sent, 114.51 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.