Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

4,196 transactions (1.24 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,591 000000000000000000022cb30000000000000000000000000000000000000000 ago 1.00 vMB 3,404 3
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,590 (889,087 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
20,503 20,503 000000007084d78933c0b0b631433ec875943dd80d7e1ab74a14c0820d10a29c 0.00 MB 1 0
20,502 20,502 00000000806a0579778e20b6ea8580fb388fa7cfe2c5099da8a8b1ebf3f56f68 0.00 MB 1 0
20,501 20,501 0000000000e0ad3d241b04e6d1149255aa54b360724a07bfbc81589ae10ebfc2 0.00 MB 1 0
20,500 20,500 0000000068318b0e651c4e6a3a0ed44496f6650c7ae671dbc043c74fabfd1053 0.00 MB 1 0
20,499 20,499 0000000041c3aa1c4676a0de43662659bc61ef789fcd7c866d4dcc221a413bd5 0.00 MB 1 0
20,498 20,498 000000001acb2c08fc2455d3380d01b0e745fc73839598f04f7a396fd4d3c81d 0.00 MB 1 0
20,497 20,497 000000009180976f71830b649b64cecfd5dc496e508e13093a7e11a27947b5c1 0.00 MB 1 0
20,496 20,496 00000000056bd9de0a5ac543a4acd80723a84c51ce8bef1eef3573ecfa2a2034 0.00 MB 1 0
20,495 20,495 000000006e35d077a36ada0ae3ea6716fd4b3bbf951dbd1219fbf320fa815395 0.00 MB 1 0
20,494 20,494 000000002af545c6968d3d229a03e8e6b470f9af3a9a00c6c9e5ad4df0427555 0.00 MB 1 0
20,493 20,493 00000000a0c4c9767addf74409b71598c03d2fed09cc2d8d33fcc05668cd3d55 0.00 MB 1 0
20,492 20,492 000000004e20f63079a8197074841749ae5082ffc5ecf8a5d45a9c2e6c349b0b 0.00 MB 1 0
20,491 20,491 00000000aa9d0dc6f3300a605cd4088c59b5837bec70701ed563efb66b22abd1 0.00 MB 1 0
20,490 20,490 00000000d53714ebd479696b412b40b8a1c00f15f9dd2c704dd38b28a49f2645 0.00 MB 1 0
20,489 20,489 000000000238deb889bdc0c134228e542bd3a7876136ea0363a7c25f5746d86e 0.00 MB 1 0
20,488 20,488 0000000032d5eb517706a96e2069d29c5aaff5fed511b54e4dfbc43bd2af99a5 0.00 MB 1 0
20,487 20,487 00000000a46d37287b7bc39c83299b829eb605ab1a8b98c9e7e064bb11dbc6fe 0.00 MB 1 0
20,486 20,486 0000000027489ea2316d90c32a8328314405b51a1cff23030db607912dbe609d 0.00 MB 1 0
20,485 20,485 0000000066e2421a21e8f788c08f4c97d2c5300232b1cce911aa423149a399a4 0.00 MB 1 0
20,484 20,484 000000002d623055c92afa571047afa57849b96b741f8147a9587034c994c4ef 0.00 MB 1 0
20,483 20,483 0000000074b98383d1a008c621b369ce5989c5b52e2f9349ac11a2c4144eace8 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 772.65 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,095.63 GB sent, 111.55 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.