Explorer IconExplorer

Memory Pool Memory Pool Refreshing

6,902 transactions (3.40 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

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

Blockchain Blockchain Refreshing

Tip: 909,563 (871,757 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
37,806 37,806 0000000090f71dba8c8c6f8eb0840d52f15fafd193258ea20a98747fd8f662b9 0.00 MB 1 0
37,805 37,805 00000000bc589c4b4d492fb2ea4a448b84e375935e8b5bb7d2414da5e1b39a6b 0.00 MB 1 0
37,804 37,804 000000002cacc6b497cc36ca4034eedc123ae3f22e6560d534c06e1a2b399f87 0.00 MB 1 0
37,803 37,803 0000000085411839db3067b6d671a92047983aa185b268e5b667458d17221c94 0.00 MB 1 0
37,802 37,802 00000000a9a2f9c733968fad0ac706b53e2da0a3c15a35813d859c4d5120c435 0.00 MB 1 0
37,801 37,801 00000000156d2b50294f8f67cb4f43237085ea2822884db9d34e2aa0eb1d51af 0.00 MB 1 0
37,800 37,800 00000000aab0f89c1670d363d3f03892080cc0afd4d0db7ca0c879179851672a 0.00 MB 1 0
37,799 37,799 00000000a6d1edbf584128320d6ec899611ef7e1ed67590b3ab29e19ca33d580 0.00 MB 1 0
37,798 37,798 00000000433ca15f5a52d7906a59384921444dc0b4fdfa1f858f8dcb1f6c6ff5 0.00 MB 1 0
37,797 37,797 0000000043599210cb5879cdd8186a8689aa2ee535cfc50726cd32a3a53b9a59 0.00 MB 1 0
37,796 37,796 0000000070930505687f5ba333b5ef46a0e51a8cd512b1b41a4eebc0bb1187e9 0.00 MB 1 0
37,795 37,795 000000006b9099a66a540d0bc3b1891e3f436a9d7cd3ed362d571f8acb7c2570 0.00 MB 1 0
37,794 37,794 000000002552204f038c7f3e35f6b0c5c3399552686859e53abdacedcc3f1814 0.00 MB 1 0
37,793 37,793 000000003aab941ecfe1cf7c966d24f5ab41ca5e08e6efd3b8b27245c638930c 0.00 MB 1 0
37,792 37,792 000000009e35c745e492de027c4b7daecd3f0e5c3a9b75264faef2e91fc39c0d 0.00 MB 1 0
37,791 37,791 000000008ae9eb021e36edac700a08d0831f97db2bdea8533481cb63a8450f38 0.00 MB 1 0
37,790 37,790 00000000818013e612de4906f39ca985d4ec4042af4e0c2f3af89bf547cb8923 0.00 MB 1 0
37,789 37,789 000000005ac7cbf73fd3c73ecc33c5827a587e45acd542f83776b677418135b6 0.00 MB 1 0
37,788 37,788 0000000077272a40c066cd944883118fa87fab081fd7e8df06f58bfe038db46a 0.00 MB 1 0
37,787 37,787 000000004667f035df4532e9989e3282c3ed6f0d5b138be14fd50bc97120b99f 0.00 MB 2 0
37,786 37,786 000000002969c8d6c065365d7b5c5d4d7ace4f9dce8bd3fc794b2987e1de2aad 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 772.60 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,089.82 GB sent, 111.26 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.