Explorer IconExplorer

Memory Pool Memory Pool Refreshing

13,114 transactions (5.83 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,295 000000000000000000022cb30000000000000000000000000000000000000000 ago 1.00 vMB 4,111 6
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,294 (869,486 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
39,808 39,808 000000005d1e08a7e89aa36eff623709400a67c6d84141db5dfd1e6930353979 0.00 MB 1 0
39,807 39,807 000000007087cdd9fbc057b2010883663b0cd877ba267aab8d2fc98d4a83d6bb 0.00 MB 1 0
39,806 39,806 0000000037ad26e7c36ac629495ebca331915d8e52e9d1320687275154219fea 0.00 MB 1 0
39,805 39,805 0000000002d963cea93d4ec0e953cb45f93f38ffd466bbd9a87385fcbc63e78e 0.00 MB 1 0
39,804 39,804 0000000086e3f695344278274bb3ee03aa66b7d70ae3c3deece7ab41ea13f1a5 0.00 MB 1 0
39,803 39,803 000000002ce8fcbbf37d8f94bb11452902b29c60d2ec25ba87ec9b094d0e38c3 0.00 MB 1 0
39,802 39,802 000000004c15403bbaf10732d08182e2f79287adb61ad49ca0cf81e3ab8b339f 0.00 MB 1 0
39,801 39,801 0000000056692d21f86176c3705e7ca4b218050f4a1eaa191ea5fed363ab8763 0.00 MB 1 0
39,800 39,800 00000000722c58b4a1950d2949be63daa4da39abd966053f4d26b9220c94fcb2 0.00 MB 1 0
39,799 39,799 000000000898551e4c2e0c5d3b3b79d0f5b0e7cb1b4a5b8c226afd513b62f0e9 0.00 MB 1 0
39,798 39,798 0000000058a06e90a0cc1a488e434889f0fa56aa25acc4abf9842151d51aedbe 0.00 MB 1 0
39,797 39,797 0000000075cf8d4dcffe324e7c60018f9ff994d72936219e73685bd55f35804a 0.00 MB 1 0
39,796 39,796 00000000830a0d4a34c1fa0cd7f9dd0b23b63a00959aee673bee27b8aa71a84e 0.00 MB 1 0
39,795 39,795 0000000056ff24c8708883a8f2900107be7991664269ba467e581f467bbb4008 0.00 MB 1 0
39,794 39,794 000000000e7d332f7cc26d494de86b849e4dca821cfd4518174426dd32c49007 0.00 MB 1 0
39,793 39,793 000000006a0539c7123652b12ea90fbac1e7910263355cb3c7cc5ec641efc96e 0.00 MB 1 0
39,792 39,792 0000000054a30baf342968d43d7a9921a1ca1796a37a588d5e15579c722758f9 0.00 MB 1 0
39,791 39,791 000000007d77b44500580745ffdf270e16d293498691dd72a3f22378f9c76bb0 0.00 MB 1 0
39,790 39,790 00000000202de121f1cfa70f6413cd11c1048926fce0041a90581b8861260636 0.00 MB 1 0
39,789 39,789 000000006ca130fb5ed3acd832c4b224c98c5edac66e2c39b0cb13c6279af311 0.00 MB 1 0
39,788 39,788 000000001d39fb012d340c2b0434eafa03098a5015a3c9b4d890c52b6b21c62c 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 772.08 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,055.46 GB sent, 108.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.