Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

937 transactions (0.50 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,619 000000000000000000022cb30000000000000000000000000000000000000000 0.49 vMB 928 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,618 (894,224 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
15,394 15,394 000000004bd57a9c164b783b1fbbbc314906930c71b9c6105d23d46f9d1c11f3 0.00 MB 1 0
15,393 15,393 00000000517333b58d2b3aa5d52f5015952eb45cc1223e573b96c1f23dce0fbc 0.00 MB 1 0
15,392 15,392 000000004cc98e7bdfacbd5b7ea28df91269ac81092de7f110d102dbf9f59172 0.00 MB 1 0
15,391 15,391 0000000009b1a11b39a077a2ceaff5cc20473d7323394fab44476ca2749bad48 0.00 MB 1 0
15,390 15,390 00000000723269800daee8beb930bda5cd27253fc5305c520e96a855c3407433 0.00 MB 1 0
15,389 15,389 00000000a311385684ecbe6b46013a850543d0fa7321f0f582eb2c866cfc6c5d 0.00 MB 1 0
15,388 15,388 000000000cfd3e8b947485e47c91e91d4e47cdcf095c42ae762705e112f725b5 0.00 MB 1 0
15,387 15,387 000000002e92d7d2fd3cb35b54efef45017649c341aab874f2aa23c4ee2f4e3d 0.00 MB 1 0
15,386 15,386 0000000066af76285d23e744c998a95dce596b66cb94ebc51b0bd9aa2db0f19e 0.00 MB 1 0
15,385 15,385 00000000bbbab75db862edee7d893a10b20bf6460437ce13b62743e281eac9dc 0.00 MB 1 0
15,384 15,384 00000000ba58eed0111e7168cac7ca3c5cc6086bccb3e8932bd7e5f6b349913b 0.00 MB 1 0
15,383 15,383 00000000f46c2b8968c76a4ccbbb1a1b0f4e3e96b0b1918f57e87b6a3a194558 0.00 MB 1 0
15,382 15,382 0000000078d631a406a5c94a37378fb5ccad65eab9cda66c9212885aa0d5d3b4 0.00 MB 1 0
15,381 15,381 00000000ac57dca93b6eddf4ef9302be09c22578270841512862a938b5c6bed6 0.00 MB 1 0
15,380 15,380 00000000ef04e57f827e530e08ba0e745fb9a6ec7546f47dbdc400f4c48b3a44 0.00 MB 1 0
15,379 15,379 000000007e186c3c11d54ddf358aa78b5a6a7eb2ffc1030a54df6c9cf6c18958 0.00 MB 1 0
15,378 15,378 00000000bd7c47f51935f11a75a7fe1e0ad45fe9c07a6e28c0ce365a33c63032 0.00 MB 1 0
15,377 15,377 000000003144d3341f4a16ffb3c191903198cd12694e915fc7490ed50618086b 0.00 MB 1 0
15,376 15,376 00000000ff253d17e7dfa542e7fd579d6933af888702431449aa678db85634ad 0.00 MB 1 0
15,375 15,375 0000000028b8b1cbc5d1f2e34c44b190504d2f8ef89b7dca54fa3f4a3e42a0b4 0.00 MB 1 0
15,374 15,374 00000000c72a21b831473b469cea682f547e633e4e63c80f99994e4adef913ae 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 772.70 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,102.58 GB sent, 111.81 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.