Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

3,142 transactions (0.82 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,081 000000000000000000022cb30000000000000000000000000000000000000000 0.82 vMB 3,141 1
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,080 (880,085 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
29,995 29,995 000000002a49f0d6d15e575e91a1d68468fd923dfb7d1d2b91744ae400dcb52b 0.00 MB 1 0
29,994 29,994 00000000bfabb899f1238ae1a8e0c71cbc3f522baa2200fc32cb0a8d515331fd 0.00 MB 1 0
29,993 29,993 0000000074d8c83f1d1b4a9c6b7fb3eb6cca123823585187f8bad9638ba907bc 0.00 MB 1 0
29,992 29,992 00000000344b2da44150aba56e0eb08418de2a44375c4abc36fbdaef7187d677 0.00 MB 1 0
29,991 29,991 000000000d8f9ff1889743811c15557869eec9ffe2304f16c0b47f68a1a39e6c 0.00 MB 1 0
29,990 29,990 000000002a491f6a710bda0b093a96ad9c3648d11e37462b957ac7b9b96b5a1c 0.00 MB 1 0
29,989 29,989 000000005dc0109e69f7d1f5d78f2a770694034444c57e228e4cb17a9bc41807 0.00 MB 1 0
29,988 29,988 00000000b980d233a60d80fd97166c5360407a5b566868fe9190cf02f4536539 0.00 MB 1 0
29,987 29,987 00000000d66a5e0ea7143d9e9d74ad1ca5bcfb5a1dda4f3b68f01833a6705ff4 0.00 MB 1 0
29,986 29,986 00000000b796d58b1ee32dea7790f28666c7e67b9d3f6f91200ab68e487f58fc 0.00 MB 1 0
29,985 29,985 0000000012f403fc47b515308fcfd716af985839d6579e5ee4c271cec363f2f5 0.00 MB 1 0
29,984 29,984 00000000b7f3a558261c8cdfd67071891b188b7f1dfaea11f0253349eb358eb5 0.00 MB 1 0
29,983 29,983 00000000843bd6dec3c98f2c4be84383a741a24dd4a107f271e5ac95cc3978ab 0.00 MB 1 0
29,982 29,982 00000000e609dda38dd078140b94d9581d5ed268a43d522f7097bf08e2685f3a 0.00 MB 1 0
29,981 29,981 00000000dc1ad333a688b1261687f8a767d753f85e6c80aef908b86eaed193b7 0.00 MB 1 0
29,980 29,980 00000000920a4e852e6c62fe12b39cdc405741f2fad15373837c1f1fb8a4933d 0.00 MB 1 0
29,979 29,979 00000000a7a68543de90fd2e41dbfce58a6e07f76550a16d20b0ae35c445a0c7 0.00 MB 1 0
29,978 29,978 00000000eac0187d3eefd9b56e2b577b90ef455d2fbc7621570a0d2878836366 0.00 MB 1 0
29,977 29,977 00000000d7d33531196b9c5c1d7aba75bc7b55d50165eff468a8002dce989d77 0.00 MB 1 0
29,976 29,976 0000000016469c3db556aebc42b45fe58b23e1e8fae4e06ac8fa21b0a6e521cb 0.00 MB 1 0
29,975 29,975 000000008ab6f74b3ee1a4867078e175b99c466d56e7b0acdf02f79193c77674 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.55 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,187.70 GB sent, 116.19 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.