Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

21,161 transactions (5.48 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,074 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 2,822 3
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,073 (869,937 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
40,136 40,136 0000000009eb1ee6db7c8ea6e3c9f1ccf37a4c99192881fa5d7c0cf85abc3a6d 0.00 MB 1 0
40,135 40,135 000000004c12cd3eedbea87d088c117ee8007ea2077ebe06b9066412084291cf 0.00 MB 1 0
40,134 40,134 00000000876a1863380a1c37caffb4e8a17dc2ee7d9a6ddd77d9b4ebf08cb233 0.00 MB 1 0
40,133 40,133 000000000ab35a8105f2d56cc625fb96f16c0915199feab4d2bedc6f9fac9619 0.00 MB 1 0
40,132 40,132 0000000040a66780998bc34f9692c7138c227b71d5835de456015aaefaf5fe68 0.00 MB 1 0
40,131 40,131 000000001985108df308e1c3653ed9941b8f11c0bd3ed997d18c7b04c401586e 0.00 MB 1 0
40,130 40,130 00000000164391f43986e19f605677f7a6a8c12347d9d30c9821d8ff72e7b7de 0.00 MB 1 0
40,129 40,129 00000000612ed46042d974ad93bb9597b1426171e141c01f121dd4d1f8fd18dc 0.00 MB 1 0
40,128 40,128 00000000409def29b0f67aeb8f49720b05c05e823aa9f6d333ebbf63c62ce869 0.00 MB 1 0
40,127 40,127 00000000068982160b44a8d44ec31474e538d7efd7b7faceb2e5cb42dabf24b0 0.00 MB 1 0
40,126 40,126 0000000058a8b575aa02501ef1471dc17d451e87a6ea210432c1bd94b822d256 0.00 MB 1 0
40,125 40,125 000000005167e14e2626242776cc3975a38d07c369e7991da754b34fa61e011e 0.00 MB 1 0
40,124 40,124 000000004899abc3ab6657eccceab0c3d19e8943e46a75b0e1db5e6778b44f9e 0.00 MB 1 0
40,123 40,123 000000006748fe7265783a8d08812ce43d22d9c842493a4e1c12199482036a89 0.00 MB 1 0
40,122 40,122 000000006b960dab8ad9daf53b2ad0dff135844da98e73588dba6f7cffcd692a 0.00 MB 1 0
40,121 40,121 00000000753a4ca429ce6005f00afc71b9029f8e3f39cc8206dfcba270af9cbb 0.00 MB 1 0
40,120 40,120 00000000894caab616fe4c510a392b950e7240c411cbdf9134b5ad2be3b8257c 0.00 MB 1 0
40,119 40,119 000000002fc28ff1c0d40be1e9f91ef459f2b85ff3d66a617869e49e62f318fd 0.00 MB 1 0
40,118 40,118 000000004fe65e537136853638e1cb6f2d3b3d88bbdf010f715a65f84369c466 0.00 MB 1 0
40,117 40,117 0000000076edb290245691b49f07dd5b2b338a9db151386623a358145666625a 0.00 MB 1 0
40,116 40,116 000000008a9a5d65f33d04f992e5868423b21b7c7ccdac0276cf6a881a3aaf05 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.53 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,187.38 GB sent, 116.17 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.